Automation
PostClaw Automation lets you chain AI skills into pipelines that run on a schedule — fully hands-off content publishing.
Concepts
| Term | Description |
|---|---|
| Skill | A single AI step: draft, rewrite, translate, generate image, etc. |
| Workflow | An ordered chain of skills with a defined input and output |
| Automation | A workflow bound to a schedule (cron) and a source |
Creating a Workflow
- Go to Settings → Automation → Workflows
- Click New Workflow
- Add steps in order:
[Source: RSS Feed]
→ Skill: Summarize Article (GPT-4o)
→ Skill: Rewrite for LinkedIn tone
→ Skill: Generate header image (DALL-E 3)
→ Output: LinkedIn post (scheduled)
Skills can pass context to the next step via {{output}} variables.
Source Types
| Source | Description |
|---|---|
| RSS Feed | Fetch latest articles on a schedule |
| Webhook | HTTP POST triggers the workflow |
| Manual | Run on demand from the UI or API |
| Cron | Pure time-based, no external source needed |
Cron Scheduling
Use standard 5-field cron expressions:
# Every weekday at 9 AM UTC
0 9 * * 1-5
# Every Monday and Thursday at 12 PM UTC
0 12 * * 1,4
# Every hour
0 * * * *
The UI includes a cron builder if you prefer visual configuration.
Approval Gate
Add an Approve step to pause the pipeline and wait for human review before publishing:
- Automation runs, stops at approval gate
- You receive a notification (email or in-app)
- Review the draft — approve or reject with feedback
- On approval, the pipeline continues to publish
Recommended for brand accounts or high-stakes content.
Skills Catalog
Skills available in workflows:
| Skill | Input | Output |
|---|---|---|
| Draft Post | Topic / URL | Social post text |
| Rewrite | Text + tone | Rewritten text |
| Translate | Text + language | Translated text |
| Summarize | Long article | Summary paragraph |
| Generate Image | Prompt | Image URL |
| Extract Hashtags | Post text | Hashtag list |
| Schedule Post | Post + datetime | Published post |
Quota and Limits
Each skill execution counts against your monthly AI quota.
| Plan | Automation Runs/Month |
|---|---|
| Free | 10 |
| Pro | 200 |
| Business | 1,000 |
BYOK users have no run limit — you pay the AI provider directly.
API Trigger
Trigger an automation via webhook:
curl -X POST https://api.postclaw.fun/v1/automations/{id}/trigger \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "input": "https://example.com/blog/my-article" }'