A collection of Claude Code skills (slash commands) and AI automation workflows.
ai-skills/
├── skills/ # Claude Code skill definitions (.md files)
├── workflows/ # Multi-step automation workflows
├── prompts/ # Reusable prompt templates
├── examples/ # Usage examples and sample outputs
└── docs/ # Documentation and guides
Skills are markdown files that extend Claude Code with custom slash commands. Place skill files in ~/.claude/skills/ or reference them from your project.
See the skills/ directory for available skills.
To use a skill in Claude Code, invoke it with /skill-name or ask Claude to execute it.
Workflows are multi-step automation pipelines that go beyond single-agent skills. Place workflow directories in workflows/, each containing a README.md orchestration script and an agents/ subdirectory.
| Workflow | Description |
|---|---|
| feature-delivery | End-to-end feature delivery using a 6-agent pipeline (PM → Architect → Security + UX → Developer → QA). Produces planning artifacts, working code, and a ship/no-ship QA verdict. |
- Add new skills to the
skills/directory - Add new workflows to the
workflows/directory (directory + README pattern) - Follow the skill/workflow template format
- Include a usage example in
examples/