@geraldmaron/construct 1.0.4 → 1.0.6

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 (293) hide show
  1. package/README.md +57 -44
  2. package/agents/prompts/cx-accessibility.md +3 -3
  3. package/agents/prompts/cx-ai-engineer.md +7 -7
  4. package/agents/prompts/cx-architect.md +6 -6
  5. package/agents/prompts/cx-business-strategist.md +6 -6
  6. package/agents/prompts/cx-data-analyst.md +7 -7
  7. package/agents/prompts/cx-data-engineer.md +3 -3
  8. package/agents/prompts/cx-debugger.md +6 -6
  9. package/agents/prompts/cx-designer.md +5 -5
  10. package/agents/prompts/cx-devil-advocate.md +4 -4
  11. package/agents/prompts/cx-docs-keeper.md +5 -5
  12. package/agents/prompts/cx-engineer.md +5 -5
  13. package/agents/prompts/cx-evaluator.md +2 -2
  14. package/agents/prompts/cx-explorer.md +8 -8
  15. package/agents/prompts/cx-legal-compliance.md +2 -2
  16. package/agents/prompts/cx-operations.md +5 -5
  17. package/agents/prompts/cx-orchestrator.md +10 -10
  18. package/agents/prompts/cx-platform-engineer.md +5 -5
  19. package/agents/prompts/cx-product-manager.md +4 -4
  20. package/agents/prompts/cx-qa.md +8 -8
  21. package/agents/prompts/cx-rd-lead.md +9 -9
  22. package/agents/prompts/cx-release-manager.md +5 -5
  23. package/agents/prompts/cx-researcher.md +22 -22
  24. package/agents/prompts/cx-reviewer.md +7 -7
  25. package/agents/prompts/cx-security.md +10 -10
  26. package/agents/prompts/cx-sre.md +7 -7
  27. package/agents/prompts/cx-test-automation.md +3 -3
  28. package/agents/prompts/cx-trace-reviewer.md +8 -8
  29. package/agents/prompts/cx-ux-researcher.md +3 -3
  30. package/bin/construct +470 -4
  31. package/commands/build/feature.md +4 -4
  32. package/commands/build/fix.md +8 -8
  33. package/commands/design/access.md +3 -3
  34. package/commands/design/flow.md +3 -3
  35. package/commands/design/ui.md +4 -4
  36. package/commands/measure/experiment.md +5 -5
  37. package/commands/measure/metrics.md +3 -3
  38. package/commands/measure/results.md +4 -4
  39. package/commands/plan/api.md +3 -3
  40. package/commands/plan/challenge.md +3 -3
  41. package/commands/plan/decide.md +3 -3
  42. package/commands/plan/feature.md +7 -7
  43. package/commands/plan/requirements.md +3 -3
  44. package/commands/remember/context.md +5 -5
  45. package/commands/remember/handoff.md +3 -3
  46. package/commands/remember/runbook.md +3 -3
  47. package/commands/review/code.md +8 -8
  48. package/commands/review/quality.md +4 -4
  49. package/commands/review/security.md +3 -3
  50. package/commands/ship/ready.md +3 -3
  51. package/commands/ship/release.md +3 -3
  52. package/commands/ship/status.md +4 -4
  53. package/commands/understand/docs.md +3 -3
  54. package/commands/understand/research.md +5 -3
  55. package/commands/understand/this.md +4 -4
  56. package/commands/understand/why.md +8 -8
  57. package/commands/work/clean.md +14 -14
  58. package/commands/work/drive.md +10 -10
  59. package/commands/work/optimize-prompts.md +9 -9
  60. package/commands/work/parallel-review.md +8 -8
  61. package/db/schema/006_graph.sql +24 -0
  62. package/examples/provider-plugin/README.md +7 -7
  63. package/examples/seed-observations/README.md +6 -6
  64. package/examples/seed-observations/anti-patterns.md +14 -14
  65. package/examples/seed-observations/decisions.md +4 -4
  66. package/examples/seed-observations/patterns.md +14 -14
  67. package/lib/auto-docs.mjs +10 -5
  68. package/lib/cli-commands.mjs +45 -1
  69. package/lib/comment-lint.mjs +7 -1
  70. package/lib/config/schema.mjs +3 -0
  71. package/lib/flavors/loader.mjs +136 -0
  72. package/lib/hooks/agent-tracker.mjs +22 -3
  73. package/lib/hooks/pre-push-gate.mjs +14 -1
  74. package/lib/hooks/session-optimize.mjs +3 -2
  75. package/lib/hooks/session-reflect.mjs +68 -0
  76. package/lib/init-unified.mjs +25 -2
  77. package/lib/intake/classify.mjs +61 -183
  78. package/lib/intake/prepare.mjs +7 -0
  79. package/lib/intake/tables/creative.mjs +94 -0
  80. package/lib/intake/tables/operations.mjs +85 -0
  81. package/lib/intake/tables/research.mjs +85 -0
  82. package/lib/intake/tables/rnd.mjs +175 -0
  83. package/lib/knowledge/graph.mjs +213 -0
  84. package/lib/knowledge/research-store.mjs +109 -0
  85. package/lib/mcp/server.mjs +187 -1
  86. package/lib/mcp/tools/profile.mjs +270 -0
  87. package/lib/observation-store.mjs +19 -0
  88. package/lib/outcomes/aggregate.mjs +104 -0
  89. package/lib/outcomes/record.mjs +115 -0
  90. package/lib/parity.mjs +6 -9
  91. package/lib/profiles/lifecycle.mjs +388 -0
  92. package/lib/profiles/loader.mjs +123 -0
  93. package/lib/profiles/validate-custom.mjs +114 -0
  94. package/lib/reflect/extractor.mjs +193 -0
  95. package/lib/reflect.mjs +89 -2
  96. package/lib/sandbox.mjs +102 -0
  97. package/package.json +6 -1
  98. package/personas/construct.md +20 -20
  99. package/platforms/claude/CLAUDE.md +6 -6
  100. package/platforms/claude/settings.template.json +13 -0
  101. package/rules/common/agents.md +2 -2
  102. package/rules/common/beads-hygiene.md +11 -11
  103. package/rules/common/code-review.md +1 -1
  104. package/rules/common/coding-style.md +1 -1
  105. package/rules/common/comments.md +8 -8
  106. package/rules/common/commit-approval.md +4 -4
  107. package/rules/common/cx-agent-routing.md +2 -2
  108. package/rules/common/cx-skill-routing.md +2 -2
  109. package/rules/common/development-workflow.md +1 -1
  110. package/rules/common/doc-ownership.md +2 -2
  111. package/rules/common/efficiency.md +3 -3
  112. package/rules/common/framing.md +1 -1
  113. package/rules/common/git-workflow.md +1 -1
  114. package/rules/common/patterns.md +1 -1
  115. package/rules/common/performance.md +1 -1
  116. package/rules/common/release-gates.md +7 -7
  117. package/rules/common/research.md +4 -4
  118. package/rules/common/security.md +1 -1
  119. package/rules/common/skill-composition.md +8 -8
  120. package/rules/common/testing.md +1 -1
  121. package/rules/golang/coding-style.md +2 -2
  122. package/rules/golang/hooks.md +1 -1
  123. package/rules/golang/patterns.md +1 -1
  124. package/rules/golang/security.md +1 -1
  125. package/rules/golang/testing.md +1 -1
  126. package/rules/python/coding-style.md +1 -1
  127. package/rules/python/hooks.md +1 -1
  128. package/rules/python/patterns.md +1 -1
  129. package/rules/python/security.md +1 -1
  130. package/rules/python/testing.md +1 -1
  131. package/rules/swift/coding-style.md +3 -3
  132. package/rules/swift/hooks.md +2 -2
  133. package/rules/swift/patterns.md +2 -2
  134. package/rules/swift/security.md +4 -4
  135. package/rules/swift/testing.md +2 -2
  136. package/rules/typescript/coding-style.md +1 -1
  137. package/rules/typescript/hooks.md +1 -1
  138. package/rules/typescript/patterns.md +1 -1
  139. package/rules/typescript/security.md +1 -1
  140. package/rules/typescript/testing.md +1 -1
  141. package/rules/web/coding-style.md +1 -1
  142. package/rules/web/design-quality.md +1 -1
  143. package/rules/web/hooks.md +1 -1
  144. package/rules/web/patterns.md +1 -1
  145. package/rules/web/performance.md +1 -1
  146. package/rules/web/security.md +1 -1
  147. package/rules/web/testing.md +1 -1
  148. package/scripts/sync-agents.mjs +11 -0
  149. package/skills/ai/agent-dev.md +1 -1
  150. package/skills/ai/llm-security.md +1 -1
  151. package/skills/ai/ml-ops.md +6 -6
  152. package/skills/ai/orchestration-workflow.md +1 -1
  153. package/skills/ai/prompt-and-eval.md +1 -1
  154. package/skills/ai/prompt-optimizer.md +13 -13
  155. package/skills/ai/rag-system.md +1 -1
  156. package/skills/architecture/api-design.md +1 -1
  157. package/skills/architecture/caching.md +1 -1
  158. package/skills/architecture/cloud-native.md +1 -1
  159. package/skills/architecture/message-queue.md +1 -1
  160. package/skills/architecture/security-arch.md +1 -1
  161. package/skills/compliance/ai-disclosure.md +1 -1
  162. package/skills/compliance/data-privacy.md +1 -1
  163. package/skills/compliance/license-audit.md +2 -2
  164. package/skills/compliance/regulatory-review.md +1 -1
  165. package/skills/development/cpp.md +1 -1
  166. package/skills/development/go.md +1 -1
  167. package/skills/development/java.md +1 -1
  168. package/skills/development/kotlin.md +9 -9
  169. package/skills/development/mobile-crossplatform.md +13 -13
  170. package/skills/development/python.md +1 -1
  171. package/skills/development/rust.md +1 -1
  172. package/skills/development/shell.md +1 -1
  173. package/skills/development/swift.md +6 -6
  174. package/skills/development/typescript.md +1 -1
  175. package/skills/devops/ci-cd.md +5 -5
  176. package/skills/devops/containerization.md +9 -9
  177. package/skills/devops/cost-optimization.md +1 -1
  178. package/skills/devops/data-engineering.md +2 -2
  179. package/skills/devops/database.md +1 -1
  180. package/skills/devops/dependency-management.md +3 -3
  181. package/skills/devops/devsecops.md +1 -1
  182. package/skills/devops/git-workflow.md +1 -1
  183. package/skills/devops/incident-response.md +18 -18
  184. package/skills/devops/monorepo.md +5 -5
  185. package/skills/devops/observability.md +1 -1
  186. package/skills/devops/performance.md +1 -1
  187. package/skills/devops/testing.md +1 -1
  188. package/skills/docs/adr-workflow.md +2 -2
  189. package/skills/docs/backlog-proposal-workflow.md +1 -1
  190. package/skills/docs/customer-profile-workflow.md +1 -1
  191. package/skills/docs/document-ingest-workflow.md +1 -1
  192. package/skills/docs/evidence-ingest-workflow.md +1 -1
  193. package/skills/docs/init-docs.md +15 -15
  194. package/skills/docs/init-project.md +1 -1
  195. package/skills/docs/prd-workflow.md +3 -3
  196. package/skills/docs/prfaq-workflow.md +1 -1
  197. package/skills/docs/product-intelligence-review.md +1 -1
  198. package/skills/docs/product-intelligence-workflow.md +1 -1
  199. package/skills/docs/product-signal-workflow.md +9 -9
  200. package/skills/docs/research-workflow.md +10 -10
  201. package/skills/docs/runbook-workflow.md +2 -2
  202. package/skills/docs/strategy-workflow.md +3 -3
  203. package/skills/exploration/repo-map.md +11 -11
  204. package/skills/frameworks/django.md +15 -15
  205. package/skills/frameworks/nextjs.md +16 -16
  206. package/skills/frameworks/react.md +12 -12
  207. package/skills/frameworks/spring-boot.md +12 -12
  208. package/skills/frontend-design/accessibility.md +6 -6
  209. package/skills/frontend-design/component-patterns.md +1 -1
  210. package/skills/frontend-design/engineering.md +1 -1
  211. package/skills/frontend-design/state-management.md +1 -1
  212. package/skills/frontend-design/ui-aesthetics.md +1 -1
  213. package/skills/frontend-design/ux-principles.md +1 -1
  214. package/skills/operating/orchestration-reference.md +27 -27
  215. package/skills/quality-gates/review-work.md +3 -3
  216. package/skills/quality-gates/verify-change.md +1 -1
  217. package/skills/quality-gates/verify-module.md +1 -1
  218. package/skills/quality-gates/verify-quality.md +1 -1
  219. package/skills/quality-gates/verify-security.md +1 -1
  220. package/skills/roles/architect.ai-systems.md +4 -2
  221. package/skills/roles/architect.data.md +4 -2
  222. package/skills/roles/architect.enterprise.md +4 -2
  223. package/skills/roles/architect.integration.md +4 -2
  224. package/skills/roles/architect.md +7 -5
  225. package/skills/roles/architect.platform.md +4 -2
  226. package/skills/roles/data-analyst.experiment.md +4 -2
  227. package/skills/roles/data-analyst.md +9 -7
  228. package/skills/roles/data-analyst.product-intelligence.md +4 -2
  229. package/skills/roles/data-analyst.product.md +4 -2
  230. package/skills/roles/data-analyst.telemetry.md +4 -2
  231. package/skills/roles/data-engineer.pipeline.md +4 -2
  232. package/skills/roles/data-engineer.vector-retrieval.md +4 -2
  233. package/skills/roles/data-engineer.warehouse.md +4 -2
  234. package/skills/roles/debugger.md +7 -5
  235. package/skills/roles/designer.accessibility.md +4 -2
  236. package/skills/roles/designer.md +10 -8
  237. package/skills/roles/engineer.ai.md +4 -2
  238. package/skills/roles/engineer.data.md +5 -3
  239. package/skills/roles/engineer.md +14 -12
  240. package/skills/roles/engineer.platform.md +5 -3
  241. package/skills/roles/operator.docs.md +6 -4
  242. package/skills/roles/operator.md +6 -4
  243. package/skills/roles/operator.release.md +4 -2
  244. package/skills/roles/operator.sre.md +5 -3
  245. package/skills/roles/orchestrator.md +5 -3
  246. package/skills/roles/product-manager.ai-product.md +4 -2
  247. package/skills/roles/product-manager.business-strategy.md +4 -2
  248. package/skills/roles/product-manager.enterprise.md +4 -2
  249. package/skills/roles/product-manager.growth.md +4 -2
  250. package/skills/roles/product-manager.md +6 -4
  251. package/skills/roles/product-manager.platform.md +4 -2
  252. package/skills/roles/product-manager.product.md +4 -2
  253. package/skills/roles/qa.ai-eval.md +4 -2
  254. package/skills/roles/qa.api-contract.md +4 -2
  255. package/skills/roles/qa.data-pipeline.md +4 -2
  256. package/skills/roles/qa.md +7 -5
  257. package/skills/roles/qa.test-automation.md +5 -3
  258. package/skills/roles/qa.web-ui.md +4 -2
  259. package/skills/roles/researcher.explorer.md +4 -2
  260. package/skills/roles/researcher.md +11 -9
  261. package/skills/roles/researcher.ux.md +4 -2
  262. package/skills/roles/reviewer.devil-advocate.md +4 -2
  263. package/skills/roles/reviewer.evaluator.md +4 -2
  264. package/skills/roles/reviewer.md +14 -12
  265. package/skills/roles/reviewer.trace.md +4 -2
  266. package/skills/roles/security.ai.md +4 -2
  267. package/skills/roles/security.appsec.md +4 -2
  268. package/skills/roles/security.cloud.md +4 -2
  269. package/skills/roles/security.legal-compliance.md +4 -2
  270. package/skills/roles/security.md +7 -5
  271. package/skills/roles/security.privacy.md +4 -2
  272. package/skills/roles/security.supply-chain.md +4 -2
  273. package/skills/routing.md +14 -14
  274. package/skills/security/blue-team.md +1 -1
  275. package/skills/security/code-audit.md +1 -1
  276. package/skills/security/pentest.md +1 -1
  277. package/skills/security/red-team.md +1 -1
  278. package/skills/security/threat-intel.md +1 -1
  279. package/skills/security/vuln-research.md +1 -1
  280. package/skills/utility/clean-code.md +2 -2
  281. package/templates/docs/changelog-entry.md +1 -1
  282. package/templates/docs/construct_guide.md +13 -13
  283. package/templates/docs/meta-prd.md +16 -16
  284. package/templates/docs/one-pager.md +1 -1
  285. package/templates/docs/persona-artifact.md +36 -0
  286. package/templates/docs/prd-business.md +1 -1
  287. package/templates/docs/prd-platform.md +1 -1
  288. package/templates/docs/prd.md +17 -17
  289. package/templates/docs/research-brief.md +8 -8
  290. package/templates/docs/research-finding.md +26 -0
  291. package/templates/docs/rfc.md +1 -1
  292. package/templates/docs/skill-artifact.md +27 -0
  293. package/templates/docs/strategy.md +1 -1
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/architect.md Anti-pattern guidance for the Architect role.
2
+ skills/roles/architect.md. Anti-pattern guidance for the Architect role.
3
3
 
4
4
  ## Improvement Note (auto-generated 2026-04-29)
5
5
  - Improve specificity in technical guidance; provide detailed steps or code snippets rather than vague suggestions.
@@ -14,11 +14,13 @@ Applies to: cx-architect, cx-rd-lead.
14
14
  role: architect
15
15
  applies_to: [cx-architect, cx-rd-lead]
16
16
  inherits: null
17
- version: 1
17
+ version: 2
18
+ profiles: [rnd]
19
+ cap: 1
18
20
  ---
19
- # Architect Role guidance
21
+ # Architect. Role guidance
20
22
 
21
- Load this before drafting. These are the failure modes that separate strong role output from weak role output check your draft against each.
23
+ Load this before drafting. These are the failure modes that separate strong role output from weak role output. check your draft against each.
22
24
 
23
25
 
24
26
  ### 1. Premature tech choice
@@ -42,7 +44,7 @@ Load this before drafting. These are the failure modes that separate strong role
42
44
  **Counter-move**: label every major decision as one-way or two-way and match the evidence burden to it.
43
45
 
44
46
  ### 5. Boundary vagueness
45
- **Symptom**: modules, services, or teams are drawn with arrows but the contracts inputs, outputs, failure modes are not specified.
47
+ **Symptom**: modules, services, or teams are drawn with arrows but the contracts. inputs, outputs, failure modes. are not specified.
46
48
  **Why it fails**: each team implements its own interpretation; the integration surfaces the gaps in production.
47
49
  **Counter-move**: every boundary has a contract. Every contract names its failure modes.
48
50
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/architect.platform.md Anti-pattern guidance for the Architect.platform (platform) role.
2
+ skills/roles/architect.platform.md. Anti-pattern guidance for the Architect.platform (platform) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the architect.platform (platform) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-architect.
9
9
  role: architect.platform
10
10
  applies_to: [cx-architect]
11
11
  inherits: architect
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Platform Architect Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/data-analyst.experiment.md Anti-pattern guidance for the Data-analyst.experiment (experiment) role.
2
+ skills/roles/data-analyst.experiment.md. Anti-pattern guidance for the Data-analyst.experiment (experiment) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the data-analyst.experiment (experiment) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-data-analyst.
9
9
  role: data-analyst.experiment
10
10
  applies_to: [cx-data-analyst]
11
11
  inherits: data-analyst
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Experiment Analyst Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/data-analyst.md Anti-pattern guidance for the Data-analyst role.
2
+ skills/roles/data-analyst.md. Anti-pattern guidance for the Data-analyst role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the data-analyst domain and counter-moves to avoid them.
@@ -9,27 +9,29 @@ Applies to: cx-data-analyst.
9
9
  role: data-analyst
10
10
  applies_to: [cx-data-analyst]
11
11
  inherits: null
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
- # Data Analyst Role guidance
16
+ # Data Analyst. Role guidance
15
17
 
16
- Load this before drafting. These are the failure modes that separate strong role output from weak role output check your draft against each.
18
+ Load this before drafting. These are the failure modes that separate strong role output from weak role output. check your draft against each.
17
19
 
18
20
 
19
21
  ### 1. Metric without definition
20
- **Symptom**: a metric cited without its precise definition which events, what time window, deduplication rules, filters.
22
+ **Symptom**: a metric cited without its precise definition. which events, what time window, deduplication rules, filters.
21
23
  **Why it fails**: two teams compute "active users" differently. Decisions rest on numbers nobody can reproduce.
22
24
  **Counter-move**: name the metric and its SQL-level or event-level definition before any number. Version the definition.
23
25
 
24
26
  ### 2. Vanity over outcome
25
- **Symptom**: reports lead with impressions, pageviews, clicks activity disconnected from whether users got value.
27
+ **Symptom**: reports lead with impressions, pageviews, clicks. activity disconnected from whether users got value.
26
28
  **Why it fails**: rewards teams for moving activity numbers while outcomes stagnate.
27
29
  **Counter-move**: tie every vanity metric to an outcome metric. Report both. Lead with the outcome.
28
30
 
29
31
  ### 3. Ignoring data quality
30
32
  **Symptom**: analysis assumes the underlying events fire correctly, are deduped, and have consistent schemas.
31
33
  **Why it fails**: real pipelines drop, duplicate, and malform events. Analysis without QA produces confident wrong numbers.
32
- **Counter-move**: run sanity checks row counts, null rates, distribution shape, schema checks before analysis. Report data quality alongside findings.
34
+ **Counter-move**: run sanity checks. row counts, null rates, distribution shape, schema checks. before analysis. Report data quality alongside findings.
33
35
 
34
36
  ### 4. Correlation as causation
35
37
  **Symptom**: "users who did X had higher retention" presented as a reason to make everyone do X.
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/data-analyst.product-intelligence.md Anti-pattern guidance for the Data-analyst.product-intelligence (product intelligence) role.
2
+ skills/roles/data-analyst.product-intelligence.md. Anti-pattern guidance for the Data-analyst.product-intelligence (product intelligence) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the data-analyst.product-intelligence (product intelligence) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-data-analyst, cx-product-manager.
9
9
  role: data-analyst.product-intelligence
10
10
  applies_to: [cx-data-analyst, cx-product-manager]
11
11
  inherits: data-analyst
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Product Intelligence Analyst Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/data-analyst.product.md Anti-pattern guidance for the Data-analyst.product (product) role.
2
+ skills/roles/data-analyst.product.md. Anti-pattern guidance for the Data-analyst.product (product) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the data-analyst.product (product) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-data-analyst.
9
9
  role: data-analyst.product
10
10
  applies_to: [cx-data-analyst]
11
11
  inherits: data-analyst
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Product Analytics Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/data-analyst.telemetry.md Anti-pattern guidance for the Data-analyst.telemetry (telemetry) role.
2
+ skills/roles/data-analyst.telemetry.md. Anti-pattern guidance for the Data-analyst.telemetry (telemetry) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the data-analyst.telemetry (telemetry) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-data-analyst, cx-sre.
9
9
  role: data-analyst.telemetry
10
10
  applies_to: [cx-data-analyst, cx-sre]
11
11
  inherits: data-analyst
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Telemetry Analyst Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/data-engineer.pipeline.md Anti-pattern guidance for the Data-engineer.pipeline (pipeline) role.
2
+ skills/roles/data-engineer.pipeline.md. Anti-pattern guidance for the Data-engineer.pipeline (pipeline) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the data-engineer.pipeline (pipeline) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-data-engineer.
9
9
  role: data-engineer.pipeline
10
10
  applies_to: [cx-data-engineer]
11
11
  inherits: engineer.data
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Data Pipeline Engineer Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/data-engineer.vector-retrieval.md Anti-pattern guidance for the Data-engineer.vector-retrieval (vector retrieval) role.
2
+ skills/roles/data-engineer.vector-retrieval.md. Anti-pattern guidance for the Data-engineer.vector-retrieval (vector retrieval) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the data-engineer.vector-retrieval (vector retrieval) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-data-engineer, cx-ai-engineer.
9
9
  role: data-engineer.vector-retrieval
10
10
  applies_to: [cx-data-engineer, cx-ai-engineer]
11
11
  inherits: engineer.data
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Vector Retrieval Engineer Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/data-engineer.warehouse.md Anti-pattern guidance for the Data-engineer.warehouse (warehouse) role.
2
+ skills/roles/data-engineer.warehouse.md. Anti-pattern guidance for the Data-engineer.warehouse (warehouse) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the data-engineer.warehouse (warehouse) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-data-engineer.
9
9
  role: data-engineer.warehouse
10
10
  applies_to: [cx-data-engineer]
11
11
  inherits: engineer.data
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Warehouse Engineer Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/debugger.md Anti-pattern guidance for the Debugger role.
2
+ skills/roles/debugger.md. Anti-pattern guidance for the Debugger role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the debugger domain and counter-moves to avoid them.
@@ -9,11 +9,13 @@ Applies to: cx-debugger.
9
9
  role: debugger
10
10
  applies_to: [cx-debugger]
11
11
  inherits: null
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
- # Debugger Role guidance
16
+ # Debugger. Role guidance
15
17
 
16
- Load this before drafting. These are the failure modes that separate strong role output from weak role output check your draft against each.
18
+ Load this before drafting. These are the failure modes that separate strong role output from weak role output. check your draft against each.
17
19
 
18
20
 
19
21
  ### 1. Fixing the symptom
@@ -63,6 +65,6 @@ Load this before drafting. These are the failure modes that separate strong role
63
65
  - [ ] Failure reproduced locally and reproduction preserved as a test
64
66
  - [ ] No speculative logs, retries, or sleeps in the fix
65
67
  - [ ] Earliest anomaly in the log is the starting point
66
- - [ ] Diff is narrow fix only, no drive-bys
68
+ - [ ] Diff is narrow. fix only, no drive-bys
67
69
  - [ ] Intermittent failures investigated, not shelved
68
70
  - [ ] Regression test added alongside the fix
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/designer.accessibility.md Anti-pattern guidance for the Designer.accessibility (accessibility) role.
2
+ skills/roles/designer.accessibility.md. Anti-pattern guidance for the Designer.accessibility (accessibility) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the designer.accessibility (accessibility) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-accessibility.
9
9
  role: designer.accessibility
10
10
  applies_to: [cx-accessibility]
11
11
  inherits: designer
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Accessibility Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/designer.md Anti-pattern guidance for the Designer role.
2
+ skills/roles/designer.md. Anti-pattern guidance for the Designer role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the designer domain and counter-moves to avoid them.
@@ -9,15 +9,17 @@ Applies to: cx-designer, cx-accessibility.
9
9
  role: designer
10
10
  applies_to: [cx-designer, cx-accessibility]
11
11
  inherits: null
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
- # Designer Role guidance
16
+ # Designer. Role guidance
15
17
 
16
- Load this before drafting. These are the failure modes that separate strong role output from weak role output check your draft against each.
18
+ Load this before drafting. These are the failure modes that separate strong role output from weak role output. check your draft against each.
17
19
 
18
20
 
19
21
  ### 1. Template defaults
20
- **Symptom**: the design looks like an unmodified Tailwind, shadcn, or Material page centered hero, gradient blob, uniform card grid, one accent color.
22
+ **Symptom**: the design looks like an unmodified Tailwind, shadcn, or Material page. centered hero, gradient blob, uniform card grid, one accent color.
21
23
  **Why it fails**: nothing about the output communicates product intent. It could be any app.
22
24
  **Counter-move**: pick an explicit visual direction before designing. Commit to typography, color, and layout choices specific to the product.
23
25
 
@@ -39,12 +41,12 @@ Load this before drafting. These are the failure modes that separate strong role
39
41
  ### 5. Uniform emphasis
40
42
  **Symptom**: every card, section, and action is rendered at the same visual weight.
41
43
  **Why it fails**: the user cannot tell what matters. Attention fails; scanning fails.
42
- **Counter-move**: use hierarchy scale, weight, color, spacing to express importance. One primary action per view.
44
+ **Counter-move**: use hierarchy. scale, weight, color, spacing. to express importance. One primary action per view.
43
45
 
44
46
  ### 6. Motion for motion's sake
45
47
  **Symptom**: decorative transitions, parallax, and animated backgrounds that do not clarify flow or state.
46
48
  **Why it fails**: slows the interaction, distracts from content, fails reduced-motion preferences.
47
- **Counter-move**: motion should clarify state change, origin-destination, or loading progress. Respect `prefers-reduced-motion`.
49
+ **Counter-move**: motion should clarify. state change, origin-destination, or loading progress. Respect `prefers-reduced-motion`.
48
50
 
49
51
  ### 7. Desktop-first, responsive later
50
52
  **Symptom**: the design is mocked at 1440, then "responsive breakpoints" are annotated as an afterthought.
@@ -54,7 +56,7 @@ Load this before drafting. These are the failure modes that separate strong role
54
56
  ### 8. Invisible system
55
57
  **Symptom**: every screen reinvents spacing, radius, shadow, and color values.
56
58
  **Why it fails**: the product feels inconsistent even when individual screens are fine. Engineering cannot implement cleanly.
57
- **Counter-move**: name the tokens space, color, type, radius, motion before designing. Use them.
59
+ **Counter-move**: name the tokens. space, color, type, radius, motion. before designing. Use them.
58
60
 
59
61
  ## Self-check before shipping
60
62
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/engineer.ai.md Anti-pattern guidance for the Engineer.ai (ai) role.
2
+ skills/roles/engineer.ai.md. Anti-pattern guidance for the Engineer.ai (ai) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the engineer.ai (ai) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-ai-engineer.
9
9
  role: engineer.ai
10
10
  applies_to: [cx-ai-engineer]
11
11
  inherits: engineer
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # AI Engineer Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/engineer.data.md Anti-pattern guidance for the Engineer.data (data) role.
2
+ skills/roles/engineer.data.md. Anti-pattern guidance for the Engineer.data (data) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the engineer.data (data) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-data-engineer.
9
9
  role: engineer.data
10
10
  applies_to: [cx-data-engineer]
11
11
  inherits: engineer
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Data Engineer Overlay
15
17
 
@@ -24,7 +26,7 @@ Additional failure modes on top of the engineer core.
24
26
  ### 2. No idempotency
25
27
  **Symptom**: re-running a job produces duplicates, double-counts, or partial-write corruption.
26
28
  **Why it fails**: every retry or backfill becomes a data cleanup event. Oncall pages multiply.
27
- **Counter-move**: design writes to be idempotent upsert on natural key, or tag by run-id and replace.
29
+ **Counter-move**: design writes to be idempotent. upsert on natural key, or tag by run-id and replace.
28
30
 
29
31
  ### 3. Silent data loss
30
32
  **Symptom**: ETL rows that fail validation get logged and dropped.
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/engineer.md Anti-pattern guidance for the Engineer role.
2
+ skills/roles/engineer.md. Anti-pattern guidance for the Engineer role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the engineer domain and counter-moves to avoid them.
@@ -9,11 +9,13 @@ Applies to: cx-engineer, cx-ai-engineer, cx-data-engineer, cx-platform-engineer.
9
9
  role: engineer
10
10
  applies_to: [cx-engineer, cx-ai-engineer, cx-data-engineer, cx-platform-engineer]
11
11
  inherits: null
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
- # Engineer Role guidance
16
+ # Engineer. Role guidance
15
17
 
16
- Load this before drafting. These are the failure modes that separate strong role output from weak role output check your draft against each.
18
+ Load this before drafting. These are the failure modes that separate strong role output from weak role output. check your draft against each.
17
19
 
18
20
 
19
21
  ### 1. Writing before reading
@@ -57,7 +59,7 @@ Load this before drafting. These are the failure modes that separate strong role
57
59
  **Counter-move**: explain the cause in one sentence before writing the fix. If you cannot, keep investigating.
58
60
 
59
61
  ### 9. Ignoring the diff
60
- **Symptom**: the change includes unrelated edits formatting churn, drive-by renames, comment cleanups.
62
+ **Symptom**: the change includes unrelated edits. formatting churn, drive-by renames, comment cleanups.
61
63
  **Why it fails**: drowns the real change in noise; reviewers cannot separate intent from accident.
62
64
  **Counter-move**: one change per commit. Keep the diff narrow. Bank the drive-bys for a separate PR.
63
65
 
@@ -68,7 +70,7 @@ Load this before drafting. These are the failure modes that separate strong role
68
70
 
69
71
  ### 11. Unbounded file reads
70
72
  **Symptom**: reading files with large `limit` values without checking size first, or offset reads that fail with "out of range".
71
- **Why it fails**: wastes context, and the failure reveals the file was smaller than assumed a signal that the reading strategy was guess-driven.
73
+ **Why it fails**: wastes context, and the failure reveals the file was smaller than assumed. a signal that the reading strategy was guess-driven.
72
74
  **Counter-move**: before any `Read` over 200 lines, probe with `Glob`, `wc -l`, or a `limit: 50` read. Then request the right range.
73
75
 
74
76
  ## Self-check before shipping
@@ -84,15 +86,15 @@ Load this before drafting. These are the failure modes that separate strong role
84
86
  - [ ] No more than two consecutive thinking turns about the same decision without a tool call or input
85
87
  - [ ] Any `Read` over 200 lines was preceded by a size probe
86
88
 
87
- ## Hard release gates (blocking, run locally never push and pray)
89
+ ## Hard release gates (blocking, run locally. never push and pray)
88
90
 
89
91
  Run all four before declaring work done. CI is a backstop, not the primary gate. See `rules/common/release-gates.md`.
90
92
 
91
- - [ ] `npm test` 0 failed
92
- - [ ] `node bin/construct lint:comments` 0 errors AND 0 warnings
93
- - [ ] `node bin/construct docs:verify` all checks passed, no warnings
94
- - [ ] `node bin/construct docs:update --check` AUTO regions clean
95
- - [ ] `npm run lint:templates` commit subjects + PR body match templates
93
+ - [ ] `npm test`. 0 failed
94
+ - [ ] `node bin/construct lint:comments`. 0 errors AND 0 warnings
95
+ - [ ] `node bin/construct docs:verify`. all checks passed, no warnings
96
+ - [ ] `node bin/construct docs:update --check`. AUTO regions clean
97
+ - [ ] `npm run lint:templates`. commit subjects + PR body match templates
96
98
 
97
99
  Shortcut: `npm run release:check`.
98
100
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/engineer.platform.md Anti-pattern guidance for the Engineer.platform (platform) role.
2
+ skills/roles/engineer.platform.md. Anti-pattern guidance for the Engineer.platform (platform) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the engineer.platform (platform) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-platform-engineer.
9
9
  role: engineer.platform
10
10
  applies_to: [cx-platform-engineer]
11
11
  inherits: engineer
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Platform Engineer Overlay
15
17
 
@@ -38,7 +40,7 @@ Additional failure modes on top of the engineer core.
38
40
 
39
41
  ### 5. Security as afterthought
40
42
  **Symptom**: CI secrets in plaintext env, broad GitHub tokens, no SBOM, no dependency audit in the pipeline.
41
- **Why it fails**: platform surface area compounds blast radius one leaked token touches every repo.
43
+ **Why it fails**: platform surface area compounds blast radius. one leaked token touches every repo.
42
44
  **Counter-move**: treat platform secrets as production secrets. Rotate, scope-minimize, and audit.
43
45
 
44
46
  ## Self-check before shipping
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/operator.docs.md Anti-pattern guidance for the Operator.docs (docs) role.
2
+ skills/roles/operator.docs.md. Anti-pattern guidance for the Operator.docs (docs) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the operator.docs (docs) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-docs-keeper.
9
9
  role: operator.docs
10
10
  applies_to: [cx-docs-keeper]
11
11
  inherits: operator
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Docs Keeper Overlay
15
17
 
@@ -18,11 +20,11 @@ Additional failure modes on top of the operator core.
18
20
 
19
21
  ### 1. Docs as write-once artifacts
20
22
  **Symptom**: a decision record or runbook is created, then never revisited as the system evolves.
21
- **Why it fails**: stale docs are worse than no docs they mislead with authority.
23
+ **Why it fails**: stale docs are worse than no docs. they mislead with authority.
22
24
  **Counter-move**: every doc has a `last-reviewed` date. Flag anything older than the agreed review cadence.
23
25
 
24
26
  ### 2. Parallel sources of truth
25
- **Symptom**: the same concept explained in README, wiki, CLAUDE.md, and onboarding deck all slightly different.
27
+ **Symptom**: the same concept explained in README, wiki, CLAUDE.md, and onboarding deck. all slightly different.
26
28
  **Why it fails**: readers find one, act on it, hit contradictions later; trust erodes.
27
29
  **Counter-move**: one canonical source per concept. Link to it from all surfaces.
28
30
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/operator.md Anti-pattern guidance for the Operator role.
2
+ skills/roles/operator.md. Anti-pattern guidance for the Operator role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the operator domain and counter-moves to avoid them.
@@ -9,11 +9,13 @@ Applies to: cx-sre, cx-operations, cx-release-manager, cx-docs-keeper.
9
9
  role: operator
10
10
  applies_to: [cx-sre, cx-operations, cx-release-manager, cx-docs-keeper]
11
11
  inherits: null
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
- # Operator Role guidance
16
+ # Operator. Role guidance
15
17
 
16
- Load this before producing operator output SRE, ops, release, and durable-knowledge work.
18
+ Load this before producing operator output. SRE, ops, release, and durable-knowledge work.
17
19
 
18
20
 
19
21
  ### 1. Runbook by incantation
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/operator.release.md Anti-pattern guidance for the Operator.release (release) role.
2
+ skills/roles/operator.release.md. Anti-pattern guidance for the Operator.release (release) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the operator.release (release) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-release-manager.
9
9
  role: operator.release
10
10
  applies_to: [cx-release-manager]
11
11
  inherits: operator
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Release Manager Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/operator.sre.md Anti-pattern guidance for the Operator.sre (sre) role.
2
+ skills/roles/operator.sre.md. Anti-pattern guidance for the Operator.sre (sre) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the operator.sre (sre) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-sre.
9
9
  role: operator.sre
10
10
  applies_to: [cx-sre]
11
11
  inherits: operator
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # SRE Overlay
15
17
 
@@ -24,7 +26,7 @@ Additional failure modes on top of the operator core.
24
26
  ### 2. SLOs without error budgets
25
27
  **Symptom**: publishing an SLO (e.g., 99.9% availability) with no policy for what happens when it's breached.
26
28
  **Why it fails**: the SLO becomes decorative; feature work continues to burn reliability.
27
- **Counter-move**: define the error budget policy up front what freezes, who's notified, when it resumes.
29
+ **Counter-move**: define the error budget policy up front. what freezes, who's notified, when it resumes.
28
30
 
29
31
  ### 3. Dashboards of everything
30
32
  **Symptom**: 40-panel dashboards covering every metric the team could expose.
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/orchestrator.md Anti-pattern guidance for the Orchestrator role.
2
+ skills/roles/orchestrator.md. Anti-pattern guidance for the Orchestrator role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the orchestrator domain and counter-moves to avoid them.
@@ -9,9 +9,11 @@ Applies to: cx-orchestrator.
9
9
  role: orchestrator
10
10
  applies_to: [cx-orchestrator]
11
11
  inherits: null
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
- # Orchestrator Role guidance
16
+ # Orchestrator. Role guidance
15
17
 
16
18
  Use this as a fast dispatch checklist before producing orchestration output.
17
19
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/product-manager.ai-product.md Anti-pattern guidance for the Product-manager.ai-product (ai product) role.
2
+ skills/roles/product-manager.ai-product.md. Anti-pattern guidance for the Product-manager.ai-product (ai product) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the product-manager.ai-product (ai product) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-product-manager.
9
9
  role: product-manager.ai-product
10
10
  applies_to: [cx-product-manager]
11
11
  inherits: product-manager
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # AI Product PM Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/product-manager.business-strategy.md Anti-pattern guidance for the Product-manager.business-strategy (business strategy) role.
2
+ skills/roles/product-manager.business-strategy.md. Anti-pattern guidance for the Product-manager.business-strategy (business strategy) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the product-manager.business-strategy (business strategy) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-business-strategist.
9
9
  role: product-manager.business-strategy
10
10
  applies_to: [cx-business-strategist]
11
11
  inherits: product-manager
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Business Strategy Overlay
15
17
 
@@ -1,5 +1,5 @@
1
1
  <!--
2
- skills/roles/product-manager.enterprise.md Anti-pattern guidance for the Product-manager.enterprise (enterprise) role.
2
+ skills/roles/product-manager.enterprise.md. Anti-pattern guidance for the Product-manager.enterprise (enterprise) role.
3
3
 
4
4
  Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
5
5
  Covers common failure modes for the product-manager.enterprise (enterprise) domain and counter-moves to avoid them.
@@ -9,7 +9,9 @@ Applies to: cx-product-manager.
9
9
  role: product-manager.enterprise
10
10
  applies_to: [cx-product-manager]
11
11
  inherits: product-manager
12
- version: 1
12
+ version: 2
13
+ profiles: [rnd]
14
+ cap: 1
13
15
  ---
14
16
  # Enterprise PM Overlay
15
17