A curated collection of AI commands for development workflows and automation. These commands are designed to work with Claude Code and other AI assistants that support MCP (Model Context Protocol).
The fastest way to create and publish AI commands is through Commands.com. Visit the quick-start guide to get started in under 2 minutes:
π https://commands.com/creator/commands-prompts/quick-start/
File: code-reviewer/command.md
Category: Development
Difficulty: Intermediate
Production-ready code review assistant with security analysis, maintainability scoring, and CI/CD integration via SARIF output.
Required MCP Servers: github, filesystem, memory, sqlite
/code-review
source="https://github.com/user/repo/pull/123"
focus=security
languages=javascript,typescript
File: project-setup/command.md
Category: Development
Difficulty: Beginner
Production-grade project bootstrapper with security-first practices, validated configurations, and comprehensive testing.
Required MCP Servers: filesystem, github, memory, sqlite
/project-setup
name="my-saas-app"
stack=nextjs
deployment=vercel
features=auth,database,testing,api
File: api-explorer/command.md
Category: API Tools
Difficulty: Intermediate
Ethical API reconnaissance tool that discovers and documents APIs while respecting rate limits and terms of service.
Required MCP Servers: puppeteer, filesystem, memory, sqlite
/api-explore
base_url="https://api.example.com"
output_format=openapi
test_endpoints=yes
File: smart-command-builder/command.md
Category: Development
Difficulty: Beginner
Intelligent command generator that creates complete Commands.com-compatible commands from task descriptions.
Required MCP Servers: commands-com/mcp-server, filesystem
/build-command
task_description="analyze git commits and generate release notes"
category=development
complexity=medium
File: eleventy-asset-pipeline/command.md
Category: Development
Difficulty: Intermediate
Validates and scaffolds a production-grade asset pipeline for Eleventy sites with JavaScript bundling, CSS processing, and cache-busting.
Required MCP Servers: filesystem
/eleventy-asset-pipeline
bundle_mode=true
css_framework=tailwind
source_maps=true
File: discord-release/command.md
Category: Development
Difficulty: Intermediate
Automatically generate release notes for Discord by analyzing Git commits since the last published release.
Required MCP Servers: docker-mcp-discord, docker-filesystem
/discord-release
guild_id="YOUR_GUILD_ID"
channel_name="release-notes"
format=release
days_back=30
File: docs-guardrails/command.md
Category: Testing
Difficulty: Beginner
Ship content without surprisesβno 404s, no empty titles, no brand hits. One-shot setup for docs quality that catches broken links, missing alt text, and frontmatter errors.
Required MCP Servers: filesystem
/docs-guardrails
mode=report-only
scope=all
frontmatter_required=title,date
File: performance-agent-builder/command.md
Category: Testing
Difficulty: Advanced
Install a specialized Claude Code subagent that automatically monitors, diagnoses, and fixes performance issues in your codebase.
Required MCP Servers: filesystem
/performance-agent-builder
languages=auto
profile_mode=quick
min_improvement=10
File: docs-validator-agent-builder/command.md
Category: Testing
Difficulty: Advanced
Install a specialized Claude Code subagent that automatically monitors, validates, and fixes documentation issues in your codebase.
Required MCP Servers: filesystem
/docs-validator-agent-builder
frameworks=auto
mode=report-only
validation_scope=markdown-only
File: subagent-builder/command.md
Category: Development
Difficulty: Advanced
Build perfect Claude Code subagents using the latest documentation and best practices.
Required MCP Servers: filesystem
/subagent-builder
name="code-reviewer"
purpose="Review code for security and quality"
type=specialized
proactive=true
File: review-team/command.md
Category: Development
Difficulty: Advanced
Creates and manages a project-aware code review team of specialized Claude Code agents tailored to your specific project.
Required MCP Servers: filesystem
/review-team
agent=code-quality-reviewer
check=false
create=true
Server | Description | Commands |
---|---|---|
github |
GitHub repository and PR management | code-reviewer, project-setup |
filesystem |
File system operations | All commands |
memory |
Persistent memory and knowledge graph | code-reviewer, project-setup, api-explorer |
sqlite |
Local database operations | code-reviewer, project-setup, api-explorer |
puppeteer |
Browser automation and web scraping | api-explorer |
commands-com/mcp-server |
Commands.com MCP integration | smart-command-builder |
docker-mcp-discord |
Discord integration via Docker | discord-release |
docker-filesystem |
Docker filesystem access | discord-release |
ai-commands/
βββ commands.yaml # Repository metadata and command definitions
βββ README.md # This file
βββ LICENSE # MIT License
βββ code-reviewer/ # AI Code Reviewer
β βββ command.md
β βββ README.md
β βββ preview.png
βββ project-setup/ # Project Scaffolder
β βββ command.md
β βββ README.md
β βββ preview.png
βββ api-explorer/ # API Explorer & Documentation Generator
β βββ command.md
β βββ README.md
β βββ preview.png
βββ smart-command-builder/ # Smart Command Builder
β βββ command.md
β βββ README.md
β βββ preview.png
βββ eleventy-asset-pipeline/ # Eleventy Asset Pipeline
β βββ command.md
β βββ README.md
β βββ preview.png
βββ discord-release/ # Discord Release Generator
β βββ command.md
β βββ README.md
β βββ preview.png
βββ docs-guardrails/ # Docs Guardrails
β βββ command.md
β βββ README.md
βββ performance-agent-builder/ # Performance Agent Builder
β βββ command.md
β βββ README.md
β βββ FIXES_APPLIED.md
βββ docs-validator-agent-builder/ # Docs Validator Agent Builder
β βββ command.md
β βββ README.md
βββ subagent-builder/ # Subagent Builder
β βββ command.md
β βββ README.md
β βββ preview.png
βββ review-team/ # Review Team Manager
βββ command.md
βββ README.md
βββ preview.png
Use the Commands.com MCP to automatically generate your commands.yaml
file:
- Connect the Commands.com MCP to Claude
- Use AI prompts to scan your repository and generate commands
- Commit to GitHub and import to Commands.com
Full guide: https://commands.com/creator/commands-prompts/quick-start/
- Create a new directory for your command
- Add
command.md
with proper YAML frontmatter - Include a preview image (optional but recommended)
- Update
commands.yaml
with command metadata - Test thoroughly with required MCP servers
- Install Required MCP Servers: Ensure all required MCP servers are installed and configured
- Check Command Documentation: Each command has detailed instructions in its
command.md
file - Follow Argument Syntax: Use the exact argument format specified in the command
- Review Output: Commands generate files and reports - check the specified output directories
We welcome contributions of new commands or improvements:
- Fork this repository
- Create your command following the structure above
- Test with all required MCP servers
- Submit a pull request
For command ideas and best practices, visit the Commands.com documentation.
MIT License - see individual command files for specific licensing information.
- Commands.com Platform - Discover and share AI commands
- Claude Code Documentation - Official Claude Code docs
- MCP Documentation - Model Context Protocol specification
- Commands.com Quick Start - Create commands with AI