A comprehensive context-aware AI-driven development workflow system built on Claude Code's Sub-Agents feature, specifically designed for manufacturing industry applications. This system transforms manufacturing project ideas into production-ready .NET 9 applications through specialized AI agents working in coordinated phases with intelligent iteration management, optimized for compliance, integration, and multi-facility deployment scenarios.
- π Manufacturing-First Design: Built specifically for manufacturing software requirements
- π§ Context-Aware Intelligence: Reads existing project state to avoid unnecessary regeneration
- β‘ 70% Token Reduction: Intelligent agent selection for iterative development
- π Organized Documentation: Structured hierarchy prevents document chaos
- π‘οΈ Compliance Ready: Built-in FDA, HACCP, and ISO compliance patterns
- π Integration Patterns: Ready-to-use MES, SCADA, and ERP integration
- βοΈ Azure-Optimized: Production-ready Azure deployment configurations
- Overview
- System Architecture
- Installation
- Quick Start
- Context-Aware Workflow
- Documentation Organization
- Agent Reference
- Usage Examples
- Quality Gates
- Best Practices
- Advanced Usage
- Troubleshooting
The Spec Workflow System leverages Claude Code's Sub-Agents capability to create a context-aware, multi-agent development pipeline optimized for .NET 9 manufacturing applications. Each agent is a specialized expert that understands existing project state, manufacturing domain requirements, and compliance needs while handling specific aspects of the industrial software development lifecycle.
- Context-Aware Workflow: Analyzes existing project state to avoid unnecessary regeneration
- Request Type Classification: Automatically determines if this is a new project, bug fix, enhancement, or refactor
- Manufacturing Domain Focus: Built-in understanding of compliance, integration, and multi-facility requirements
- Organized Documentation: Structured folder hierarchy prevents document chaos
- Token Efficiency: Minimal token usage through intelligent agent selection
- Iterative Development: Supports continuous improvement without starting from scratch
- .NET 9 Manufacturing Stack: Specialized for Clean Architecture, Entity Framework Core, and Azure deployment
- Quality Gates: Automated checkpoints with manufacturing-specific validation criteria
- Eliminates document chaos through organized iteration folders
- 70% reduction in token usage for iterative development
- Context-aware agent selection prevents unnecessary work
- Maintains project history through versioned iterations
- Optimized for .NET 9, Clean Architecture, and Azure deployment
- Built-in support for manufacturing compliance standards (FDA, HACCP, ISO)
- Specialized patterns for MES, SCADA, and ERP system integration
- Multi-facility deployment and configuration management
graph TD A[Project Request] --> B[spec-orchestrator] B --> C[Context Analysis] C --> D{Project State} D -->|Existing Project| E[Request Classification] D -->|New Project| F[Full Workflow] E --> G{Request Type} G -->|Bug Fix| H[Targeted Agent Chain] G -->|Enhancement| I[Selective Agent Chain] G -->|Refactor| J[Optimization Chain] G -->|Major Change| F H --> K[spec-analyst Analysis] K --> L[spec-developer Fixes] L --> M[spec-validator Regression] I --> N[spec-analyst Updates] N --> O[spec-architect Conditional] O --> P[spec-developer Implementation] J --> Q[spec-architect Review] Q --> R[spec-developer Refactor] F --> S[Complete Agent Chain] S --> T[spec-analyst Requirements] T --> U[spec-architect Design] U --> V[spec-developer Implementation] M --> W[Quality Gate] P --> W R --> W V --> W W -->|Pass β₯90%| X[spec-tester] W -->|Fail <90%| Y[Targeted Feedback] Y --> Z[Limited Retries β€2] Z --> H X --> AA[Production Ready] style B fill:#1a73e8,color:#fff style C fill:#34a853,color:#fff style W fill:#f9ab00,color:#fff style AA fill:#34a853,color:#fff
- Claude Code (latest version with Sub-Agents support)
- Project directory initialized
- .NET 9 SDK (for .NET projects)
- Basic understanding of AI-assisted development
-
Download the agents
# Option 1: Clone the repository git clone https://github.com/jakeashcraft/claude-sub-agent.git cd claude-sub-agent # Option 2: Download specific agents you need # Individual agent files are available in the agents/ directory
-
Copy agents and commands to your project's Claude Code directory
# Create .claude directory structure in your project mkdir -p .claude/agents .claude/commands .claude/docs # Copy all agents from categorized directories cp -r agents/*/*.md .claude/agents/ # Copy the enhanced workflow command cp commands/agent-workflow.md .claude/commands/
-
Initialize documentation structure
# Create organized documentation folders mkdir -p docs/{project,architecture,iterations,current,archive} # Initialize current state tracking touch docs/current/{active-tasks.md,known-issues.md,recent-changes.md}
-
Verify installation
Your project structure after installation:
your-project/ βββ .claude/ β βββ commands/ β β βββ agent-workflow.md # Enhanced context-aware workflow β βββ agents/ β β βββ spec-orchestrator.md # .NET 9 Context-aware orchestrator β β βββ spec-analyst.md # Requirements analyst β β βββ spec-architect.md # .NET 9 system architect β β βββ spec-developer.md # .NET 9 implementation specialist β β βββ spec-validator.md # .NET 9 quality validator β β βββ spec-tester.md # .NET 9 testing specialist β β βββ ... # Other specialized agents β βββ docs/ # Organized documentation structure β βββ project/ # Core project docs (stable) β βββ architecture/ # System design docs β βββ iterations/ # Version-controlled iterations β βββ current/ # Active working state β βββ archive/ # Completed work βββ src/ # .NET 9 source code βββ tests/ # xUnit test projects βββ CLAUDE.md # Enhanced project guidance βββ README.md # This file
# For a new project /agent-workflow "Create a .NET 9 Web API for managing inventory with Clean Architecture" # For bug fixes on existing projects /agent-workflow "The user login is failing with valid credentials" # For enhancements to existing projects /agent-workflow "Add real-time notifications using SignalR to the existing application" # For refactoring existing code /agent-workflow "Refactor the data access layer to use the Repository pattern"
You: /agent-workflow "The user authentication is broken" Claude (spec-orchestrator): Analyzing existing project state... Found existing documentation in docs/ Classification: BUG_FIX workflow Creating iteration: v2-bugfix-20241201-1430 [Context Analysis - 5 minutes] β Existing requirements analyzed β Issue classified as authentication bug β Iteration v2-bugfix created β Targeted agent chain selected [Targeted Development - 45 minutes] β Root cause identified in JWT validation β Authentication service fixed β Regression tests added β Quality Gate: PASSED (94/100) Project updated! Changes in iteration v2-bugfix: - AuthenticationService.cs updated - New regression tests added - Documentation updated in current/ - No unnecessary regeneration of existing docs
The system automatically analyzes your request and existing project state to determine the optimal workflow:
- Trigger: No existing
docs/
structure - Keywords: "create", "build", "new project", "from scratch"
- Agent Chain: Full workflow (analyst β architect β developer β validator β tester)
- Documentation: Complete initial documentation set
- Trigger: Existing project + issue description
- Keywords: "bug", "broken", "not working", "error", "fails"
- Agent Chain: Targeted (analyst analysis β developer fixes β validator regression)
- Documentation: Issue analysis + fix documentation in iteration folder
- Trigger: Existing project + new functionality
- Keywords: "add", "new feature", "enhance", "improve", "extend"
- Agent Chain: Selective (analyst updates β architect if needed β developer β validator β tester)
- Documentation: Requirements updates + implementation in iteration folder
- Trigger: Code improvement without new functionality
- Keywords: "refactor", "clean up", "optimize", "improve code"
- Agent Chain: Optimization (architect review β developer refactor β validator compliance)
- Documentation: Architecture improvements + refactoring notes
The orchestrator intelligently selects only necessary agents:
# Bug fix example - Only 3 agents needed instead of 8 Bug Fix: spec-analyst β spec-developer β spec-validator # Small enhancement - Skips architecture if no structural changes Enhancement: spec-analyst β spec-developer β spec-validator β spec-tester # Major feature - Includes architecture updates Major Enhancement: spec-analyst β spec-architect β spec-developer β spec-validator β spec-tester # Refactoring - Focuses on code quality Refactor: spec-architect β spec-developer β spec-validator
docs/ βββ project/ # Core project docs (rarely change) β βββ requirements.md # Master requirements β βββ project-charter.md # Project overview β βββ stakeholders.md # Key contacts β βββ success-criteria.md # Definition of done βββ architecture/ # System design (update when needed) β βββ system-architecture.md # Clean Architecture design β βββ api-specifications.md # OpenAPI specs β βββ data-models.md # Entity Framework models β βββ security-design.md # Authentication & authorization β βββ deployment-strategy.md # Azure deployment plan βββ iterations/ # Version-controlled changes β βββ v1-initial-setup/ # Initial project creation β β βββ iteration-overview.md β β βββ implementation-plan.md β β βββ validation-report.md β β βββ retrospective.md β βββ v2-auth-bugfix/ # Authentication bug fixes β βββ v3-reporting-feature/ # New reporting functionality β βββ v4-performance-opts/ # Performance optimizations βββ current/ # Active working state β βββ request-analysis.md # Current request classification β βββ active-tasks.md # Work in progress β βββ known-issues.md # Identified problems β βββ next-priorities.md # Upcoming work β βββ recent-changes.md # Change log βββ archive/ # Completed/obsolete docs βββ old-requirements-v1.md
- No Document Chaos: Instead of 59+ scattered files, logical organization
- Version Control: Each iteration has its own folder with complete context
- Easy Navigation: Clear hierarchy makes finding information simple
- Change Tracking: Complete history of what changed when and why
- Token Efficiency: Agents read only relevant existing documentation
All agents now include:
- Context Awareness: Read existing project state before starting work
- Incremental Updates: Update existing documents rather than recreate
- Iteration Management: Organize work into versioned iterations
- .NET 9 Optimization: Specialized knowledge of .NET 9, Clean Architecture, EF Core
- Azure Integration: Deployment-ready configurations for Azure App Service/AKS
Agent | Purpose | Context-Aware Features | .NET 9 Specialization |
---|---|---|---|
spec-orchestrator | Workflow coordination & request classification | Analyzes existing docs, selects optimal agent chain | .NET project structure, quality gates |
spec-analyst | Requirements analysis | Updates existing requirements incrementally | C# domain modeling, user stories |
spec-architect | System design | Enhances existing architecture, minimal changes | Clean Architecture, EF Core, Azure |
database-specialist | Manufacturing database expertise | Auto-included for database-intensive requests | Historian integration, FDA compliance, time-series optimization |
spec-developer | Implementation | Follows existing patterns, targeted changes | Modern C# 13, ASP.NET Core, Entity Framework |
spec-validator | Quality validation | .NET-specific quality criteria, regression testing | Code coverage, security, performance |
spec-tester | Testing | Extends existing test suites, regression focus | xUnit, integration tests, mocking patterns |
Each agent contributes to .NET-specific quality metrics:
- Requirements Coverage: 95% (business rules clearly defined)
- Clean Architecture Compliance: 90% (proper layer separation)
- Code Coverage: 85% (xUnit tests with meaningful assertions)
- Security Score: 95% (OWASP compliance, proper authentication)
- Performance Score: 90% (response times, memory usage)
- Azure Readiness: 85% (deployment configuration, monitoring)
/agent-workflow "Create a .NET 9 enterprise application for managing manufacturing processes across 5 US facilities with Entra authentication and role-based access control, real-time monitoring, and Azure deployment" # Expected behavior: # - Classification: NEW_PROJECT # - Full agent chain executed # - Complete documentation structure created # - Clean Architecture with .NET 9 # - Entity Framework Core for data access # - Azure App Service deployment configuration # - Comprehensive test suite with xUnit
/agent-workflow "User authentication is failing after the recent Azure AD B2C integration" # Expected behavior: # - Classification: BUG_FIX # - Reads existing authentication architecture # - Creates iteration v3-auth-bugfix/ # - Targeted agent chain: analyst β developer β validator # - Minimal documentation updates # - Regression tests added # - No unnecessary architecture regeneration
/agent-workflow "Add real-time inventory tracking with SignalR to the existing manufacturing application" # Expected behavior: # - Classification: ENHANCEMENT # - Updates existing requirements in new iteration # - Evaluates if architecture changes needed (yes, SignalR) # - Selective agent chain: analyst β architect β developer β validator β tester # - Extends existing test suite # - Documents SignalR configuration
/agent-workflow "Add Wonderware Historian integration for real-time SPC control charts with FDA audit trail" # Expected behavior: # - Classification: ENHANCEMENT # - Database keywords detected: "wonderware", "historian", "real-time", "FDA audit trail" # - Agent chain: analyst β architect β database-specialist β developer β validator β tester # - Database-specialist provides: Historian integration patterns, time-series optimization, FDA compliance schemas # - Creates manufacturing-specific database models and queries # - Implements regulatory compliance audit trails # - Extends test suite with historian integration tests
/agent-workflow "Optimize the data access layer performance using EF Core best practices and caching" # Expected behavior: # - Classification: REFACTOR # - Reviews existing architecture # - Agent chain: architect β developer β validator # - Focuses on Entity Framework optimization # - Implements Redis caching # - Validates no functionality changes # - Performance benchmarking tests
- Requirements completeness and .NET alignment
- Clean Architecture feasibility assessment
- Entity Framework model validity
- Azure deployment strategy validation
- Security design compliance
- C# code quality (StyleCop, analyzers)
- Unit test coverage (β₯85% with xUnit)
- Clean Architecture layer compliance
- Entity Framework performance patterns
- Security implementation (authentication, authorization)
- Overall quality score aggregation
- Azure deployment readiness
- Application Insights monitoring configuration
- Documentation completeness
- Operational runbook validation
Quality gates now consider project context:
- Bug Fixes: Focus on regression prevention and fix validation
- Enhancements: Validate integration with existing system
- Refactoring: Ensure no functional changes occurred
- New Projects: Full comprehensive quality assessment
- Start Small: Begin with bug fixes to understand the system
- Trust Classification: Let the orchestrator determine the optimal workflow
- Review Iterations: Check iteration folders to understand project evolution
- Maintain Clean State: Keep current/ folder updated with active work
- Follow Clean Architecture: Use the established layer patterns
- Entity Framework Best Practices: Leverage EF Core optimizations
- Modern C# Features: Use records, pattern matching, nullable reference types
- Azure Integration: Design for cloud-native deployment from the start
- Stable vs Dynamic: Keep core docs in project/, changes in iterations/
- Version Control: Each significant change gets its own iteration folder
- Change Tracking: Always update recent-changes.md with summaries
- Archive Old: Move obsolete documents to archive/ folder
- Precise Requests: Be specific about what needs to be changed
- Trust Context: Let agents read existing state rather than re-explaining
- Incremental Work: Make small, focused changes rather than large rewrites
- Validate Scope: Ensure changes are necessary before starting
{ "requestClassification": { "forceType": "ENHANCEMENT", "skipAnalysis": false }, "qualityThresholds": { "planning": 90, "development": 85, "validation": 80 }, "agentSelection": { "skipArchitect": false, "forceTesting": true, "customValidation": ["security-scan", "performance-benchmark"] }, "documentationStrategy": { "iterationNaming": "v{version}-{type}-{timestamp}", "archiveThreshold": "30 days", "contextDepth": 3 } }
# GitHub Actions with context-aware validation name: .NET Context-Aware Validation on: [pull_request] jobs: validate-changes: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Detect Change Type id: change-detection run: | # Analyze docs/current/recent-changes.md # Determine if this requires validation echo "change-type=${{ env.CHANGE_TYPE }}" >> $GITHUB_OUTPUT - name: Context-Aware Validation if: steps.change-detection.outputs.change-type != 'documentation' run: | # Run appropriate validation based on change type /agent-workflow "Validate recent changes" --phase=validation
# Specialized deployment for manufacturing environments /agent-workflow "Deploy the inventory system to Facility #3 in with local compliance requirements and integration with existing MES systems" # Context considerations: # - Multi-facility deployment patterns # - Manufacturing execution system integration # - Compliance and audit requirements # - Real-time production data integration # - Facility-specific configurations
-
Wrong Request Classification
# Force specific request type /agent-workflow "Add reporting feature" --force-type=ENHANCEMENT
-
Missing Context
# Check if docs/ structure exists ls -la docs/ # Initialize if missing /agent-workflow "Initialize project context" --force-type=NEW_PROJECT
-
Document Chaos (Legacy Projects)
# Migrate existing scattered docs to organized structure /agent-workflow "Organize existing documentation into iteration structure"
-
Agent Selection Issues
# Override agent selection /agent-workflow "Fix authentication bug" --agents="spec-developer,spec-validator"
-
Clean Architecture Violations
- Check validation reports in iterations/
- Review architecture compliance scores
- Use spec-architect for architectural reviews
-
Entity Framework Performance
- Check query analysis in validation reports
- Review data access patterns
- Consider using spec-validator for performance assessment
-
Azure Deployment Issues
- Validate deployment configuration
- Check Application Insights setup
- Review security configurations
# Enable comprehensive debugging /agent-workflow "Debug request classification and agent selection" --debug=true --verbose=true
If you're migrating from the original workflow system:
-
Backup Current Work
cp -r docs/ docs-backup/
-
Initialize New Structure
/agent-workflow "Migrate existing project to context-aware structure" --migration-mode=true
-
Verify Migration
# Check that all existing docs are properly organized ls -la docs/
We welcome contributions to improve the context-aware workflow system! See our Contributing Guide for details.
- Follow .NET coding standards and Clean Architecture principles
- Add comprehensive documentation with examples
- Include context-aware behavior in new agents
- Test with the enhanced orchestrator
- Submit PR with detailed description of improvements
- π Bug Reports: Help us identify and fix issues
- β¨ Feature Requests: Suggest new capabilities
- π€ New Agents: Create specialized agents for specific domains
- π Manufacturing Use Cases: Share industry-specific scenarios
- π Documentation: Improve guides and examples
- π§ͺ Testing: Add test coverage and validation scenarios
MIT License - see LICENSE file for details
- Built on Claude Code's Sub-Agents feature
- Optimized for .NET 9 and Clean Architecture patterns
- Inspired by enterprise software development best practices
- Community contributions from manufacturing industry specialists
π Documentation & Learning
- π Examples Directory - Practical workflow examples
- π€ Contributing Guide - How to contribute
- π Changelog - Version history and updates
- β FAQ & Discussions
π§ Development Resources
- Claude Code Documentation - Official Claude Code docs
- Sub-Agents Guide - Sub-agents feature guide
- .NET 9 Documentation - Microsoft .NET documentation
- Clean Architecture Guide - Architecture principles
π Support & Issues
- π Report Issues - Bug reports and feature requests
- π¬ GitHub Discussions - Community discussions
- π§ Contact - Direct contact with maintainer
Manufacturing Compliance Standards:
- FDA 21 CFR Part 11 - Electronic Records and Electronic Signatures
- HACCP Guidelines - Hazard Analysis Critical Control Points
- ISO 22000:2018 - Food Safety Management Systems
- SOX Compliance - Sarbanes-Oxley Act Requirements
- GMP Guidelines - Current Good Manufacturing Practice
System Integration Resources:
- MES Integration Patterns - Manufacturing Execution Systems
- SCADA System Architecture - Supervisory Control and Data Acquisition
- Azure Industrial IoT - Cloud Manufacturing Solutions