Installation
There are several ways to use AI Workflow in your projects.
Method 1: npx add-skill (Recommended)
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-workflowInstall 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-analysisInstallation 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-projectMethod 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/Create Symlinks for Other AI Tools
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/skillDirectory 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
| Type | Location | Use 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> --globalUpdating Skills
# Reinstall to get latest version
npx add-skill <workflow>
# Or pull latest and copy manually
cd ai-workflow
git pull origin mainTroubleshooting
Skills not loading?
- Check if skills are in the correct directory for your AI tool
- Restart your AI assistant
- Verify the
SKILL.mdfiles exist
Permission errors?
# Fix permissions on Unix/Mac
chmod -R 755 .claude/skillsLast updated on