WORKFLOW_EXAMPLES
This guide provides practical examples of how to use the Claude Command Suite agents together for common development scenarios.
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition โ
- You can call itInvoke it directly when you want it.
Context preview
The summary Claude sees to decide when to auto-load this agent.
This guide provides practical examples of how to use the Claude Command Suite agents together for common development scenarios.
Agent definition
WORKFLOW_EXAMPLES.mdAgent Workflow Examples
This guide provides practical examples of how to use the Claude Command Suite agents together for common development scenarios.
๐ Complete Feature Development Workflow
Scenario: Adding a User Dashboard Feature
# 1. Strategic Planning
"Use strategic-analyst to model scenarios for adding a user analytics dashboard to our SaaS product"
# 2. Architecture Design
"Have project-architect design the dashboard module structure with React and TypeScript"
# 3. Implementation
"Create the dashboard components following our design"
# 4. Code Review
"Use code-auditor to review the dashboard implementation"
# 5. Security Check
"Have security-auditor specifically check the data access patterns in the dashboard"
# 6. Test Generation
"Use test-engineer to create comprehensive tests for the dashboard components"
# 7. Performance Analysis
"Have performance-auditor analyze the dashboard rendering performance"
# 8. Integration Setup
"Use integration-manager to create Linear tasks for remaining dashboard work"
# 9. Release Preparation
"Have release-manager prepare the dashboard feature for deployment"
๐ Bug Fix Workflow
Scenario: Critical Production Bug
# 1. Issue Sync
"Use integration-manager to sync GitHub issue #456 about the login bug to Linear"
# 2. Code Analysis
"Have code-auditor analyze the authentication module for potential issues"
# 3. Security Review
"Use security-auditor to check if this is a security vulnerability"
# 4. Fix Implementation
"Fix the authentication bug in the login handler"
# 5. Test Creation
"Have test-engineer create regression tests for this bug"
# 6. Hotfix Release
"Use release-manager to prepare and deploy a hotfix"
๐๏ธ New Project Setup Workflow
Scenario: Starting a New Microservice
# 1. Strategic Analysis
"Use strategic-analyst to evaluate microservice vs monolith for our inventory system"
# 2. Project Setup
"Have project-architect create a new Node.js microservice for inventory management"
# 3. Integration Planning
"Use integration-manager to set up GitHub-Linear sync for the new project"
# 4. Architecture Review
"Have architecture-auditor review the microservice boundaries and API design"
# 5. Test Infrastructure
"Use test-engineer to set up the testing framework and initial tests"
# 6. CI/CD Setup
"Have release-manager configure the deployment pipeline"
๐ Code Quality Improvement Workflow
Scenario: Technical Debt Reduction
# 1. Full Audit
"Run all code auditors on the legacy payments module"
# Agent Chain Activation:
- code-auditor โ Identifies general issues
- architecture-auditor โ Finds design problems
- performance-auditor โ Discovers bottlenecks
- security-auditor โ Uncovers vulnerabilities
# 2. Prioritization
"Use strategic-analyst to prioritize which technical debt to address first"
# 3. Task Creation
"Have integration-manager create Linear tasks for each improvement"
# 4. Implementation
"Refactor the payment processing based on architecture-auditor recommendations"
# 5. Testing
"Use test-engineer to ensure refactoring didn't break functionality"
๐ข Release Preparation Workflow
Scenario: Major Version Release
# 1. Pre-Release Analysis
"Have code-auditor do a complete review of all changes for v2.0"
# 2. Security Audit
"Use security-auditor to do a final security check before release"
# 3. Performance Baseline
"Have performance-auditor establish performance metrics for v2.0"
# 4. Test Coverage
"Use test-engineer to ensure we have >90% test coverage"
# 5. Release Preparation
"Have release-manager prepare the v2.0 release with changelog and migration guide"
# 6. Deployment Planning
"Use strategic-analyst to model rollout strategies for v2.0"
๐ Integration Sync Workflow
Scenario: Bi-directional GitHub-Linear Sync
# 1. Initial Setup
"Use integration-manager to set up bidirectional sync between GitHub and Linear"
# 2. Bulk Import
"Have integration-manager import all open GitHub issues to Linear"
# 3. Workflow Creation
"Create an automated workflow where:
- New GitHub issues โ integration-manager โ Linear tasks
- Linear status updates โ integration-manager โ GitHub issue updates
- PR merges โ integration-manager โ Linear task completion"
# 4. Monitoring
"Set up integration-manager to report daily sync status"
๐ฏ Performance Optimization Workflow
Scenario: Slow API Response Times
# 1. Performance Analysis
"Use performance-auditor to analyze the user API endpoints"
# 2. Database Review
"Have performance-auditor specifically check database queries in the user service"
# 3. Architecture Assessment
"Use architecture-auditor to evaluate if the service architecture is causing bottlenecks"
# 4. Implementation
"Implement the caching strategy recommended by performance-auditor"
# 5. Testing
"Have test-engineer create performance tests to verify improvements"
# 6. Monitoring Setup
"Use project-architect to add performance monitoring"
๐ก๏ธ Security Incident Response Workflow
Scenario: Potential Security Vulnerability Reported
# 1. Immediate Assessment
"Use security-auditor to investigate the reported XSS vulnerability in comments"
# 2. Impact Analysis
"Have strategic-analyst model the potential impact of this vulnerability"
# 3. Fix Development
"Implement security-auditor's recommended fixes immediately"
# 4. Testing
"Use test-engineer to create security-specific tests"
# 5. Emergency Release
"Have release-manager prepare an emergency security patch"
# 6. Post-Mortem
"Use integration-manager to create tasks for security improvements"
๐ Strategic Planning Workflow
Scenario: Evaluating Technology Migration
# 1. Current State Analysis
"Use architecture-auditor to document our current monolith architecture"
# 2. Scenario Modeling
"Have strategic-analyst model scenarios for migrating to microservices over 18 months"
# 3. Ri
Read more
Agent Workflow Examples
This guide provides practical examples of how to use the Claude Command Suite agents together for common development scenarios.
๐ Complete Feature Development Workflow
Scenario: Adding a User Dashboard Feature
# 1. Strategic Planning "Use strategic-analyst to model scenarios for adding a user analytics dashboard to our SaaS product" # 2. Architecture Design "Have project-architect design the dashboard module structure with React and TypeScript" # 3. Implementation "Create the dashboard components following our design" # 4. Code Review "Use code-auditor to review the dashboard implementation" # 5. Security Check "Have security-auditor specifically check the data access patterns in the dashboard" # 6. Test Generation "Use test-engineer to create comprehensive tests for the dashboard components" # 7. Performance Analysis "Have performance-auditor analyze the dashboard rendering performance" # 8. Integration Setup "Use integration-manager to create Linear tasks for remaining dashboard work" # 9. Release Preparation "Have release-manager prepare the dashboard feature for deployment"
๐ Bug Fix Workflow
Scenario: Critical Production Bug
# 1. Issue Sync "Use integration-manager to sync GitHub issue #456 about the login bug to Linear" # 2. Code Analysis "Have code-auditor analyze the authentication module for potential issues" # 3. Security Review "Use security-auditor to check if this is a security vulnerability" # 4. Fix Implementation "Fix the authentication bug in the login handler" # 5. Test Creation "Have test-engineer create regression tests for this bug" # 6. Hotfix Release "Use release-manager to prepare and deploy a hotfix"
๐๏ธ New Project Setup Workflow
Scenario: Starting a New Microservice
# 1. Strategic Analysis "Use strategic-analyst to evaluate microservice vs monolith for our inventory system" # 2. Project Setup "Have project-architect create a new Node.js microservice for inventory management" # 3. Integration Planning "Use integration-manager to set up GitHub-Linear sync for the new project" # 4. Architecture Review "Have architecture-auditor review the microservice boundaries and API design" # 5. Test Infrastructure "Use test-engineer to set up the testing framework and initial tests" # 6. CI/CD Setup "Have release-manager configure the deployment pipeline"
๐ Code Quality Improvement Workflow
Scenario: Technical Debt Reduction
# 1. Full Audit "Run all code auditors on the legacy payments module" # Agent Chain Activation: - code-auditor โ Identifies general issues - architecture-auditor โ Finds design problems - performance-auditor โ Discovers bottlenecks - security-auditor โ Uncovers vulnerabilities # 2. Prioritization "Use strategic-analyst to prioritize which technical debt to address first" # 3. Task Creation "Have integration-manager create Linear tasks for each improvement" # 4. Implementation "Refactor the payment processing based on architecture-auditor recommendations" # 5. Testing "Use test-engineer to ensure refactoring didn't break functionality"
๐ข Release Preparation Workflow
Scenario: Major Version Release
# 1. Pre-Release Analysis "Have code-auditor do a complete review of all changes for v2.0" # 2. Security Audit "Use security-auditor to do a final security check before release" # 3. Performance Baseline "Have performance-auditor establish performance metrics for v2.0" # 4. Test Coverage "Use test-engineer to ensure we have >90% test coverage" # 5. Release Preparation "Have release-manager prepare the v2.0 release with changelog and migration guide" # 6. Deployment Planning "Use strategic-analyst to model rollout strategies for v2.0"
๐ Integration Sync Workflow
Scenario: Bi-directional GitHub-Linear Sync
# 1. Initial Setup "Use integration-manager to set up bidirectional sync between GitHub and Linear" # 2. Bulk Import "Have integration-manager import all open GitHub issues to Linear" # 3. Workflow Creation "Create an automated workflow where: - New GitHub issues โ integration-manager โ Linear tasks - Linear status updates โ integration-manager โ GitHub issue updates - PR merges โ integration-manager โ Linear task completion" # 4. Monitoring "Set up integration-manager to report daily sync status"
๐ฏ Performance Optimization Workflow
Scenario: Slow API Response Times
# 1. Performance Analysis "Use performance-auditor to analyze the user API endpoints" # 2. Database Review "Have performance-auditor specifically check database queries in the user service" # 3. Architecture Assessment "Use architecture-auditor to evaluate if the service architecture is causing bottlenecks" # 4. Implementation "Implement the caching strategy recommended by performance-auditor" # 5. Testing "Have test-engineer create performance tests to verify improvements" # 6. Monitoring Setup "Use project-architect to add performance monitoring"
๐ก๏ธ Security Incident Response Workflow
Scenario: Potential Security Vulnerability Reported
# 1. Immediate Assessment "Use security-auditor to investigate the reported XSS vulnerability in comments" # 2. Impact Analysis "Have strategic-analyst model the potential impact of this vulnerability" # 3. Fix Development "Implement security-auditor's recommended fixes immediately" # 4. Testing "Use test-engineer to create security-specific tests" # 5. Emergency Release "Have release-manager prepare an emergency security patch" # 6. Post-Mortem "Use integration-manager to create tasks for security improvements"
๐ Strategic Planning Workflow
Scenario: Evaluating Technology Migration
# 1. Current State Analysis "Use architecture-auditor to document our current monolith architecture" # 2. Scenario Modeling "Have strategic-analyst model scenarios for migrating to microservices over 18 months" # 3. Ri
A comprehensive development toolkit designed following Anthropic's Claude Code Best Practices for AI-assisted software development.
Repo: qdhenry/Claude-Command-Suite
Other agents on claude-command-suite.
- TASK-STATUS-PROTOCOL
Defines and manages task status transitions, ensuring consistent task lifecycle management across projects.
Open agent - agent-organizer
A highly advanced AI agent that functions as a master orchestrator for complex, multi-agent tasks. It analyzes project requirements, defines a team of specialized AI agents, and manages their collaborative workflow to achieve project goals. Use PROACTIVELY for comprehensive
Open agent - architecture-auditor
Software architecture and design pattern specialist. Use PROACTIVELY when adding new features, refactoring code, or reviewing system design. MUST BE USED for architectural decisions and major code structure changes.
Open agent - azure-devops-specialist
Azure DevOps and cloud infrastructure specialist with comprehensive knowledge of all Azure services. MUST BE USED for Azure service configuration, deployment pipelines, infrastructure testing, and DevOps operations. Expert in using Azure CLI (`az` command) via Bash for all Azure
Open agent - product-manager
A strategic and customer-focused AI Product Manager for defining product vision, strategy, and roadmaps, and leading cross-functional teams to deliver successful products. Use PROACTIVELY for developing product strategies, prioritizing features, and ensuring alignment between
Open agent - code-auditor
Proactive code quality assurance specialist. MUST BE USED after any code changes to ensure quality, security, and performance standards. Use PROACTIVELY to review code quality, identify issues, and suggest improvements.
Open agent

