@geraldmaron/construct 1.0.14 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (275) hide show
  1. package/README.md +21 -2
  2. package/bin/construct +146 -83
  3. package/commands/build/feature.md +0 -6
  4. package/commands/build/fix.md +0 -6
  5. package/commands/design/access.md +0 -6
  6. package/commands/design/flow.md +0 -6
  7. package/commands/design/ui.md +0 -6
  8. package/commands/measure/experiment.md +0 -6
  9. package/commands/measure/metrics.md +0 -6
  10. package/commands/measure/results.md +0 -6
  11. package/commands/plan/api.md +0 -6
  12. package/commands/plan/challenge.md +0 -6
  13. package/commands/plan/decide.md +0 -6
  14. package/commands/plan/feature.md +0 -7
  15. package/commands/plan/requirements.md +0 -6
  16. package/commands/remember/context.md +0 -6
  17. package/commands/remember/handoff.md +0 -6
  18. package/commands/remember/runbook.md +0 -6
  19. package/commands/review/code.md +0 -6
  20. package/commands/review/quality.md +0 -6
  21. package/commands/review/security.md +0 -6
  22. package/commands/ship/ready.md +0 -6
  23. package/commands/ship/release.md +0 -6
  24. package/commands/ship/status.md +0 -6
  25. package/commands/understand/docs.md +0 -6
  26. package/commands/understand/research.md +0 -6
  27. package/commands/understand/this.md +0 -6
  28. package/commands/understand/why.md +0 -6
  29. package/commands/work/clean.md +0 -6
  30. package/commands/work/drive.md +0 -6
  31. package/commands/work/optimize-prompts.md +0 -6
  32. package/commands/work/parallel-review.md +0 -6
  33. package/db/schema/010_cx_scores.sql +51 -0
  34. package/lib/beads-client.mjs +19 -1
  35. package/lib/cli-commands.mjs +280 -146
  36. package/lib/comment-lint.mjs +5 -1
  37. package/lib/context-state.mjs +15 -3
  38. package/lib/contracts/validate.mjs +72 -18
  39. package/lib/contracts/violation-log.mjs +169 -0
  40. package/lib/document-extract/docling-client.mjs +114 -0
  41. package/lib/document-extract/docling-sidecar.py +122 -0
  42. package/lib/document-extract/whisper-client.mjs +79 -0
  43. package/lib/document-extract.mjs +73 -8
  44. package/lib/document-ingest.mjs +26 -4
  45. package/lib/embed/daemon.mjs +6 -1
  46. package/lib/flavors/loader.mjs +1 -1
  47. package/lib/handoffs/contract.mjs +2 -2
  48. package/lib/hooks/session-start.mjs +1 -1
  49. package/lib/hooks/stop-notify.mjs +7 -0
  50. package/lib/ingest/chunker.mjs +94 -0
  51. package/lib/ingest/pipeline.mjs +53 -0
  52. package/lib/ingest/store.mjs +82 -0
  53. package/lib/install/first-invocation.mjs +5 -1
  54. package/lib/intake/prepare.mjs +22 -4
  55. package/lib/integrations/intake-integrations.mjs +28 -2
  56. package/lib/knowledge/search.mjs +12 -0
  57. package/lib/mcp/server.mjs +142 -1
  58. package/lib/mcp/tools/skills.mjs +6 -3
  59. package/lib/mcp/tools/telemetry.mjs +30 -0
  60. package/lib/mcp/tools/workflow.mjs +6 -2
  61. package/lib/observation-store.mjs +14 -5
  62. package/lib/ollama-manager.mjs +32 -28
  63. package/lib/orchestration-policy.mjs +15 -0
  64. package/lib/prompt-composer.js +11 -1
  65. package/lib/roles/gateway.mjs +30 -1
  66. package/lib/runtime/uv-bootstrap.mjs +129 -0
  67. package/lib/runtime/whisper-bootstrap.mjs +102 -0
  68. package/lib/scheduler/index.mjs +24 -4
  69. package/lib/server/index.mjs +22 -1
  70. package/lib/server/insights.mjs +12 -0
  71. package/lib/server/static/index.html +1 -1
  72. package/lib/setup.mjs +54 -9
  73. package/lib/specialists/postconditions.mjs +1 -1
  74. package/lib/sync/skill-frontmatter.mjs +113 -21
  75. package/lib/tracking-surfaces.mjs +2 -0
  76. package/lib/update.mjs +31 -3
  77. package/lib/upgrade.mjs +31 -4
  78. package/lib/validators/skills.mjs +86 -54
  79. package/package.json +5 -5
  80. package/personas/construct.md +6 -7
  81. package/platforms/claude/CLAUDE.md +43 -15
  82. package/platforms/claude/settings.template.json +1 -1
  83. package/rules/common/beads-hygiene.md +3 -9
  84. package/rules/common/code-review.md +3 -6
  85. package/rules/common/coding-style.md +3 -6
  86. package/rules/common/comments.md +3 -7
  87. package/rules/common/commit-approval.md +3 -6
  88. package/rules/common/cx-agent-routing.md +3 -7
  89. package/rules/common/cx-skill-routing.md +3 -3
  90. package/rules/common/doc-ownership.md +3 -8
  91. package/rules/common/efficiency.md +3 -8
  92. package/rules/common/framing.md +3 -8
  93. package/rules/common/git-workflow.md +3 -5
  94. package/rules/common/no-fabrication.md +4 -12
  95. package/rules/common/patterns.md +3 -5
  96. package/rules/common/release-gates.md +3 -8
  97. package/rules/common/research.md +3 -8
  98. package/rules/common/review-before-change.md +3 -9
  99. package/rules/common/security.md +3 -6
  100. package/rules/common/skill-composition.md +3 -7
  101. package/rules/common/testing.md +3 -6
  102. package/rules/golang/coding-style.md +1 -5
  103. package/rules/golang/hooks.md +1 -5
  104. package/rules/golang/patterns.md +1 -5
  105. package/rules/golang/security.md +1 -5
  106. package/rules/golang/testing.md +1 -5
  107. package/rules/python/coding-style.md +1 -5
  108. package/rules/python/hooks.md +1 -5
  109. package/rules/python/patterns.md +1 -5
  110. package/rules/python/security.md +1 -5
  111. package/rules/python/testing.md +1 -5
  112. package/rules/swift/coding-style.md +1 -5
  113. package/rules/swift/hooks.md +1 -5
  114. package/rules/swift/patterns.md +1 -5
  115. package/rules/swift/security.md +1 -5
  116. package/rules/swift/testing.md +1 -5
  117. package/rules/typescript/coding-style.md +1 -5
  118. package/rules/typescript/hooks.md +1 -5
  119. package/rules/typescript/patterns.md +1 -5
  120. package/rules/typescript/security.md +1 -5
  121. package/rules/typescript/testing.md +1 -5
  122. package/rules/web/coding-style.md +3 -5
  123. package/rules/web/design-quality.md +3 -5
  124. package/rules/web/hooks.md +3 -5
  125. package/rules/web/patterns.md +3 -5
  126. package/rules/web/performance.md +3 -5
  127. package/rules/web/security.md +3 -5
  128. package/rules/web/testing.md +3 -5
  129. package/scripts/sync-specialists.mjs +20 -2
  130. package/skills/ai/agent-dev.md +4 -5
  131. package/skills/ai/llm-security.md +4 -5
  132. package/skills/ai/ml-ops.md +4 -5
  133. package/skills/ai/orchestration-workflow.md +4 -5
  134. package/skills/ai/prompt-and-eval.md +4 -5
  135. package/skills/ai/prompt-optimizer.md +4 -6
  136. package/skills/ai/rag-system.md +4 -5
  137. package/skills/architecture/api-design.md +4 -5
  138. package/skills/architecture/caching.md +4 -5
  139. package/skills/architecture/cloud-native.md +4 -5
  140. package/skills/architecture/message-queue.md +4 -5
  141. package/skills/architecture/security-arch.md +4 -5
  142. package/skills/compliance/ai-disclosure.md +4 -5
  143. package/skills/compliance/data-privacy.md +4 -5
  144. package/skills/compliance/license-audit.md +4 -5
  145. package/skills/compliance/regulatory-review.md +4 -5
  146. package/skills/development/cpp.md +4 -5
  147. package/skills/development/go.md +4 -5
  148. package/skills/development/java.md +4 -5
  149. package/skills/development/kotlin.md +4 -5
  150. package/skills/development/mobile-crossplatform.md +4 -5
  151. package/skills/development/python.md +4 -5
  152. package/skills/development/rust.md +4 -5
  153. package/skills/development/shell.md +4 -5
  154. package/skills/development/swift.md +4 -5
  155. package/skills/development/typescript.md +4 -5
  156. package/skills/devops/ci-cd.md +4 -5
  157. package/skills/devops/containerization.md +4 -5
  158. package/skills/devops/cost-optimization.md +4 -5
  159. package/skills/devops/data-engineering.md +4 -5
  160. package/skills/devops/database.md +4 -5
  161. package/skills/devops/dependency-management.md +4 -5
  162. package/skills/devops/devsecops.md +4 -5
  163. package/skills/devops/git-workflow.md +4 -5
  164. package/skills/devops/incident-response.md +4 -5
  165. package/skills/devops/monorepo.md +4 -5
  166. package/skills/devops/observability.md +4 -5
  167. package/skills/devops/performance.md +4 -5
  168. package/skills/devops/testing.md +4 -5
  169. package/skills/docs/adr-workflow.md +4 -7
  170. package/skills/docs/backlog-proposal-workflow.md +4 -3
  171. package/skills/docs/customer-profile-workflow.md +4 -3
  172. package/skills/docs/document-ingest-workflow.md +4 -3
  173. package/skills/docs/evidence-ingest-workflow.md +4 -3
  174. package/skills/docs/init-docs.md +4 -5
  175. package/skills/docs/init-project.md +4 -5
  176. package/skills/docs/prd-workflow.md +4 -7
  177. package/skills/docs/prfaq-workflow.md +4 -3
  178. package/skills/docs/product-intelligence-review.md +4 -3
  179. package/skills/docs/product-intelligence-workflow.md +4 -6
  180. package/skills/docs/product-signal-workflow.md +4 -5
  181. package/skills/docs/research-workflow.md +4 -5
  182. package/skills/docs/runbook-workflow.md +4 -5
  183. package/skills/docs/strategy-workflow.md +4 -5
  184. package/skills/exploration/dependency-graph-reading.md +4 -7
  185. package/skills/exploration/repo-map.md +4 -5
  186. package/skills/exploration/tracer-bullet-method.md +4 -7
  187. package/skills/exploration/unknown-codebase-onboarding.md +4 -7
  188. package/skills/frameworks/django.md +4 -5
  189. package/skills/frameworks/nextjs.md +4 -5
  190. package/skills/frameworks/react.md +4 -5
  191. package/skills/frameworks/spring-boot.md +4 -5
  192. package/skills/frontend-design/accessibility.md +4 -5
  193. package/skills/frontend-design/component-patterns.md +4 -5
  194. package/skills/frontend-design/engineering.md +4 -5
  195. package/skills/frontend-design/state-management.md +4 -5
  196. package/skills/frontend-design/ui-aesthetics.md +4 -5
  197. package/skills/frontend-design/ux-principles.md +4 -5
  198. package/skills/operating/change-management.md +4 -8
  199. package/skills/operating/incident-response.md +4 -8
  200. package/skills/operating/oncall-rotation.md +4 -7
  201. package/skills/operating/orchestration-reference.md +4 -10
  202. package/skills/quality-gates/review-work.md +4 -5
  203. package/skills/quality-gates/verify-change.md +4 -5
  204. package/skills/quality-gates/verify-module.md +4 -5
  205. package/skills/quality-gates/verify-quality.md +4 -5
  206. package/skills/quality-gates/verify-security.md +4 -5
  207. package/skills/roles/architect.ai-systems.md +6 -9
  208. package/skills/roles/architect.data.md +6 -9
  209. package/skills/roles/architect.enterprise.md +6 -9
  210. package/skills/roles/architect.integration.md +6 -9
  211. package/skills/roles/architect.md +7 -14
  212. package/skills/roles/architect.platform.md +6 -9
  213. package/skills/roles/data-analyst.experiment.md +6 -9
  214. package/skills/roles/data-analyst.md +6 -9
  215. package/skills/roles/data-analyst.product-intelligence.md +7 -9
  216. package/skills/roles/data-analyst.product.md +6 -9
  217. package/skills/roles/data-analyst.telemetry.md +7 -9
  218. package/skills/roles/data-engineer.pipeline.md +6 -9
  219. package/skills/roles/data-engineer.vector-retrieval.md +7 -9
  220. package/skills/roles/data-engineer.warehouse.md +6 -9
  221. package/skills/roles/debugger.md +6 -9
  222. package/skills/roles/designer.accessibility.md +6 -9
  223. package/skills/roles/designer.md +7 -9
  224. package/skills/roles/engineer.ai.md +6 -9
  225. package/skills/roles/engineer.data.md +6 -9
  226. package/skills/roles/engineer.md +9 -9
  227. package/skills/roles/engineer.platform.md +6 -9
  228. package/skills/roles/operator.docs.md +6 -9
  229. package/skills/roles/operator.md +9 -9
  230. package/skills/roles/operator.release.md +6 -9
  231. package/skills/roles/operator.sre.md +6 -9
  232. package/skills/roles/orchestrator.md +6 -9
  233. package/skills/roles/product-manager.ai-product.md +6 -9
  234. package/skills/roles/product-manager.business-strategy.md +6 -9
  235. package/skills/roles/product-manager.enterprise.md +6 -9
  236. package/skills/roles/product-manager.growth.md +7 -9
  237. package/skills/roles/product-manager.md +7 -9
  238. package/skills/roles/product-manager.platform.md +6 -9
  239. package/skills/roles/product-manager.product.md +6 -9
  240. package/skills/roles/qa.ai-eval.md +8 -9
  241. package/skills/roles/qa.api-contract.md +7 -9
  242. package/skills/roles/qa.data-pipeline.md +7 -9
  243. package/skills/roles/qa.md +7 -9
  244. package/skills/roles/qa.test-automation.md +6 -9
  245. package/skills/roles/qa.web-ui.md +7 -9
  246. package/skills/roles/researcher.explorer.md +6 -9
  247. package/skills/roles/researcher.md +8 -9
  248. package/skills/roles/researcher.ux.md +6 -9
  249. package/skills/roles/reviewer.devil-advocate.md +6 -9
  250. package/skills/roles/reviewer.evaluator.md +6 -9
  251. package/skills/roles/reviewer.md +9 -9
  252. package/skills/roles/reviewer.trace.md +6 -9
  253. package/skills/roles/security.ai.md +7 -9
  254. package/skills/roles/security.appsec.md +6 -9
  255. package/skills/roles/security.cloud.md +6 -9
  256. package/skills/roles/security.legal-compliance.md +6 -9
  257. package/skills/roles/security.md +7 -9
  258. package/skills/roles/security.privacy.md +7 -9
  259. package/skills/roles/security.supply-chain.md +7 -9
  260. package/skills/security/blue-team.md +4 -5
  261. package/skills/security/code-audit.md +4 -5
  262. package/skills/security/pentest.md +4 -5
  263. package/skills/security/red-team.md +4 -5
  264. package/skills/security/threat-intel.md +4 -5
  265. package/skills/security/vuln-research.md +4 -5
  266. package/skills/strategy/competitive-landscape.md +4 -8
  267. package/skills/strategy/market-research-methods.md +4 -8
  268. package/skills/strategy/narrative-arc.md +4 -8
  269. package/skills/strategy/pricing-positioning.md +4 -8
  270. package/skills/utility/clean-code.md +4 -5
  271. package/specialists/policy-inventory.json +14 -0
  272. package/lib/specialist-contracts-enforce.mjs +0 -172
  273. package/rules/common/agents.md +0 -28
  274. package/rules/common/development-workflow.md +0 -32
  275. package/rules/common/performance.md +0 -55
@@ -1,8 +1,6 @@
1
- <!--
2
- rules/web/design-quality.md: <one-line purpose>
3
-
4
- <2–6 line summary.>
5
- -->
1
+ ---
2
+ description: Construct web design quality rule. Use when writing or reviewing web code that involves design quality.
3
+ ---
6
4
  > This file extends [common/patterns.md](../common/patterns.md) with web-specific design-quality guidance.
7
5
 
8
6
  # Web Design Quality Standards
@@ -1,8 +1,6 @@
1
- <!--
2
- rules/web/hooks.md: <one-line purpose>
3
-
4
- <2–6 line summary.>
5
- -->
1
+ ---
2
+ description: Prefer project-local tooling.
3
+ ---
6
4
  # Web Hooks
7
5
 
8
6
  ## Recommended PostToolUse Hooks
@@ -1,8 +1,6 @@
1
- <!--
2
- rules/web/patterns.md: <one-line purpose>
3
-
4
- <2–6 line summary.>
5
- -->
1
+ ---
2
+ description: Construct web patterns rule. Use when writing or reviewing web code that involves patterns.
3
+ ---
6
4
  > This file extends [common/patterns.md](../common/patterns.md) with web-specific patterns.
7
5
 
8
6
  # Web Patterns
@@ -1,8 +1,6 @@
1
- <!--
2
- rules/web/performance.md: <one-line purpose>
3
-
4
- <2–6 line summary.>
5
- -->
1
+ ---
2
+ description: Construct web performance rule. Use when writing or reviewing web code that involves performance.
3
+ ---
6
4
  > This file extends [common/performance.md](../common/performance.md) with web-specific performance content.
7
5
 
8
6
  # Web Performance Rules
@@ -1,8 +1,6 @@
1
- <!--
2
- rules/web/security.md: <one-line purpose>
3
-
4
- <2–6 line summary.>
5
- -->
1
+ ---
2
+ description: Construct web security rule. Use when writing or reviewing web code that involves security.
3
+ ---
6
4
  > This file extends [common/security.md](../common/security.md) with web-specific security content.
7
5
 
8
6
  # Web Security Rules
@@ -1,8 +1,6 @@
1
- <!--
2
- rules/web/testing.md: <one-line purpose>
3
-
4
- <2–6 line summary.>
5
- -->
1
+ ---
2
+ description: Construct web testing rule. Use when writing or reviewing web code that involves testing.
3
+ ---
6
4
  > This file extends [common/testing.md](../common/testing.md) with web-specific testing content.
7
5
 
8
6
  # Web Testing Rules
@@ -950,7 +950,16 @@ function getVSCodeSettingsPaths() {
950
950
  path.join(appData, "Code - Insiders", "User", "settings.json"),
951
951
  );
952
952
  }
953
- return candidates.filter(fs.existsSync);
953
+ // settings.json present → ready to merge. settings.json absent but the
954
+ // VS Code User dir exists → installed without ever opening Preferences,
955
+ // and global sync still needs to write the MCP block. The User dir is
956
+ // the installation signal; bootstrap a minimal settings.json there.
957
+
958
+ return candidates.filter((candidate) => {
959
+ if (fs.existsSync(candidate)) return true;
960
+ const userDir = path.dirname(candidate);
961
+ return fs.existsSync(userDir);
962
+ });
954
963
  }
955
964
 
956
965
  function syncVSCode(targetDir = null) {
@@ -991,7 +1000,16 @@ function syncVSCode(targetDir = null) {
991
1000
  let synced = false;
992
1001
  for (const settingsPath of settingsPaths) {
993
1002
  try {
994
- const settings = JSON.parse(fs.readFileSync(settingsPath, "utf8"));
1003
+ let settings;
1004
+ if (fs.existsSync(settingsPath)) {
1005
+ settings = JSON.parse(fs.readFileSync(settingsPath, "utf8"));
1006
+ } else {
1007
+ // VS Code installed (User dir present) but never opened → seed an
1008
+ // empty settings.json. Single object literal, no other keys, so
1009
+ // a later launch of VS Code finds it valid and writes user prefs
1010
+ // alongside.
1011
+ settings = {};
1012
+ }
995
1013
  if (!settings["github.copilot.mcpServers"]) settings["github.copilot.mcpServers"] = {};
996
1014
  const mcpServers = settings["github.copilot.mcpServers"];
997
1015
  for (const [id, mcpDef] of Object.entries(registryMcp)) {
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/ai/agent-dev.md (AI Agent Development) Use this skill when building AI agents, tool-use systems, or multi-agent workflo
3
-
4
- Use this skill when building AI agents, tool-use systems, or multi-agent workflows. ## Agent Architecture
5
- -->
1
+ ---
2
+ name: ai-agent-dev
3
+ description: Use this skill when building AI agents, tool-use systems, or multi-agent workflows.
4
+ ---
6
5
  # AI Agent Development
7
6
 
8
7
  Use this skill when building AI agents, tool-use systems, or multi-agent workflows.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/ai/llm-security.md (LLM Security) Use this skill when securing LLM-powered applications against prompt injection,
3
-
4
- Use this skill when securing LLM-powered applications against prompt injection, data leakage, and misuse. ## Prompt Injection
5
- -->
1
+ ---
2
+ name: ai-llm-security
3
+ description: Use this skill when securing LLM-powered applications against prompt injection, data leakage, and misuse.
4
+ ---
6
5
  # LLM Security
7
6
 
8
7
  Use this skill when securing LLM-powered applications against prompt injection, data leakage, and misuse.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/ai/ml-ops.md (ML Operations (MLOps)) ```
3
-
4
- ## The MLOps Lifecycle ```
5
- -->
1
+ ---
2
+ name: ai-ml-ops
3
+ description: Patterns, anti-patterns, and reference guidance for ML Operations (MLOps). Use when the task involves ml operations (mlops).
4
+ ---
6
5
  # ML Operations (MLOps)
7
6
 
8
7
  ## The MLOps Lifecycle
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/ai/orchestration-workflow.md (Construct Orchestration Workflow) Use this skill when the request involves agent orchestration, phase transitions,
3
-
4
- Use this skill when the request involves agent orchestration, phase transitions, task keys, handoff quality, workflow state, or project alignment. ## Core Model
5
- -->
1
+ ---
2
+ name: ai-orchestration-workflow
3
+ description: Use this skill when the request involves agent orchestration, phase transitions, task keys, handoff quality, workflow state, or project alignment.
4
+ ---
6
5
  # Construct Orchestration Workflow
7
6
 
8
7
  Use this skill when the request involves agent orchestration, phase transitions, task keys, handoff quality, workflow state, or project alignment.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/ai/prompt-and-eval.md (Prompt Engineering and Evaluation) Use this skill when designing prompts, evaluating model performance, or optimizi
3
-
4
- Use this skill when designing prompts, evaluating model performance, or optimizing LLM behavior. ## Prompt Structure
5
- -->
1
+ ---
2
+ name: ai-prompt-and-eval
3
+ description: Use this skill when designing prompts, evaluating model performance, or optimizing LLM behavior.
4
+ ---
6
5
  # Prompt Engineering and Evaluation
7
6
 
8
7
  Use this skill when designing prompts, evaluating model performance, or optimizing LLM behavior.
@@ -1,9 +1,7 @@
1
- <!--
2
- skills/ai/prompt-optimizer.md: Closed-loop prompt auto-optimization guide.
3
-
4
- Uses telemetry traces and quality scores as the feedback signal, Claude as the optimizer,
5
- and the agent registry + construct sync as the deployment layer.
6
- -->
1
+ ---
2
+ name: ai-prompt-optimizer
3
+ description: Closed-loop prompt auto-optimization guide. Use when the task matches the trigger conditions described in the body.
4
+ ---
7
5
  # Prompt Auto-Optimization Loop
8
6
 
9
7
  Construct's prompt improvement system uses telemetry traces and quality scores as the feedback signal, Claude as the optimizer, and the agent registry (`specialists/registry.json`) as the deployment layer. This is a closed loop: production data → failure analysis → improved prompt → staging → promotion.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/ai/rag-system.md (RAG System Design) Use this skill when building retrieval-augmented generation pipelines, vector se
3
-
4
- Use this skill when building retrieval-augmented generation pipelines, vector search, or knowledge-grounded AI systems. ## Document Processing
5
- -->
1
+ ---
2
+ name: ai-rag-system
3
+ description: Use this skill when building retrieval-augmented generation pipelines, vector search, or knowledge-grounded AI systems.
4
+ ---
6
5
  # RAG System Design
7
6
 
8
7
  Use this skill when building retrieval-augmented generation pipelines, vector search, or knowledge-grounded AI systems.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/architecture/api-design.md (API Design) Use this skill when designing REST, GraphQL, or gRPC APIs.
3
-
4
- Use this skill when designing REST, GraphQL, or gRPC APIs. ## REST Design Principles
5
- -->
1
+ ---
2
+ name: architecture-api-design
3
+ description: Use this skill when designing REST, GraphQL, or gRPC APIs.
4
+ ---
6
5
  # API Design
7
6
 
8
7
  Use this skill when designing REST, GraphQL, or gRPC APIs.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/architecture/caching.md (Caching) Use this skill when designing caching strategies for applications, APIs, or infr
3
-
4
- Use this skill when designing caching strategies for applications, APIs, or infrastructure. ## Cache Layers
5
- -->
1
+ ---
2
+ name: architecture-caching
3
+ description: Use this skill when designing caching strategies for applications, APIs, or infrastructure.
4
+ ---
6
5
  # Caching
7
6
 
8
7
  Use this skill when designing caching strategies for applications, APIs, or infrastructure.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/architecture/cloud-native.md (Cloud-Native Architecture) Use this skill when designing containerized, orchestrated, or microservice-based
3
-
4
- Use this skill when designing containerized, orchestrated, or microservice-based systems. ## Container Best Practices
5
- -->
1
+ ---
2
+ name: architecture-cloud-native
3
+ description: Use this skill when designing containerized, orchestrated, or microservice-based systems.
4
+ ---
6
5
  # Cloud-Native Architecture
7
6
 
8
7
  Use this skill when designing containerized, orchestrated, or microservice-based systems.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/architecture/message-queue.md (Message Queues and Event-Driven Architecture) Use this skill when designing asynchronous communication, event-driven systems,
3
-
4
- Use this skill when designing asynchronous communication, event-driven systems, or message-based integrations. ## When to Use Message Queues
5
- -->
1
+ ---
2
+ name: architecture-message-queue
3
+ description: Use this skill when designing asynchronous communication, event-driven systems, or message-based integrations.
4
+ ---
6
5
  # Message Queues and Event-Driven Architecture
7
6
 
8
7
  Use this skill when designing asynchronous communication, event-driven systems, or message-based integrations.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/architecture/security-arch.md (Security Architecture) Use this skill when designing authentication, authorization, network security, o
3
-
4
- Use this skill when designing authentication, authorization, network security, or zero-trust architectures. ## Zero Trust Principles
5
- -->
1
+ ---
2
+ name: architecture-security-arch
3
+ description: Use this skill when designing authentication, authorization, network security, or zero-trust architectures.
4
+ ---
6
5
  # Security Architecture
7
6
 
8
7
  Use this skill when designing authentication, authorization, network security, or zero-trust architectures.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/compliance/ai-disclosure.md (AI Disclosure) AI transparency, disclosure, and regulatory compliance.
3
-
4
- Use this skill when reviewing AI features for disclosure requirements, transparency obligations, or emerging AI regulation compliance.
5
- -->
1
+ ---
2
+ name: compliance-ai-disclosure
3
+ description: Use this skill when reviewing AI features for disclosure requirements, transparency obligations, or emerging AI regulation compliance.
4
+ ---
6
5
  # AI Disclosure
7
6
 
8
7
  Use this skill when reviewing AI features for disclosure requirements, transparency obligations, or emerging AI regulation compliance.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/compliance/data-privacy.md (Data Privacy) GDPR, CCPA, and data protection compliance patterns.
3
-
4
- Use this skill when reviewing data collection, storage, processing, or retention for privacy regulation compliance.
5
- -->
1
+ ---
2
+ name: compliance-data-privacy
3
+ description: Use this skill when reviewing data collection, storage, processing, or retention for privacy regulation compliance.
4
+ ---
6
5
  # Data Privacy
7
6
 
8
7
  Use this skill when reviewing data collection, storage, processing, or retention for privacy regulation compliance.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/compliance/license-audit.md (License Audit) Dependency license review and open-source compliance.
3
-
4
- Use this skill when auditing dependency licenses, evaluating OSS compliance risk, or preparing license inventories for legal review.
5
- -->
1
+ ---
2
+ name: compliance-license-audit
3
+ description: Use this skill when auditing dependency licenses, evaluating OSS compliance risk, or preparing license inventories for legal review.
4
+ ---
6
5
  # License Audit
7
6
 
8
7
  Use this skill when auditing dependency licenses, evaluating OSS compliance risk, or preparing license inventories for legal review.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/compliance/regulatory-review.md (Regulatory Review) Pre-ship compliance review checklist and process.
3
-
4
- Use this skill when conducting a compliance review before shipping features that handle user data, financial transactions, AI decisions, or regulated content.
5
- -->
1
+ ---
2
+ name: compliance-regulatory-review
3
+ description: Use this skill when conducting a compliance review before shipping features that handle user data, financial transactions, AI decisions, or regulated content.
4
+ ---
6
5
  # Regulatory Review
7
6
 
8
7
  Use this skill when conducting a compliance review before shipping features that handle user data, financial transactions, AI decisions, or regulated content.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/cpp.md (C/C++ Best Practices) Use this skill when writing, reviewing, or debugging C or C++ code.
3
-
4
- Use this skill when writing, reviewing, or debugging C or C++ code. ## Project Structure
5
- -->
1
+ ---
2
+ name: development-cpp
3
+ description: Use this skill when writing, reviewing, or debugging C or C++ code.
4
+ ---
6
5
  # C/C++ Best Practices
7
6
 
8
7
  Use this skill when writing, reviewing, or debugging C or C++ code.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/go.md (Go Best Practices) Use this skill when writing, reviewing, or debugging Go code.
3
-
4
- Use this skill when writing, reviewing, or debugging Go code. ## Project Structure
5
- -->
1
+ ---
2
+ name: development-go
3
+ description: Use this skill when writing, reviewing, or debugging Go code.
4
+ ---
6
5
  # Go Best Practices
7
6
 
8
7
  Use this skill when writing, reviewing, or debugging Go code.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/java.md (Java Best Practices) Use this skill when writing, reviewing, or debugging Java or Kotlin code on the
3
-
4
- Use this skill when writing, reviewing, or debugging Java or Kotlin code on the JVM. ## Project Structure
5
- -->
1
+ ---
2
+ name: development-java
3
+ description: Use this skill when writing, reviewing, or debugging Java or Kotlin code on the JVM.
4
+ ---
6
5
  # Java Best Practices
7
6
 
8
7
  Use this skill when writing, reviewing, or debugging Java or Kotlin code on the JVM.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/kotlin.md (Kotlin / Android Development) | Scope | Use when |
3
-
4
- ## Coroutines & Flows ### Coroutine scope discipline
5
- -->
1
+ ---
2
+ name: development-kotlin
3
+ description: Patterns, anti-patterns, and reference guidance for Kotlin / Android Development. Use when the task involves kotlin / android development.
4
+ ---
6
5
  # Kotlin / Android Development
7
6
 
8
7
  ## Coroutines & Flows
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/mobile-crossplatform.md (Mobile Cross-Platform Development) Before choosing a framework, answer:
3
-
4
- ## Decision Framework: Native vs Cross-Platform Before choosing a framework, answer:
5
- -->
1
+ ---
2
+ name: development-mobile-crossplatform
3
+ description: Before choosing a framework, answer:. Use when the task matches the trigger conditions described in the body.
4
+ ---
6
5
  # Mobile Cross-Platform Development
7
6
 
8
7
  ## Decision Framework: Native vs Cross-Platform
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/python.md (Python Best Practices) Use this skill when writing, reviewing, or debugging Python code.
3
-
4
- Use this skill when writing, reviewing, or debugging Python code. ## Project Structure
5
- -->
1
+ ---
2
+ name: development-python
3
+ description: Use this skill when writing, reviewing, or debugging Python code.
4
+ ---
6
5
  # Python Best Practices
7
6
 
8
7
  Use this skill when writing, reviewing, or debugging Python code.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/rust.md (Rust Best Practices) Use this skill when writing, reviewing, or debugging Rust code.
3
-
4
- Use this skill when writing, reviewing, or debugging Rust code. ## Project Structure
5
- -->
1
+ ---
2
+ name: development-rust
3
+ description: Use this skill when writing, reviewing, or debugging Rust code.
4
+ ---
6
5
  # Rust Best Practices
7
6
 
8
7
  Use this skill when writing, reviewing, or debugging Rust code.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/shell.md (Shell Scripting Best Practices) Use this skill when writing, reviewing, or debugging Bash, Zsh, or POSIX shell s
3
-
4
- Use this skill when writing, reviewing, or debugging Bash, Zsh, or POSIX shell scripts. ## Script Header
5
- -->
1
+ ---
2
+ name: development-shell
3
+ description: Use this skill when writing, reviewing, or debugging Bash, Zsh, or POSIX shell scripts.
4
+ ---
6
5
  # Shell Scripting Best Practices
7
6
 
8
7
  Use this skill when writing, reviewing, or debugging Bash, Zsh, or POSIX shell scripts.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/swift.md (Swift / iOS Development) Swift 6 enforces data-race safety at compile time. Annotate isolation boundary e
3
-
4
- ## Concurrency (Swift 6 Strict Concurrency) Swift 6 enforces data-race safety at compile time. Annotate isolation boundary explicitly:
5
- -->
1
+ ---
2
+ name: development-swift
3
+ description: Swift 6 enforces data-race safety at compile time. Annotate isolation boundary explicitly:. Use when the task matches the trigger conditions described in the body.
4
+ ---
6
5
  # Swift / iOS Development
7
6
 
8
7
  ## Concurrency (Swift 6 Strict Concurrency)
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/development/typescript.md (TypeScript Best Practices) Use this skill when writing, reviewing, or debugging TypeScript or JavaScript co
3
-
4
- Use this skill when writing, reviewing, or debugging TypeScript or JavaScript code. ## Project Structure
5
- -->
1
+ ---
2
+ name: development-typescript
3
+ description: Use this skill when writing, reviewing, or debugging TypeScript or JavaScript code.
4
+ ---
6
5
  # TypeScript Best Practices
7
6
 
8
7
  Use this skill when writing, reviewing, or debugging TypeScript or JavaScript code.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/ci-cd.md (CI/CD) Use this skill when designing, debugging, or optimizing CI/CD pipelines.
3
-
4
- Use this skill when designing, debugging, or optimizing CI/CD pipelines. ## Pipeline Stages
5
- -->
1
+ ---
2
+ name: devops-ci-cd
3
+ description: Use this skill when designing, debugging, or optimizing CI/CD pipelines.
4
+ ---
6
5
  # CI/CD
7
6
 
8
7
  Use this skill when designing, debugging, or optimizing CI/CD pipelines.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/containerization.md (Containerization) Use this skill when writing Dockerfiles, optimizing image size, or securing cont
3
-
4
- Use this skill when writing Dockerfiles, optimizing image size, or securing container builds. ## Multi-Stage Builds
5
- -->
1
+ ---
2
+ name: devops-containerization
3
+ description: Use this skill when writing Dockerfiles, optimizing image size, or securing container builds.
4
+ ---
6
5
  # Containerization
7
6
 
8
7
  Use this skill when writing Dockerfiles, optimizing image size, or securing container builds.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/cost-optimization.md (Cloud Cost Optimization) Use this skill when reducing cloud spend, right-sizing resources, or implementin
3
-
4
- Use this skill when reducing cloud spend, right-sizing resources, or implementing FinOps practices. ## Cost Visibility
5
- -->
1
+ ---
2
+ name: devops-cost-optimization
3
+ description: Use this skill when reducing cloud spend, right-sizing resources, or implementing FinOps practices.
4
+ ---
6
5
  # Cloud Cost Optimization
7
6
 
8
7
  Use this skill when reducing cloud spend, right-sizing resources, or implementing FinOps practices.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/data-engineering.md (Data Engineering) 1. **Idempotency**: pipelines can run multiple times without duplicating data
3
-
4
- ## Core Principles 1. **Idempotency**: pipelines can run multiple times without duplicating data
5
- -->
1
+ ---
2
+ name: devops-data-engineering
3
+ description: "1. **Idempotency**: pipelines can run multiple times without duplicating data 2. **Observability**: every pipeline run logs row counts, latency, and anomalies 3. **Data contracts**: producers and consumers agree on schema and SLAs 4. **Lineage**: know where every column came from and what it feeds. Use when the task matches the trigger conditions described in the body."
4
+ ---
6
5
  # Data Engineering
7
6
 
8
7
  ## Core Principles
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/database.md (Database Patterns) Use this skill when designing schemas, writing migrations, optimizing queries, o
3
-
4
- Use this skill when designing schemas, writing migrations, optimizing queries, or selecting databases. ## Schema Design
5
- -->
1
+ ---
2
+ name: devops-database
3
+ description: Use this skill when designing schemas, writing migrations, optimizing queries, or selecting databases.
4
+ ---
6
5
  # Database Patterns
7
6
 
8
7
  Use this skill when designing schemas, writing migrations, optimizing queries, or selecting databases.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/dependency-management.md (Dependency Management) Use this skill when managing package upgrades, resolving CVEs, or establishing l
3
-
4
- Use this skill when managing package upgrades, resolving CVEs, or establishing lock file and versioning policy. ## Lock File Hygiene
5
- -->
1
+ ---
2
+ name: devops-dependency-management
3
+ description: Use this skill when managing package upgrades, resolving CVEs, or establishing lock file and versioning policy.
4
+ ---
6
5
  # Dependency Management
7
6
 
8
7
  Use this skill when managing package upgrades, resolving CVEs, or establishing lock file and versioning policy.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/devsecops.md (DevSecOps) Use this skill when integrating security into CI/CD pipelines, managing supply c
3
-
4
- Use this skill when integrating security into CI/CD pipelines, managing supply chain risk, or automating security scanning. ## Pipeline Security Stages
5
- -->
1
+ ---
2
+ name: devops-devsecops
3
+ description: Use this skill when integrating security into CI/CD pipelines, managing supply chain risk, or automating security scanning.
4
+ ---
6
5
  # DevSecOps
7
6
 
8
7
  Use this skill when integrating security into CI/CD pipelines, managing supply chain risk, or automating security scanning.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/git-workflow.md (Git Workflow) Use this skill when establishing branching strategies, commit conventions, or co
3
-
4
- Use this skill when establishing branching strategies, commit conventions, or code integration practices. ## Branching Strategies
5
- -->
1
+ ---
2
+ name: devops-git-workflow
3
+ description: Use this skill when establishing branching strategies, commit conventions, or code integration practices.
4
+ ---
6
5
  # Git Workflow
7
6
 
8
7
  Use this skill when establishing branching strategies, commit conventions, or code integration practices.
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/incident-response.md (Incident Response) | Sev | User impact | Response time | Example |
3
-
4
- ## Severity Levels | Sev | User impact | Response time | Example |
5
- -->
1
+ ---
2
+ name: devops-incident-response
3
+ description: "Define severity in your runbook and assign it early: it determines escalation and comms cadence. Use when the task matches the trigger conditions described in the body."
4
+ ---
6
5
  # Incident Response
7
6
 
8
7
  ## Severity Levels
@@ -1,8 +1,7 @@
1
- <!--
2
- skills/devops/monorepo.md (Monorepo) Use this skill when selecting monorepo tooling, structuring packages, or optimiz
3
-
4
- Use this skill when selecting monorepo tooling, structuring packages, or optimizing affected-only builds. ## Tool Selection
5
- -->
1
+ ---
2
+ name: devops-monorepo
3
+ description: Use this skill when selecting monorepo tooling, structuring packages, or optimizing affected-only builds.
4
+ ---
6
5
  # Monorepo
7
6
 
8
7
  Use this skill when selecting monorepo tooling, structuring packages, or optimizing affected-only builds.