Commit Graph

6 Commits

  • fix(install): add rust, cpp, csharp to legacy language alias map (#747)
    * fix(install): add rust, cpp, csharp to legacy language alias map
    
    The legacy installer compatibility layer in install-manifests.js was
    missing entries for rust, cpp, and csharp — languages that have
    rules/ directories and (for rust/cpp) install-components.json entries.
    
    Running `./install.sh rust` fails with "Unknown legacy language: rust"
    because LEGACY_LANGUAGE_ALIAS_TO_CANONICAL and
    LEGACY_LANGUAGE_EXTRA_MODULE_IDS didn't include these languages.
    
    Fixes the issue reported in #694 by @mpiton.
    
    Generated with [Claude Code](https://claude.ai/code)
    via [Happy](https://happy.engineering)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    Co-Authored-By: Happy <yesreply@happy.engineering>
    
    * fix(install): complete csharp legacy support and add resolution tests
    
    - Add lang:csharp component to install-components.json with
      framework-language module (matching cpp/rust pattern)
    - Update csharp mapping in LEGACY_LANGUAGE_EXTRA_MODULE_IDS from
      empty array to ['framework-language']
    - Add end-to-end resolution tests for rust, cpp, and csharp verifying
      framework-language module is included in resolved moduleIds
    
    Addresses review feedback from Copilot, Greptile, CodeRabbit, and Cubic.
    
    Generated with [Claude Code](https://claude.ai/code)
    via [Happy](https://happy.engineering)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    Co-Authored-By: Happy <yesreply@happy.engineering>
    
    ---------
    
    Co-authored-by: Claude <noreply@anthropic.com>
    Co-authored-by: Happy <yesreply@happy.engineering>
  • feat: implement --with/--without selective install flags (#679)
    Add agent: and skill: component families to the install component
    catalog, enabling fine-grained selective install via CLI flags:
    
      ecc install --profile developer --with lang:typescript --without capability:orchestration
      ecc install --with lang:python --with agent:security-reviewer
    
    Changes:
    - Add agent: family (9 entries) and skill: family (10 entries) to
      manifests/install-components.json for granular component addressing
    - Update install-components.schema.json to accept agent: and skill:
      family prefixes
    - Register agent and skill family prefixes in COMPONENT_FAMILY_PREFIXES
      (scripts/lib/install-manifests.js)
    - Add 41 comprehensive tests covering CLI parsing, request normalization,
      component catalog validation, plan resolution, target filtering,
      error handling, and end-to-end install with --with/--without flags
    
    Closes #470
  • fix: add 62 missing skills to install manifests — full profile now covers all 105 skills (#537)
    The "full" install profile only referenced 43 of 105 skills. Added the
    remaining 62 to existing modules or new purpose-built modules:
    
    Existing modules extended:
    - framework-language: +18 (C++, Kotlin, Perl, Rust, Laravel, MCP, Android)
    - database: +1 (database-migrations)
    - workflow-quality: +6 (ai-regression-testing, configure-ecc, e2e-testing,
      plankton-code-quality, project-guidelines-example, skill-stocktake)
    - security: +2 (laravel-security, perl-security)
    
    New modules (5):
    - swift-apple: 6 skills (SwiftUI, concurrency, persistence, Liquid Glass)
    - agentic-patterns: 17 skills (agent harness, autonomous loops, LLM pipelines)
    - devops-infra: 2 skills (deployment-patterns, docker-patterns)
    - supply-chain-domain: 8 skills (logistics, procurement, manufacturing)
    - document-processing: 2 skills (nutrient, visa-doc-translate)
    
    Also added matching install-components entries and updated the "full"
    profile to include all 19 modules. Passes validate-install-manifests.