Skip to Content
πŸŽ‰ AI Workflow is now open source! Star us on GitHub
DocumentationInstallation

Installation

There are several ways to use AI Workflow in your projects.

The easiest way to install skills. No setup required.

Install a Complete Workflow

# Content creators, bloggers, writers npx add-skill nicepkg/ai-workflow/workflows/content-creator-workflow # Digital marketers, growth hackers npx add-skill nicepkg/ai-workflow/workflows/marketing-pro-workflow # YouTubers, video producers npx add-skill nicepkg/ai-workflow/workflows/video-creator-workflow # Stock traders, investors npx add-skill nicepkg/ai-workflow/workflows/stock-trader-workflow # Product managers npx add-skill nicepkg/ai-workflow/workflows/product-manager-workflow # Presentation creators npx add-skill nicepkg/ai-workflow/workflows/talk-to-slidev-workflow

Install Individual Skills

# List available skills in a workflow npx add-skill nicepkg/ai-workflow/workflows/marketing-pro-workflow --list # Install a specific skill npx add-skill nicepkg/ai-workflow/workflows/stock-trader-workflow --skill a-share-analysis

Installation Options

# Install globally (available in all projects) npx add-skill <workflow> --global # Install to specific AI tools only npx add-skill <workflow> -a claude-code -a cursor # Non-interactive mode (for CI/CD) npx add-skill <workflow> -y # Specify installation directory npx add-skill <workflow> --path ./my-project

Method 2: Manual Installation

For advanced users who want more control.

Clone and Copy

# Clone the repository git clone https://github.com/nicepkg/ai-workflow.git # Copy a workflow's skills to your project cp -r ai-workflow/workflows/content-creator-workflow/.claude/skills your-project/.claude/
cd your-project # Create directories mkdir -p .cursor .codex .opencode # Create symlinks ln -s ../.claude/skills .cursor/skills ln -s ../.claude/skills .codex/skills ln -s ../.claude/skills .opencode/skill

Directory Structure

After installation, your project will have:

your-project/ β”œβ”€β”€ .claude/ β”‚ └── skills/ # Primary skill storage β”‚ β”œβ”€β”€ skill-1/ β”‚ β”‚ └── SKILL.md β”‚ └── skill-2/ β”‚ └── SKILL.md β”œβ”€β”€ .cursor/ β”‚ └── skills -> ../.claude/skills β”œβ”€β”€ .codex/ β”‚ └── skills -> ../.claude/skills └── ... (other AI tool symlinks)

Global vs Project Installation

TypeLocationUse Case
Project.claude/skills/Skills specific to one project
Global~/.claude/skills/Skills available in all projects
# Project installation (default) npx add-skill <workflow> # Global installation npx add-skill <workflow> --global

Updating Skills

# Reinstall to get latest version npx add-skill <workflow> # Or pull latest and copy manually cd ai-workflow git pull origin main

Troubleshooting

Skills not loading?

  1. Check if skills are in the correct directory for your AI tool
  2. Restart your AI assistant
  3. Verify the SKILL.md files exist

Permission errors?

# Fix permissions on Unix/Mac chmod -R 755 .claude/skills
Last updated on