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": [ "modules": [
"orchestration" "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"
]
} }
] ]
} }

View File

@@ -103,18 +103,36 @@
"kind": "skills", "kind": "skills",
"description": "Core framework, language, and application-engineering skills.", "description": "Core framework, language, and application-engineering skills.",
"paths": [ "paths": [
"skills/android-clean-architecture",
"skills/api-design",
"skills/backend-patterns", "skills/backend-patterns",
"skills/coding-standards", "skills/coding-standards",
"skills/compose-multiplatform-patterns",
"skills/cpp-coding-standards",
"skills/cpp-testing",
"skills/django-patterns",
"skills/django-tdd",
"skills/django-verification",
"skills/frontend-patterns", "skills/frontend-patterns",
"skills/frontend-slides", "skills/frontend-slides",
"skills/golang-patterns", "skills/golang-patterns",
"skills/golang-testing", "skills/golang-testing",
"skills/java-coding-standards",
"skills/kotlin-coroutines-flows",
"skills/kotlin-exposed-patterns",
"skills/kotlin-ktor-patterns",
"skills/kotlin-patterns",
"skills/kotlin-testing",
"skills/laravel-patterns",
"skills/laravel-tdd",
"skills/laravel-verification",
"skills/mcp-server-patterns",
"skills/perl-patterns",
"skills/perl-testing",
"skills/python-patterns", "skills/python-patterns",
"skills/python-testing", "skills/python-testing",
"skills/django-patterns", "skills/rust-patterns",
"skills/django-tdd", "skills/rust-testing",
"skills/django-verification",
"skills/java-coding-standards",
"skills/springboot-patterns", "skills/springboot-patterns",
"skills/springboot-tdd", "skills/springboot-tdd",
"skills/springboot-verification" "skills/springboot-verification"
@@ -142,6 +160,7 @@
"description": "Database and persistence-focused skills.", "description": "Database and persistence-focused skills.",
"paths": [ "paths": [
"skills/clickhouse-io", "skills/clickhouse-io",
"skills/database-migrations",
"skills/jpa-patterns", "skills/jpa-patterns",
"skills/postgres-patterns" "skills/postgres-patterns"
], ],
@@ -164,10 +183,16 @@
"kind": "skills", "kind": "skills",
"description": "Evaluation, TDD, verification, learning, and compaction skills.", "description": "Evaluation, TDD, verification, learning, and compaction skills.",
"paths": [ "paths": [
"skills/ai-regression-testing",
"skills/configure-ecc",
"skills/continuous-learning", "skills/continuous-learning",
"skills/continuous-learning-v2", "skills/continuous-learning-v2",
"skills/e2e-testing",
"skills/eval-harness", "skills/eval-harness",
"skills/iterative-retrieval", "skills/iterative-retrieval",
"skills/plankton-code-quality",
"skills/project-guidelines-example",
"skills/skill-stocktake",
"skills/strategic-compact", "skills/strategic-compact",
"skills/tdd-workflow", "skills/tdd-workflow",
"skills/verification-loop" "skills/verification-loop"
@@ -191,9 +216,11 @@
"kind": "skills", "kind": "skills",
"description": "Security review and security-focused framework guidance.", "description": "Security review and security-focused framework guidance.",
"paths": [ "paths": [
"skills/django-security",
"skills/laravel-security",
"skills/perl-security",
"skills/security-review", "skills/security-review",
"skills/security-scan", "skills/security-scan",
"skills/django-security",
"skills/springboot-security", "skills/springboot-security",
"the-security-guide.md" "the-security-guide.md"
], ],
@@ -330,6 +357,141 @@
"defaultInstall": false, "defaultInstall": false,
"cost": "medium", "cost": "medium",
"stability": "beta" "stability": "beta"
},
{
"id": "swift-apple",
"kind": "skills",
"description": "Swift, SwiftUI, and Apple platform skills including concurrency, persistence, and design patterns.",
"paths": [
"skills/foundation-models-on-device",
"skills/liquid-glass-design",
"skills/swift-actor-persistence",
"skills/swift-concurrency-6-2",
"skills/swift-protocol-di-testing",
"skills/swiftui-patterns"
],
"targets": [
"claude",
"cursor",
"antigravity",
"codex",
"opencode"
],
"dependencies": [
"platform-configs"
],
"defaultInstall": false,
"cost": "medium",
"stability": "stable"
},
{
"id": "agentic-patterns",
"kind": "skills",
"description": "Agentic engineering, autonomous loops, agent harness construction, and LLM pipeline optimization skills.",
"paths": [
"skills/agent-harness-construction",
"skills/agentic-engineering",
"skills/ai-first-engineering",
"skills/autonomous-loops",
"skills/blueprint",
"skills/claude-devfleet",
"skills/content-hash-cache-pattern",
"skills/continuous-agent-loop",
"skills/cost-aware-llm-pipeline",
"skills/data-scraper-agent",
"skills/enterprise-agent-ops",
"skills/nanoclaw-repl",
"skills/prompt-optimizer",
"skills/ralphinho-rfc-pipeline",
"skills/regex-vs-llm-structured-text",
"skills/search-first",
"skills/team-builder"
],
"targets": [
"claude",
"cursor",
"antigravity",
"codex",
"opencode"
],
"dependencies": [
"platform-configs"
],
"defaultInstall": false,
"cost": "medium",
"stability": "stable"
},
{
"id": "devops-infra",
"kind": "skills",
"description": "Deployment workflows, Docker patterns, and infrastructure skills.",
"paths": [
"skills/deployment-patterns",
"skills/docker-patterns"
],
"targets": [
"claude",
"cursor",
"antigravity",
"codex",
"opencode"
],
"dependencies": [
"platform-configs"
],
"defaultInstall": false,
"cost": "medium",
"stability": "stable"
},
{
"id": "supply-chain-domain",
"kind": "skills",
"description": "Supply chain, logistics, procurement, and manufacturing domain skills.",
"paths": [
"skills/carrier-relationship-management",
"skills/customs-trade-compliance",
"skills/energy-procurement",
"skills/inventory-demand-planning",
"skills/logistics-exception-management",
"skills/production-scheduling",
"skills/quality-nonconformance",
"skills/returns-reverse-logistics"
],
"targets": [
"claude",
"cursor",
"antigravity",
"codex",
"opencode"
],
"dependencies": [
"platform-configs"
],
"defaultInstall": false,
"cost": "heavy",
"stability": "stable"
},
{
"id": "document-processing",
"kind": "skills",
"description": "Document processing, conversion, and translation skills.",
"paths": [
"skills/nutrient-document-processing",
"skills/visa-doc-translate"
],
"targets": [
"claude",
"cursor",
"antigravity",
"codex",
"opencode"
],
"dependencies": [
"platform-configs"
],
"defaultInstall": false,
"cost": "medium",
"stability": "stable"
} }
] ]
} }

View File

@@ -68,7 +68,12 @@
"business-content", "business-content",
"social-distribution", "social-distribution",
"media-generation", "media-generation",
"orchestration" "orchestration",
"swift-apple",
"agentic-patterns",
"devops-infra",
"supply-chain-domain",
"document-processing"
] ]
} }
} }