๐ŸŽฏ

workflow-creator

๐ŸŽฏSkill

from nicepkg/ai-workflow

VibeIndex|
What it does

Generates complete workflow directories with curated skills from GitHub for specific use cases, enabling quick project setup and skill organization.

workflow-creator

Installation

Install skill:
npx skills add https://github.com/nicepkg/ai-workflow --skill workflow-creator
15
Last UpdatedJan 20, 2026

Skill Details

SKILL.md

Create complete Claude Code workflow directories with curated skills. Use when user wants to (1) create a new workflow for specific use case (media creator, developer, marketer, etc.), (2) set up a Claude Code project with pre-configured skills, (3) download and organize skills from GitHub repositories, or (4) generate README.md and AGENTS.md documentation for workflows. Triggers on phrases like "create workflow", "new workflow", "set up workflow", "build a xxx-workflow".

Overview

# 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:

```bash

python scripts/create_workflow.py --path

```

Creates (with multi-AI tool support):

```

workflows/-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:

```bash

python scripts/download_skill.py --output workflows//.claude/skills/

```

Examples:

```bash

# 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:

```markdown

# ๐Ÿ“‹ Workflow Name

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

[โ† Back to AI Workflow](../../README.md)

[็ฎ€ไฝ“ไธญๆ–‡](./README_cn.md) | English

---

๐ŸŽฏ 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

section

- Update skill count (e.g., "150+ skills")

  1. 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](https://github.com/keyuyuan/skillhub-awesome-skills) | GitHub curated list | 1000+ skills | Top skills by category, well-organized |

| [Skillhub.club](https://skillhub.club) | Online directory | 1000+ | Web UI for browsing by category |

| [SkillsMP](https://skillsmp.com) | Marketplace | 63,000+ | Mass search with filters (category/popularity/author) |

| [agent-skills.md](https://agent-skills.md) | Online directory | Large | Install commands included (pnpm dlx add-skill ...) |

| [Claude Skills Hub](https://claudeskills.info) | Online directory | Medium | Product-style browsing, good for inspiration |

| [MCP Market Skills](https://mcpmarket.com/tools/skills) | Online store | Medium | Product pages with About/FAQ, content creator friendly |

| [Skills Directory](https://skillsdirectory.com) | Online directory | Medium | Copy SKILL.md directly, good structure |

| [Smithery Skills](https://smithery.ai/skills) | Skill directory | Medium | Includes expected_output.json, tool-oriented |

| [Awesome Claude Skills (ComposioHQ)](https://github.com/ComposioHQ/awesome-claude-skills) | GitHub awesome list | High stars | Ecosystem resources, comprehensive |

| [Awesome Claude Skills (travisvn)](https://github.com/travisvn/awesome-claude-skills) | GitHub awesome list | 5k+ stars | Second perspective, prevents single-source bias |

| [Awesome Agent Skills](https://github.com/heilcheng/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](https://github.com/alirezarezvani/claude-skills) | Multi-role skill packs | Content Creator suite (brand voice, SEO, platform frameworks) |

| [gked2121/claude-skills](https://github.com/gked2121/claude-skills) | Production workflows | Clear workflow examples (Podcastโ†’Contentโ†’Socialโ†’SEO) |

| [sickn33/antigravity-awesome-skills](https://github.com/sickn33/antigravity-awesome-skills) | Skill registry | Organized by role (skills/content-creator) |

| [Microck/ordinary-claude-skills](https://github.com/Microck/ordinary-claude-skills) | 600+ skills collection | skill-navigator, SEO clustering, email optimization |

| [synapz-org/marketing-ops-hub](https://github.com/synapz-org/marketing-ops-hub) | Marketing orchestration | Multi-skill coordination patterns |

| [m2ai-portfolio/claude-skills](https://github.com/m2ai-portfolio/claude-skills) | Creator/Growth suite | IG caption, YouTube script, tweet thread, blog outline |

| [pluginagentmarketplace/custom-plugin-product-manager](https://github.com/pluginagentmarketplace/custom-plugin-product-manager) | Product Manager suite | user-research, roadmap, requirements, analytics |

| [lyndonkl/claude](https://github.com/lyndonkl/claude) | Decision frameworks | prioritization, forecasting, stakeholder mapping |

| [jamesrochabrun/skills](https://github.com/jamesrochabrun/skills) | Mixed professional | prd-generator, technical-launch-planner |

| [britt/claude-code-skills](https://github.com/britt/claude-code-skills) | Writing & specs | writing-product-specs, writing-user-stories |

| [troykelly/codex-skills](https://github.com/troykelly/codex-skills) | Workflow management | work-intake, milestone-management |

| [escarti/agentDevPrompts](https://github.com/escarti/agentDevPrompts) | Feature lifecycle | feature-planning, feature-implementing |

| [aj-geddes/useful-ai-prompts](https://github.com/aj-geddes/useful-ai-prompts) | Sprint & agile | agile-sprint-planning, requirements-gathering |

| [daffy0208/ai-dev-standards](https://github.com/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"
  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

```bash

# From GitHub repository

python scripts/download_skill.py https://github.com// --output workflows//.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

More from this repository10

๐ŸŽฏ
shioaji๐ŸŽฏSkill

Provides technical analysis and trading insights for stock markets using the Shioaji API, specifically focused on Taiwan's financial markets.

๐ŸŽฏ
social-media-content-repurposer๐ŸŽฏSkill

Repurposes social media content across different platforms by transforming original content into platform-optimized formats and styles.

๐ŸŽฏ
skill-downloader๐ŸŽฏSkill

Downloads and manages code repositories, packages, and dependencies with intelligent filtering and version control

๐ŸŽฏ
writing-user-stories๐ŸŽฏSkill

Generates professional, structured user stories following best practices for product management, helping teams clearly define feature requirements and user needs.

๐ŸŽฏ
sponsor-pitch-generator๐ŸŽฏSkill

Generates compelling, personalized sponsorship pitch decks and proposals tailored to specific brands or events.

๐ŸŽฏ
utm-builder๐ŸŽฏSkill

Builds and generates UTM (Urchin Tracking Module) parameters for marketing campaign tracking links with precision and ease.

๐ŸŽฏ
stock-screener๐ŸŽฏSkill

Screens and filters stocks based on technical indicators, fundamental metrics, and multi-market analysis criteria for traders and investors.

๐ŸŽฏ
a-share-screener๐ŸŽฏSkill

Screens and filters A-share stocks based on financial metrics, market trends, and custom investment criteria for data-driven stock selection.

๐ŸŽฏ
a-share-analysis๐ŸŽฏSkill

Analyzes Chinese A-shares stock market data using technical indicators, fundamental screening, and multi-market trading insights.

๐ŸŽฏ
resource-scout๐ŸŽฏSkill

Searches and discovers Claude Code skills and MCP servers across marketplaces, GitHub repositories, and registries to find existing solutions before building custom tools.