Files
everything-claude-code/manifests/install-profiles.json
Affaan Mustafa 609a0f4fd1 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.
2026-03-16 13:50:08 -07:00

81 lines
2.0 KiB
JSON

{
"version": 1,
"profiles": {
"core": {
"description": "Minimal harness baseline with commands, hooks, platform configs, and quality workflow support.",
"modules": [
"rules-core",
"agents-core",
"commands-core",
"hooks-runtime",
"platform-configs",
"workflow-quality"
]
},
"developer": {
"description": "Default engineering profile for most ECC users working across app codebases.",
"modules": [
"rules-core",
"agents-core",
"commands-core",
"hooks-runtime",
"platform-configs",
"workflow-quality",
"framework-language",
"database",
"orchestration"
]
},
"security": {
"description": "Security-heavy setup with baseline runtime support and security-specific guidance.",
"modules": [
"rules-core",
"agents-core",
"commands-core",
"hooks-runtime",
"platform-configs",
"workflow-quality",
"security"
]
},
"research": {
"description": "Research and content-oriented setup for investigation, synthesis, and publishing workflows.",
"modules": [
"rules-core",
"agents-core",
"commands-core",
"hooks-runtime",
"platform-configs",
"workflow-quality",
"research-apis",
"business-content",
"social-distribution"
]
},
"full": {
"description": "Complete ECC install with all currently classified modules.",
"modules": [
"rules-core",
"agents-core",
"commands-core",
"hooks-runtime",
"platform-configs",
"framework-language",
"database",
"workflow-quality",
"security",
"research-apis",
"business-content",
"social-distribution",
"media-generation",
"orchestration",
"swift-apple",
"agentic-patterns",
"devops-infra",
"supply-chain-domain",
"document-processing"
]
}
}
}