Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.
Claude Code slash commands, skills, and agents
Claude Command Suite packages a large set of Claude Code workflows into one installable toolkit. It combines slash commands, skills, agents, and hooks so you can run repeatable flows for code review, test generation, security audits, deployment prep, and documentation without rebuilding the prompt structure each time.
Builders who use Claude Code and want reusable project workflows for coding, review, testing, and release work.
You can run structured Claude Code workflows instead of rewriting the same instructions for each task.
What it does
Slash command library
Provides 216+ namespace-organized commands such as `/dev:code-review`, `/test:write-tests`, and `/deploy:prepare-release`.
Claude Code skills
Includes 12 model-invoked skills for recurring tasks like Linear sync, Cloudflare deployment, WebMCP setup, audio transcription, and dead code removal.
Specialized agents
Ships 54 AI agents for tasks such as code quality review, security scanning, test coverage analysis, and GitHub-Linear synchronization.
Hooks and workflow automation
Includes hook files and scripted workflows that wrap and coordinate agent actions around project tasks.
Installation and setup scripts
Provides `install.sh` plus scripts for setting up releases, changelogs, retroactive releases, and WebMCP installation.
How to get it
- 1Triggering skills
"What do I need to work on today?" # Activates linear-todo-sync "Deploy a cloudflare worker" # Activates cloudflare-manager "Set up WebMCP in this project" # Activates webmcp "Transcribe this audio file" # Activates elevenlabs-transcribe "Find and remove dead code" # Activates remove-dead-code
- 2Creating skills
/skills:build-skill
- 3Simply add command files directly to your project's .claude/commands/ folder
# Create the commands directory in your project mkdir -p .claude/commands # Download specific commands you need curl -o .claude/commands/dev/code-review.md https://raw.githubusercontent.com/qdhenry/Claude-Command-Suite/main/.claude/commands/dev/code-review.md # Or copy your own custom command files cp my-custom-command.md .claude/commands/
- 4Use our installation script to set up all commands at once
git clone https://github.com/qdhenry/Claude-Command-Suite.git cd Claude-Command-Suite chmod +x install.sh ./install.sh
- 5Run
claude code /dev:code-review # Review your entire codebase /project:create-feature # Build a new feature /security:security-audit # Check for security issues /dev:cleanup-vibes # Clean up a vibecoded project /webmcp:setup # Set up WebMCP integration
README
Claude Command Suite
A comprehensive development toolkit designed following Anthropic's Claude Code Best Practices for AI-assisted software development.
Claude Command Suite is a development toolkit providing 216+ slash commands, 12 Claude Code Skills, 54 AI agents, and automated workflows for software engineering tasks. The suite covers code review, testing, deployment, media processing, WebMCP integration, business scenario modeling, and GitHub-Linear synchronization through structured, repeatable workflows.
- Slash Commands: Namespace-organized commands (
/dev:code-review,/test:generate-test-cases,/deploy:prepare-release) for development workflows - AI Agents: Specialized agents for security auditing, test coverage analysis, and cross-platform synchronization
- Claude Code Skills: 12 model-invoked capabilities for recurring workflows including Linear task management, WebMCP integration, media processing, and Cloudflare deployment
- Standalone Commands: Purpose-built commands for project cleanup, spec writing, file watching, WebMCP, and media processing
- Automated Workflows: Pre-configured sequences for feature implementation and production deployment
- Scenario Simulators: Decision-making tools for business modeling, system behavior analysis, and architectural evaluation
- Task Orchestration: Task management system with Git integration and context preservation
AI Agents
Specialized AI agents handle complex development tasks through focused tool access and isolated contexts:
- Code Quality Suite: Automated code review, security scanning, performance analysis
- Test Engineer: Test generation with coverage analysis
- Integration Manager: GitHub-Linear bidirectional synchronization
- Strategic Analyst: Business scenario modeling and decision analysis
- Additional Agents: Project initialization, release management, architecture review
AI Agents Documentation | Workflow Examples
Claude Code Skills
Claude Code Skills extend the suite with model-invoked capabilities that complement slash commands. Skills are automatically activated by Claude based on context, suitable for recurring workflows and domain-specific expertise.
Skills vs Commands
| Feature | Skills (Model-Invoked) | Commands (User-Invoked) |
|---|---|---|
| Activation | Contextually triggered | Explicit invocation via /command |
| Use Case | Recurring workflows, domain expertise | Specific task execution |
| Scope | Personal or project-wide | Project-specific |
| Distribution | Git repositories, plugins | Command file copying |
Available Skills
linear-todo-sync - Linear task management integration
- GraphQL API integration for task retrieval
- Priority-based organization with metadata
- Markdown output with actionable links
- Context triggers: "What do I need to work on?", "Show my work"
cloudflare-manager - Cloudflare infrastructure management
- Workers deployment with URL extraction
- KV Storage and R2 bucket management
- Cloudflare Pages deployment
- DNS and routing configuration
- Requirements: Bun runtime, CLOUDFLARE_API_KEY
webmcp - WebMCP browser-native AI tool integration
- Imperative JavaScript API and declarative HTML form annotation
- Tool setup, debugging, auditing, and testing workflows
- Chrome 146+ with WebMCP flag enabled
- Model Context Tool Inspector integration
bigcommerce-api - BigCommerce API expert
- REST V2/V3, GraphQL Storefront, webhooks, and OAuth
- Headless storefront development with Next.js/Catalyst
- Catalog, Orders, Customers, and Payments API workflows
- Multi-storefront channel awareness and rate limit management
audit-env-variables - Environment variable security audit
- Scans
.env*files and cross-references usage across JS/TS codebases - Detects unused variables, dynamic access patterns, and known services
- Optional cleanup mode with backup branches and regression prevention
remove-dead-code - Multi-agent dead code removal
- Parallel scout agents analyze unused exports, orphaned files, dead imports
- Automatic backup branch creation before any removal
- Post-removal validation with TypeScript checking, build, and test suite
elevenlabs-transcribe - Audio/video transcription
- ElevenLabs Scribe v2 API with speaker diarization (up to 32 speakers)
- Audio event tagging, language detection, and key-term biasing
- Requirements: ELEVENLABS_API_KEY,
uvruntime
extract-video-frames - Video frame extraction
- PNG frame extraction at configurable intervals via ffmpeg
- Aligned audio segments and full audio track export
- JSON manifest generation for agent handoff pipelines
file-watcher - Chokidar-based file change watcher
- Monitors files/directories and triggers
claude -pon changes - Glob filtering, debounce control, and
{{file}}placeholder support - Use cases: auto code review, type checking, test generation
gsap-animation - GSAP animation reference
- Complete API reference covering tweens, timelines, easing, stagger, and plugins
- ScrollTrigger, Flip, SplitText, Draggable deep references
- React integration with
useGSAP()hook and SSR/Next.js patterns
setup-agent-tail - Agent-tail log aggregation setup
- Auto-detects framework (Vite, Next.js, monorepo, Node CLI)
- Browser console capture and configurable log filtering
- Package manager detection and script wrapping
setup-portless - Portless named .localhost URLs
- Replaces port numbers with stable
name.localhostURLs - Monorepo subdomain naming patterns
- Requirements: Node.js 20+, macOS or Linux
Skills Builder Framework
Structured workflow for creating custom skills:
- /skills:build-skill - Guided skill creation command
- Four-phase process: Requirements elicitation, code generation, validation, documentation
- Quality assurance: Automated testing and validation scripts
- Templates: Five skill templates for different use cases
Usage
Triggering skills:
"What do I need to work on today?" # Activates linear-todo-sync
"Deploy a cloudflare worker" # Activates cloudflare-manager
"Set up WebMCP in this project" # Activates webmcp
"Transcribe this audio file" # Activates elevenlabs-transcribe
"Find and remove dead code" # Activates remove-dead-code
Creating skills:
/skills:build-skill
Documentation:
- Quick Start Guide - Skill creation walkthrough
- Complete Documentation - Full reference guide
- Browse Skills - Available implementations
๐ Table of Contents
| ๐ค AI Agents | ๐จ Skills | ๐ Getting Started | โก Commands | ๐ก Usage |
|---|---|---|---|---|
| AI Agents | Skills | Quick Start | Available Commands | How It Works |
| Agent Docs | Skills Quickstart | Installation Guide | Command Namespaces | Common Workflows |
| Workflows | Skills Docs | Contributing |
Quick Start
Option 1: Direct Installation (Recommended)
Simply add command files directly to your project's .claude/commands/ folder:
# Create the commands directory in your project
mkdir -p .claude/commands
# Download specific commands you need
curl -o .claude/commands/dev/code-review.md https://raw.githubusercontent.com/qdhenry/Claude-Command-Suite/main/.claude/commands/dev/code-review.md
# Or copy your own custom command files
cp my-custom-command.md .claude/commands/
Option 2: Install All Commands
Use our installation script to set up all commands at once:
git clone https://github.com/qdhenry/Claude-Command-Suite.git
cd Claude-Command-Suite
chmod +x install.sh
./install.sh
Start Using Commands
claude code
/dev:code-review # Review your entire codebase
/project:create-feature # Build a new feature
/security:security-audit # Check for security issues
/dev:cleanup-vibes # Clean up a vibecoded project
/webmcp:setup # Set up WebMCP integration
Available Commands
216 commands organized by namespace for software development workflows.
54 AI agents available for complex task automation. AI Agents Documentation
Command Namespace Index
| Core Development | Quality & Testing | Deployment | Collaboration | Advanced |
|---|---|---|---|---|
| ๐ Project | ๐งช Test | ๐ฆ Deploy | ๐ฅ Team | ๐ฏ Simulation |
| ๐ป Dev | ๐ Security | ๐ Docs | ๐ Sync | ๐ Orchestration |
| ๐ง Setup | โก Performance | ๐ WebMCP | ๐ฌ Session | ๐ง WFGY |
| ๐ฆ Rust | ๐ฌ Media |
Command Namespaces
/project:* - Project Management
Project initialization, configuration, and management. Commands for project creation, dependency management, milestone tracking, and health monitoring.
/project:init-project- Initialize new project with essential structure/project:add-package- Add and configure new project dependencies/project:create-feature- Scaffold new feature with boilerplate code/project:milestone-tracker- Track and monitor project milestone progress/project:project-health-check- Analyze overall project health and metrics/project:project-to-linear- Sync project structure to Linear workspace/project:project-timeline-simulator- Simulate project outcomes with variable modeling/project:pac-configure- Configure Product as Code (PAC) project structure/project:pac-create-epic- Create new PAC epic with guided workflow/project:pac-create-ticket- Create new PAC ticket within an epic/project:pac-validate- Validate PAC structure for specification compliance/project:pac-update-status- Update PAC ticket status and track progress/project:todo-branch- Create feature branches from todo items/project:todo-worktree- Create git worktrees from todo items
/dev:* - Development Tools
Development utilities including code review, debugging, refactoring, and analysis modes.
/dev:code-review- Comprehensive code quality review/dev:debug-error- Systematically debug and fix errors/dev:explain-code- Analyze and explain code functionality/dev:refactor-code- Intelligently refactor and improve code quality/dev:fix-issue- Identify and resolve code issues/dev:ultra-think- Deep analysis and problem solving mode/dev:prime- Enhanced AI mode for complex tasks/dev:all-tools- Display all available development tools/dev:git-status- Show detailed git repository status/dev:clean-branches- Clean up merged and stale git branches/dev:directory-deep-dive- Analyze directory structure and purpose/dev:code-to-task- Convert code analysis to Linear tasks/dev:code-permutation-tester- Test multiple code variations through simulation/dev:architecture-scenario-explorer- Explore architectural decisions through scenario analysis/dev:incremental-feature-build- Build features incrementally with validation gates/dev:parallel-feature-build- Build features using parallel agent execution/dev:cloudflare-worker- Generate and deploy Cloudflare Workers/dev:generate-linear-worklog- Generate work logs from Linear task history/dev:rule2hook- Convert CLAUDE.md rules to Claude Code hooks/dev:cleanup-vibes- Transform vibecoded projects into structured, deployment-ready codebases/dev:remove-dead-code- Multi-agent dead code scanning, removal, and validation with backup branches/dev:create-ui-component- Create UI components with design system compliance and Storybook stories/dev:watch- File watcher that triggers Claude on changes with glob filtering and debounce/dev:xml-prompt-formatter- Reformat prompts using structured XML tags for semantic clarity
/test:* - Testing Suite
Testing tools for unit tests, integration tests, E2E tests, coverage analysis, mutation testing, and visual regression testing.
/test:generate-test-cases- Generate comprehensive test cases automatically/test:write-tests- Write unit and integration tests/test:test-coverage- Analyze and report test coverage/test:setup-comprehensive-testing- Setup complete testing infrastructure/test:e2e-setup- Configure end-to-end testing suite/test:setup-visual-testing- Setup visual regression testing/test:setup-load-testing- Configure load and performance testing/test:add-mutation-testing- Setup mutation testing for code quality/test:add-property-based-testing- Implement property-based testing framework/test:test-changelog-automation- Automate changelog testing workflow
/security:* - Security & Compliance
Security auditing, dependency scanning, authentication implementation, and security hardening for codebase security.
/security:security-audit- Perform comprehensive security assessment/security:dependency-audit- Audit dependencies for security vulnerabilities/security:security-hardening- Harden application security configuration/security:add-authentication-system- Implement secure user authentication system
/performance:* - Performance Optimization
Tools for optimizing build times, bundle sizes, database queries, caching strategies, and application performance.
/performance:performance-audit- Audit application performance metrics/performance:optimize-build- Optimize build processes and speed/performance:optimize-bundle-size- Reduce and optimize bundle sizes/performance:optimize-database-performance- Optimize database queries and performance/performance:implement-caching-strategy- Design and implement caching solutions/performance:add-performance-monitoring- Setup application performance monitoring/performance:setup-cdn-optimization- Configure CDN for optimal delivery/performance:system-behavior-simulator- Simulate system performance under various loads
/sync:* - Integration & Synchronization
Bidirectional synchronization between GitHub Issues and Linear, PR tracking, conflict resolution, and cross-platform task management.
/sync:sync-issues-to-linear- Sync GitHub issues to Linear workspace/sync:sync-linear-to-issues- Sync Linear tasks to GitHub issues/sync:bidirectional-sync- Enable bidirectional GitHub-Linear synchronization/sync:issue-to-linear-task- Convert GitHub issues to Linear tasks/sync:linear-task-to-issue- Convert Linear tasks to GitHub issues/sync:sync-pr-to-task- Link pull requests to Linear tasks/sync:sync-status- Monitor GitHub-Linear sync health status/sync:bulk-import-issues- Bulk import GitHub issues to Linear/sync:cross-reference-manager- Manage cross-platform reference links/sync:sync-automation-setup- Setup automated synchronization workflows/sync:sync-conflict-resolver- Resolve synchronization conflicts automatically/sync:task-from-pr- Create Linear tasks from pull requests
/deploy:* - Deployment & Release
Release preparation, automated deployments, rollback capabilities, containerization, and Kubernetes deployment management.
/deploy:prepare-release- Prepare and validate release packages/deploy:hotfix-deploy- Deploy critical hotfixes quickly/deploy:rollback-deploy- Rollback deployment to previous version/deploy:setup-automated-releases- Setup automated release workflows/deploy:containerize-application- Containerize application for deployment/deploy:setup-kubernetes-deployment- Configure Kubernetes deployment manifests/deploy:ci-setup- Setup continuous integration pipeline/deploy:add-changelog- Generate and maintain project changelog/deploy:changelog-demo-command- Demo changelog automation features
/docs:* - Documentation Generation
Documentation automation for APIs, architecture diagrams, onboarding guides, and troubleshooting documentation.
/docs:generate-api-documentation- Auto-generate API reference documentation/docs:doc-api- Generate API documentation from code/docs:create-architecture-documentation- Generate comprehensive architecture documentation/docs:create-onboarding-guide- Create developer onboarding guide/docs:migration-guide- Create migration guides for updates/docs:troubleshooting-guide- Generate troubleshooting documentation
/setup:* - Configuration & Setup
Setup commands for development environments, linting, formatting, monitoring, database schemas, and API design.
/setup:setup-development-environment- Setup complete development environment/setup:setup-linting- Setup code linting and quality tools/setup:setup-formatting- Config
Files in the repo
- .claude
- .feature-tracking
- .github
- scripts
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- FUTURE_FEATURES_ROADMAP.md
- install.sh
- README.md
- RELEASE_CHECKLIST.md
- RELEASE_NOTES_v3.2.0.md
- ROADMAP.md
- SKILL_BUILDER_ENHANCEMENTS.md
- SKILL_BUILDER_SUMMARY.md
- version.txt
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More plugins

Graphs that teach > graphs that impress. Turn any code into an interactive knowledge graph you can explore, search, and ask questions about. Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.
OmO: Just type "mass ulw" keyword with your prompt. Now you are the master of graph engineering.
Persistent Context Across Sessions for Every Agent โ Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More
Opinionated Oxlint rules for rejecting low-evidence TypeScript and JavaScript patterns
Teams-first Multi-agent orchestration for Claude Code