skills/postiz/SKILL.md
# Postiz Social Media Skill ## Overview Postiz is the self-hosted social media scheduling platform for Garrett's brands. Sabrina uses this to schedule and publish posts across all connected social media accounts. ## Instance - **URL**: `https://postiz-production-14aa.up.railway.app` - **API Key**: Set via `POSTIZ_API_KEY` environment variable - **Auth Method**: Cookie-based JWT (login once, reuse token) OR API key for supported endpoints ## Authentication Postiz uses a cookie-based JWT. The a
npx skillsauth add garrettroi/open-manus skills/postizInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Postiz is the self-hosted social media scheduling platform for Garrett's brands. Sabrina uses this to schedule and publish posts across all connected social media accounts.
https://postiz-production-14aa.up.railway.appPOSTIZ_API_KEY environment variablePostiz uses a cookie-based JWT. The agent should:
POST /api/auth/login with {"email": "...", "password": "...", "provider": "LOCAL"}auth cookie from the responseCookie: auth=<token> on all subsequent requestsThe publicApi key from GET /api/user/self can be used for some endpoints.
GET /api/integrations
Cookie: auth=<token>
POST /api/posts
Cookie: auth=<token>
Content-Type: application/json
{
"content": "Post text here",
"date": "2026-04-10T14:00:00.000Z",
"integrations": [{"id": "<integration_id>"}],
"image": [] // optional: array of media IDs
}
GET /api/posts?startDate=2026-04-01T00:00:00Z&endDate=2026-04-30T23:59:59Z
Cookie: auth=<token>
POST /api/media
Cookie: auth=<token>
Content-Type: multipart/form-data
file: <image_file>
postiz_client.py for all Postiz operationsPOSTIZ_URL=https://postiz-production-14aa.up.railway.app
[email protected]
POSTIZ_PASSWORD=<set in vault>
POSTIZ_API_KEY=f7f1a1569d2e7714afb7c1c9694b8ed7342eb76ff26cc3095f7c723844168ea3
development
# Voice Sanitizer This skill cleans up text before it is sent to the Text-to-Speech (TTS) engine. It removes technical jargon, code blocks, and long URLs to ensure the agent sounds natural and conversational in voice chat. ## Usage To sanitize text for speech, run the following command in the terminal: ```bash python3 /app/skills/voice_sanitizer/sanitizer.py "Your long, technical text with `code` and https://links.com/long-url" ``` ### Example Output ```text Your long, technical text with a
tools
Professional AI video production workflow. Use when creating videos, short films, commercials, or any video content using AI generation tools.
tools
Secure API key access from the centralized vault. Fetch keys on-demand without storing them in environment variables.
testing
# Task Board — Persistent Task Tracking for Open Manus This skill provides a shared task board backed by Redis. Harmony uses it to track delegated work across all agents, and agents use it to report progress and completion. ## When to Use - **Harmony**: Use this whenever you delegate a task to an agent. Add the task to the board, then check the board periodically to follow up. - **Worker Agents**: Use this to update your task status or mark tasks as complete. ## Commands ### Add a new task