workflow-creator

nicepkg/ai-workflow · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/nicepkg/ai-workflow --skill workflow-creator
0 commentsdiscussion
summary

Create complete workflow directories with curated skills downloaded from GitHub.

skill.md

Workflow Creator

Create complete workflow directories with curated skills downloaded from GitHub.

Workflow Creation Process

Step 1: Create directory structure

Run scripts/create_workflow.py to initialize:

python scripts/create_workflow.py <workflow-name> --path <output-dir>

Creates (with multi-AI tool support):

workflows/<workflow-name>-workflow/
├── README.md          # User documentation (English)
├── README_cn.md       # User documentation (Chinese)
├── AGENTS.md          # AI context (auto-loaded)
├── .claude/
│   ├── settings.json
│   └── skills/        # Skills go here (primary storage)
├── .codex/
│   └── skills -> ../.claude/skills
├── .cursor/
│   └── skills -> ../.claude/skills
├── .opencode/
│   └── skill -> ../.claude/skills
├── .agents/
│   └── skills -> ../.claude/skills
├── .kilocode/
│   └── skills -> ../.claude/skills
├── .roo/
│   └── skills -> ../.claude/skills
├── .goose/
│   └── skills -> ../.claude/skills
├── .gemini/
│   └── skills -> ../.claude/skills
├── .agent/
│   └── skills -> ../.claude/skills
├── .github/
│   └── skills -> ../.claude/skills
├── skills -> .claude/skills
├── .factory/
│   └── skills -> ../.claude/skills
└── .windsurf/
    └── skills -> ../.claude/skills

Symlinks enable all AI tools to use the same skills from .claude/skills/.

Step 2: Select and download skills

  1. Use the Skill Sources section below to find relevant skills
  2. Download each skill using scripts/download_skill.py:
python scripts/download_skill.py <repo-url> <skill-path> --output workflows/<workflow-name>/.claude/skills/

Examples:

# Official Anthropic skills
python scripts/download_skill.py https://github.com/anthropics/skills skills/docx --output ./workflows/media-workflow/.claude/skills/

# Community skills (root level)
python scripts/download_skill.py https://github.com/gked2121/claude-skills social-repurposer --output ./workflows/media-workflow/.claude/skills/

Step 3: Generate README.md (English)

CRITICAL: Follow the exact format from workflows/marketing-pro-workflow/README.md

Required structure:

<div align="center">

# 📋 Workflow Name

### **Your AI-Powered [Domain] Team**

[← Back to AI Workflow](../../README.md)

[简体中文](./README_cn.md) | English

</div>

---

## 🎯 Who Is This For?
- **Role 1** - Use case
- **Role 2** - Use case

---

## ⚡ Quick Install
[Install commands]

---

## 📦 Skills Included (N)

### 0️⃣ Stage Name
| Skill | What It Does |
|:------|:-------------|
| `skill-name` | Description |

### 1️⃣ Next Stage
...

---

## 🔄 Complete Pipeline (N Stages)
[ASCII tree diagram]

---

## 💡 Example Workflows
[Multiple scenario examples with numbered prompts]

---

## 🔗 Skill Combinations
[Table with Goal → Skill Chain]

---

## 📄 License
MIT © [nicepkg](https://github.com/nicepkg)

Use assets/templates/README.template.md as reference.

Step 4: Generate README_cn.md (Chinese)

Create Chinese version with:

  • Same structure as English README
  • Professional Chinese terminology
  • Link back to ../../README_cn.md

Step 5: Generate AGENTS.md

Write AI instructions covering:

  • Workflow overview with pipeline diagram
  • Available skills grouped by stage
  • Skill usage guidelines (when to use each)
  • Recommended sequences for common tasks
  • Output standards
  • Quality gates between phases

Important: AGENTS.md is auto-loaded by Claude Code. Keep it concise (<500 lines) and focused on actionable instructions.

Use assets/templates/AGENTS.template.md as reference.

Step 6: Update project README

After creating a workflow in the ai-workflow project, update:

  1. README.md (English):

    • Add new workflow to the workflow table
    • Add skills list under <details> section
    • Update skill count (e.g., "150+ skills")
  2. README_cn.md (Chinese):

    • Same updates in Chinese
    • Link to README_cn.md in workflow folder

Skill Sources

A. Skill Aggregators & Directories (for discovering skills)

Name Type Scale Best For
Skillhub Awesome Skills GitHub curated list 1000+ skills Top skills by category, well-organized
Skillhub.club Online directory 1000+ Web UI for browsing by category
SkillsMP Marketplace 63,000+ Mass search with filters (category/popularity/author)
agent-skills.md Online directory Large Install commands included (pnpm dlx add-skill ...)
Claude Skills Hub Online directory Medium Product-style browsing, good for inspiration
MCP Market Skills Online store Medium Product pages with About/FAQ, content creator friendly
Skills Directory Online directory Medium Copy SKILL.md directly, good structure
Smithery Skills Skill directory Medium Includes expected_output.json, tool-oriented
Awesome Claude Skills (ComposioHQ) GitHub awesome list High stars Ecosystem resources, comprehensive
Awesome Claude Skills (travisvn) GitHub awesome list 5k+ stars Second perspective, prevents single-source bias
Awesome Agent Skills GitHub multi-agent list 1k+ stars Covers Claude/Codex/Copilot/VSCode

B. Production-Ready Skill Repositories (for bulk import)

Repository Focus Best For
alirezarezvani/claude-skills Multi-role skill packs Content Creator suite (brand voice, SEO, platform frameworks)
gked2121/claude-skills Production workflows Clear workflow examples (Podcast→Content→Social→SEO)
sickn33/antigravity-awesome-skills Skill registry Organized by role (skills/content-creator)
Microck/ordinary-claude-skills 600+ skills collection skill-navigator, SEO clustering, email optimization
synapz-org/marketing-ops-hub Marketing orchestration Multi-skill coordination patterns
m2ai-portfolio/claude-skills Creator/Growth suite IG caption, YouTube script, tweet thread, blog outline
pluginagentmarketplace/custom-plugin-product-manager Product Manager suite user-research, roadmap, requirements, analytics
lyndonkl/claude Decision frameworks prioritization, forecasting, stakeholder mapping
jamesrochabrun/skills Mixed professional prd-generator, technical-launch-planner
britt/claude-code-skills Writing & specs writing-product-specs, writing-user-stories
troykelly/codex-skills Workflow management work-intake, milestone-management
escarti/agentDevPrompts Feature lifecycle feature-planning, feature-implementing
aj-geddes/useful-ai-prompts Sprint & agile agile-sprint-planning, requirements-gathering
daffy0208/ai-dev-standards Multi-role standards customer-feedback-analyzer, go-to-market-planner

C. Search Strategy

When the above sources lack needed skills:

  1. GitHub Search: "claude" "skills" "SKILL.md" <topic>
  2. agent-skills.md Search: Browse by tags at https://agent-skills.md/tags
  3. SkillsMP Search: Filter by category at https://skillsmp.com
  4. Validate: Check SKILL.md has valid YAML frontmatter with name and description

D. Download Commands

# From GitHub repository
python scripts/download_skill.py https://github.com/<owner>/<repo> <skill-path> --output workflows/<workflow-name>/.claude/skills/

# Example: Download from alirezarezvani
python scripts/download_skill.py https://github.com/alirezarezvani/claude-skills skills/content-creator --output ./workflows/content-creator-workflow/.claude/skills/

# Example: Download from pluginagentmarketplace
python scripts/download_skill.py https://github.com/pluginagentmarketplace/custom-plugin-product-manager skills/user-research --output ./workflows/product-manager-workflow/.claude/skills/

Output Checklist

After workflow creation, verify:

  • .claude/skills/ contains downloaded skill folders
  • Each skill folder has SKILL.md
  • All symlinks work (.codex/skills, .cursor/skills, .opencode/skill, .agents/skills, .kilocode/skills, .roo/skills, .goose/skills, .gemini/skills, .agent/skills, .github/skills, skills, .factory/skills, .windsurf/skills)
  • README.md follows standard format with all sections
  • README_cn.md created with Chinese translation
  • AGENTS.md provides clear AI instructions (<500 lines)
  • settings.json exists in .claude/
  • Project README.md updated with new workflow
  • Project README_cn.md updated with new workflow
  • Skill counts updated in both README files
how to use workflow-creator

How to use workflow-creator on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add workflow-creator
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/nicepkg/ai-workflow --skill workflow-creator

The skills CLI fetches workflow-creator from GitHub repository nicepkg/ai-workflow and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/workflow-creator

Reload or restart Cursor to activate workflow-creator. Access the skill through slash commands (e.g., /workflow-creator) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.770 reviews
  • Michael Garcia· Dec 28, 2024

    workflow-creator has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Tariq Abebe· Dec 24, 2024

    workflow-creator reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Sakura Okafor· Dec 16, 2024

    Solid pick for teams standardizing on skills: workflow-creator is focused, and the summary matches what you get after install.

  • Maya Gupta· Dec 12, 2024

    workflow-creator has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Tariq Anderson· Dec 12, 2024

    Keeps context tight: workflow-creator is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Ganesh Mohane· Dec 4, 2024

    Keeps context tight: workflow-creator is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Tariq Harris· Nov 27, 2024

    I recommend workflow-creator for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Rahul Santra· Nov 23, 2024

    Registry listing for workflow-creator matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Chinedu Farah· Nov 23, 2024

    Useful defaults in workflow-creator — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Aarav Robinson· Nov 19, 2024

    workflow-creator fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 70

1 / 7