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.
This commit is contained in:
Affaan Mustafa
2026-03-16 13:50:08 -07:00
committed by GitHub
parent f9e8287346
commit 609a0f4fd1
3 changed files with 255 additions and 6 deletions

View File

@@ -168,6 +168,88 @@
"modules": [
"orchestration"
]
},
{
"id": "lang:swift",
"family": "language",
"description": "Swift, SwiftUI, and Apple platform engineering guidance.",
"modules": [
"swift-apple"
]
},
{
"id": "lang:cpp",
"family": "language",
"description": "C++ coding standards and testing guidance. Currently resolves through the shared framework-language module.",
"modules": [
"framework-language"
]
},
{
"id": "lang:kotlin",
"family": "language",
"description": "Kotlin, Ktor, Exposed, Coroutines, and Compose Multiplatform guidance. Currently resolves through the shared framework-language module.",
"modules": [
"framework-language"
]
},
{
"id": "lang:perl",
"family": "language",
"description": "Modern Perl patterns, testing, and security guidance. Currently resolves through framework-language and security modules.",
"modules": [
"framework-language",
"security"
]
},
{
"id": "lang:rust",
"family": "language",
"description": "Rust patterns and testing guidance. Currently resolves through the shared framework-language module.",
"modules": [
"framework-language"
]
},
{
"id": "framework:laravel",
"family": "framework",
"description": "Laravel patterns, TDD, verification, and security guidance. Resolves through framework-language and security modules.",
"modules": [
"framework-language",
"security"
]
},
{
"id": "capability:agentic",
"family": "capability",
"description": "Agentic engineering, autonomous loops, and LLM pipeline optimization.",
"modules": [
"agentic-patterns"
]
},
{
"id": "capability:devops",
"family": "capability",
"description": "Deployment, Docker, and infrastructure patterns.",
"modules": [
"devops-infra"
]
},
{
"id": "capability:supply-chain",
"family": "capability",
"description": "Supply chain, logistics, procurement, and manufacturing domain skills.",
"modules": [
"supply-chain-domain"
]
},
{
"id": "capability:documents",
"family": "capability",
"description": "Document processing, conversion, and translation skills.",
"modules": [
"document-processing"
]
}
]
}