workflows
2
总安装量
2
周安装量
#69095
全站排名
安装命令
npx skills add https://github.com/mmcmedia/openclaw-agents --skill workflows
Agent 安装分布
openclaw
2
antigravity
2
claude-code
2
codex
2
kiro-cli
2
gemini-cli
2
Skill 文档
Workflow Library
Purpose: Save successful patterns so they can be reused instantly instead of figuring them out again.
When to Use
- Before starting any task, check if a workflow exists
- After figuring something out, save it here immediately
- When a task takes >5 minutes that should take <1 minute
Workflow Index
Browser Automation â
browser-mediavine-csv.mdâ Download Mediavine CSV export âbrowser-pdf-generation.mdâ Generate PDF from any page (with verification!) â
Sub-Agent Patterns â
parallel-research.mdâ Spawn multiple Haiku agents for research âovernight-build.mdâ Hand off complex build to Codex overnight â
Data Tasks (TODO)
etsy-inventory-export.mdâ Export Etsy shop listingsga4-api-query.mdâ Query GA4 via APIlate-api-posts.mdâ Fetch scheduled posts from Late.dev
File Operations (TODO)
markdown-to-pdf.mdâ Convert .md to PDFbulk-file-rename.mdâ Rename files with patterns
Content Generation (TODO)
etsy-listing-copy.mdâ Generate Etsy title, tags, description
Adding a New Workflow
When you figure something out:
- Create
workflows/<name>.md - Use the template below
- Add to the index above
- Test it works before considering it “saved”
Template
# Workflow: [Name]
**Purpose:** [What this does]
**Time saved:** [X min â Y sec]
**Last verified:** [Date]
## Prerequisites
- [What needs to be set up first]
## Steps
1. [Step 1]
2. [Step 2]
3. [Step 3]
## Example
\`\`\`bash
# Actual commands or code
\`\`\`
## Gotchas
- [Thing that can go wrong and how to avoid it]
## Related
- [Link to related workflows or docs]
Rules
- Immediate capture â Don’t wait. Save it NOW while it’s fresh.
- Include gotchas â The edge cases are the valuable part.
- Test before saving â A broken workflow is worse than none.
- Keep it atomic â One workflow = one task. Chain them if needed.
- Update when broken â If something changes, update the workflow.