diff --git a/plugins/compound-engineering/commands/workflows/compound.md b/plugins/compound-engineering/commands/workflows/compound.md index 4042685..e9e7163 100644 --- a/plugins/compound-engineering/commands/workflows/compound.md +++ b/plugins/compound-engineering/commands/workflows/compound.md @@ -66,7 +66,7 @@ This command launches multiple specialized subagents IN PARALLEL to maximize eff - **performance_issue** → `performance-oracle` - **security_issue** → `security-sentinel` - **database_issue** → `data-integrity-guardian` - - **test_failure** → `cora-test-reviewer` + - **test_failure** → `test-quality-reviewer` - Any code-heavy issue → `kieran-rails-reviewer` + `code-simplicity-reviewer` ## What It Captures @@ -184,7 +184,7 @@ Based on problem type, these agents can enhance documentation: ### Specific Domain Experts - **performance-oracle**: Analyzes performance_issue category solutions - **security-sentinel**: Reviews security_issue solutions for vulnerabilities -- **cora-test-reviewer**: Creates test cases for prevention strategies +- **test-quality-reviewer**: Creates test cases for prevention strategies - **data-integrity-guardian**: Reviews database_issue migrations and queries ### Enhancement & Documentation diff --git a/plugins/compound-engineering/commands/workflows/work.md b/plugins/compound-engineering/commands/workflows/work.md index 36f95ae..7b2e3a5 100644 --- a/plugins/compound-engineering/commands/workflows/work.md +++ b/plugins/compound-engineering/commands/workflows/work.md @@ -181,7 +181,7 @@ This command takes a work document (plan, specification, or todo file) and execu - **kieran-rails-reviewer**: Verify Rails conventions (Rails projects) - **performance-oracle**: Check for performance issues - **security-sentinel**: Scan for security vulnerabilities - - **cora-test-reviewer**: Review test quality (Rails projects with comprehensive test coverage) + - **test-quality-reviewer**: Review test quality (Rails projects with comprehensive test coverage) Run reviewers in parallel with Task tool: diff --git a/plugins/compound-engineering/skills/compound-docs/schema.yaml b/plugins/compound-engineering/skills/compound-docs/schema.yaml index 0396b14..c69a5b3 100644 --- a/plugins/compound-engineering/skills/compound-docs/schema.yaml +++ b/plugins/compound-engineering/skills/compound-docs/schema.yaml @@ -1,10 +1,10 @@ -# CORA Documentation Schema +# Documentation Schema # This schema MUST be validated before writing any documentation file required_fields: module: type: string - description: "Module/area of CORA (e.g., 'Email Processing', 'Brief System', 'Authentication')" + description: "Module/area (e.g., 'Email Processing', 'Brief System', 'Authentication')" examples: - "Email Processing" - "Brief System" @@ -54,7 +54,7 @@ required_fields: - testing_framework # Test setup, fixtures, VCR - documentation # README, guides, inline docs - tooling # Scripts, generators, CLI tools - description: "CORA component involved" + description: "Component involved" symptoms: type: array[string] @@ -133,7 +133,7 @@ optional_fields: - "turbo-stream" validation_rules: - - "module must be a valid CORA module name" + - "module must be a valid module name" - "date must be in YYYY-MM-DD format" - "problem_type must match one of the enum values" - "component must match one of the enum values"