@geraldmaron/construct 1.0.12 → 1.0.15
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.
- package/README.md +14 -2
- package/bin/construct +262 -14
- package/bin/construct-postinstall.mjs +23 -2
- package/commands/build/feature.md +0 -6
- package/commands/build/fix.md +0 -6
- package/commands/design/access.md +0 -6
- package/commands/design/flow.md +0 -6
- package/commands/design/ui.md +0 -6
- package/commands/measure/experiment.md +0 -6
- package/commands/measure/metrics.md +0 -6
- package/commands/measure/results.md +0 -6
- package/commands/plan/api.md +0 -6
- package/commands/plan/challenge.md +0 -6
- package/commands/plan/decide.md +0 -6
- package/commands/plan/feature.md +0 -7
- package/commands/plan/requirements.md +0 -6
- package/commands/remember/context.md +0 -6
- package/commands/remember/handoff.md +0 -6
- package/commands/remember/runbook.md +0 -6
- package/commands/review/code.md +0 -6
- package/commands/review/quality.md +0 -6
- package/commands/review/security.md +0 -6
- package/commands/ship/ready.md +0 -6
- package/commands/ship/release.md +0 -6
- package/commands/ship/status.md +0 -6
- package/commands/understand/docs.md +0 -6
- package/commands/understand/research.md +0 -6
- package/commands/understand/this.md +0 -6
- package/commands/understand/why.md +0 -6
- package/commands/work/clean.md +0 -6
- package/commands/work/drive.md +0 -6
- package/commands/work/optimize-prompts.md +0 -6
- package/commands/work/parallel-review.md +0 -6
- package/lib/auto-docs.mjs +11 -7
- package/lib/beads-client.mjs +19 -1
- package/lib/comment-lint.mjs +5 -1
- package/lib/context-state.mjs +15 -3
- package/lib/contracts/validate.mjs +54 -10
- package/lib/contracts/violation-log.mjs +154 -0
- package/lib/dashboard-static.mjs +7 -4
- package/lib/doc-stamp.mjs +16 -0
- package/lib/docs-verify.mjs +1 -8
- package/lib/doctor/watchers/bd-watch.mjs +6 -2
- package/lib/document-extract/docling-client.mjs +114 -0
- package/lib/document-extract/docling-sidecar.py +122 -0
- package/lib/document-extract/whisper-client.mjs +79 -0
- package/lib/document-extract.mjs +73 -8
- package/lib/document-ingest.mjs +26 -4
- package/lib/embed/daemon.mjs +26 -1
- package/lib/embed/docs-lifecycle.mjs +19 -0
- package/lib/embed/inbox.mjs +85 -2
- package/lib/embed/recommendation-store.mjs +29 -0
- package/lib/flavors/loader.mjs +1 -1
- package/lib/gates-audit.mjs +18 -12
- package/lib/handoffs/contract.mjs +2 -2
- package/lib/hooks/_lib/input.mjs +52 -0
- package/lib/hooks/adaptive-lint.mjs +4 -0
- package/lib/hooks/agent-tracker.mjs +59 -15
- package/lib/hooks/audit-reads.mjs +83 -42
- package/lib/hooks/audit-trail.mjs +28 -18
- package/lib/hooks/bash-output-logger.mjs +8 -2
- package/lib/hooks/block-no-verify.mjs +4 -0
- package/lib/hooks/ci-status-check.mjs +4 -0
- package/lib/hooks/comment-lint.mjs +6 -4
- package/lib/hooks/config-protection.mjs +4 -0
- package/lib/hooks/context-watch.mjs +4 -0
- package/lib/hooks/context-window-recovery.mjs +4 -0
- package/lib/hooks/dep-audit.mjs +12 -5
- package/lib/hooks/doc-coupling-check.mjs +5 -1
- package/lib/hooks/edit-accumulator.mjs +25 -10
- package/lib/hooks/edit-error-recovery.mjs +4 -0
- package/lib/hooks/edit-guard.mjs +4 -0
- package/lib/hooks/guard-bash.mjs +4 -0
- package/lib/hooks/mcp-audit.mjs +4 -0
- package/lib/hooks/mcp-health-check.mjs +4 -0
- package/lib/hooks/model-fallback.mjs +7 -11
- package/lib/hooks/policy-engine.mjs +4 -0
- package/lib/hooks/post-merge-docs-check.mjs +4 -0
- package/lib/hooks/post-merge-tracking.mjs +82 -0
- package/lib/hooks/pre-compact.mjs +4 -0
- package/lib/hooks/pre-push-gate.mjs +84 -231
- package/lib/hooks/proactive-activation.mjs +5 -2
- package/lib/hooks/readme-age-check.mjs +4 -0
- package/lib/hooks/registry-sync.mjs +35 -20
- package/lib/hooks/rule-verifier.mjs +3 -0
- package/lib/hooks/scan-secrets.mjs +4 -0
- package/lib/hooks/session-optimize.mjs +4 -0
- package/lib/hooks/session-reflect.mjs +4 -0
- package/lib/hooks/session-start.mjs +49 -2
- package/lib/hooks/session-tracking-refresh.mjs +70 -0
- package/lib/hooks/stop-notify.mjs +13 -2
- package/lib/hooks/stop-typecheck.mjs +4 -0
- package/lib/hooks/test-watch.mjs +8 -4
- package/lib/ingest/chunker.mjs +94 -0
- package/lib/ingest/pipeline.mjs +53 -0
- package/lib/ingest/store.mjs +82 -0
- package/lib/init-unified.mjs +90 -23
- package/lib/intake/attribution.mjs +77 -0
- package/lib/intake/intake-config.mjs +3 -0
- package/lib/intake/manifest.mjs +107 -0
- package/lib/intake/poll-lock.mjs +136 -0
- package/lib/intake/prepare.mjs +42 -4
- package/lib/knowledge/search.mjs +12 -0
- package/lib/logging/rotate.mjs +394 -0
- package/lib/mcp/server.mjs +142 -1
- package/lib/mcp/tools/project.mjs +2 -2
- package/lib/mcp/tools/skills.mjs +6 -3
- package/lib/mcp/tools/telemetry.mjs +1 -1
- package/lib/mcp/tools/workflow.mjs +6 -2
- package/lib/observation-store.mjs +14 -5
- package/lib/ollama-manager.mjs +32 -28
- package/lib/opencode-config.mjs +10 -3
- package/lib/orchestration/routing-tables.mjs +176 -0
- package/lib/orchestration-policy.mjs +18 -106
- package/lib/parity.mjs +48 -7
- package/lib/profiles/lifecycle.mjs +19 -1
- package/lib/project-init-shared.mjs +11 -5
- package/lib/project-root.mjs +104 -0
- package/lib/prompt-composer.js +11 -1
- package/lib/roles/catalog.mjs +1 -1
- package/lib/roles/event-bus.mjs +29 -9
- package/lib/roles/router.mjs +8 -7
- package/lib/runtime/uv-bootstrap.mjs +129 -0
- package/lib/runtime/whisper-bootstrap.mjs +102 -0
- package/lib/server/index.mjs +53 -10
- package/lib/server/static/index.html +1 -15
- package/lib/specialists/postconditions.mjs +1 -1
- package/lib/status.mjs +1 -1
- package/lib/storage/backup.mjs +2 -2
- package/lib/sync/skill-frontmatter.mjs +113 -21
- package/lib/telemetry/intent-verifications.mjs +16 -3
- package/lib/telemetry/skill-calls.mjs +12 -3
- package/lib/tracking-surfaces.mjs +377 -0
- package/lib/validators/skills.mjs +86 -54
- package/lib/worker/trace.mjs +19 -2
- package/package.json +10 -6
- package/personas/construct.md +4 -7
- package/platforms/claude/settings.template.json +29 -28
- package/rules/common/beads-hygiene.md +3 -9
- package/rules/common/code-review.md +3 -6
- package/rules/common/coding-style.md +3 -6
- package/rules/common/comments.md +3 -7
- package/rules/common/commit-approval.md +3 -6
- package/rules/common/cx-agent-routing.md +3 -7
- package/rules/common/cx-skill-routing.md +3 -3
- package/rules/common/doc-ownership.md +3 -8
- package/rules/common/efficiency.md +3 -8
- package/rules/common/framing.md +3 -8
- package/rules/common/git-workflow.md +3 -5
- package/rules/common/no-fabrication.md +4 -12
- package/rules/common/patterns.md +3 -5
- package/rules/common/release-gates.md +3 -8
- package/rules/common/research.md +3 -8
- package/rules/common/review-before-change.md +3 -9
- package/rules/common/security.md +3 -6
- package/rules/common/skill-composition.md +3 -7
- package/rules/common/testing.md +3 -6
- package/rules/golang/coding-style.md +1 -5
- package/rules/golang/hooks.md +1 -5
- package/rules/golang/patterns.md +1 -5
- package/rules/golang/security.md +1 -5
- package/rules/golang/testing.md +1 -5
- package/rules/python/coding-style.md +1 -5
- package/rules/python/hooks.md +1 -5
- package/rules/python/patterns.md +1 -5
- package/rules/python/security.md +1 -5
- package/rules/python/testing.md +1 -5
- package/rules/swift/coding-style.md +1 -5
- package/rules/swift/hooks.md +1 -5
- package/rules/swift/patterns.md +1 -5
- package/rules/swift/security.md +1 -5
- package/rules/swift/testing.md +1 -5
- package/rules/typescript/coding-style.md +1 -5
- package/rules/typescript/hooks.md +1 -5
- package/rules/typescript/patterns.md +1 -5
- package/rules/typescript/security.md +1 -5
- package/rules/typescript/testing.md +1 -5
- package/rules/web/coding-style.md +3 -5
- package/rules/web/design-quality.md +3 -5
- package/rules/web/hooks.md +3 -5
- package/rules/web/patterns.md +3 -5
- package/rules/web/performance.md +3 -5
- package/rules/web/security.md +3 -5
- package/rules/web/testing.md +3 -5
- package/scripts/sync-specialists.mjs +269 -75
- package/skills/ai/agent-dev.md +4 -5
- package/skills/ai/llm-security.md +4 -5
- package/skills/ai/ml-ops.md +4 -5
- package/skills/ai/orchestration-workflow.md +4 -5
- package/skills/ai/prompt-and-eval.md +4 -5
- package/skills/ai/prompt-optimizer.md +4 -6
- package/skills/ai/rag-system.md +4 -5
- package/skills/architecture/api-design.md +4 -5
- package/skills/architecture/caching.md +4 -5
- package/skills/architecture/cloud-native.md +4 -5
- package/skills/architecture/message-queue.md +4 -5
- package/skills/architecture/security-arch.md +4 -5
- package/skills/compliance/ai-disclosure.md +4 -5
- package/skills/compliance/data-privacy.md +4 -5
- package/skills/compliance/license-audit.md +4 -5
- package/skills/compliance/regulatory-review.md +4 -5
- package/skills/development/cpp.md +4 -5
- package/skills/development/go.md +4 -5
- package/skills/development/java.md +4 -5
- package/skills/development/kotlin.md +4 -5
- package/skills/development/mobile-crossplatform.md +4 -5
- package/skills/development/python.md +4 -5
- package/skills/development/rust.md +4 -5
- package/skills/development/shell.md +4 -5
- package/skills/development/swift.md +4 -5
- package/skills/development/typescript.md +4 -5
- package/skills/devops/ci-cd.md +4 -5
- package/skills/devops/containerization.md +4 -5
- package/skills/devops/cost-optimization.md +4 -5
- package/skills/devops/data-engineering.md +4 -5
- package/skills/devops/database.md +4 -5
- package/skills/devops/dependency-management.md +4 -5
- package/skills/devops/devsecops.md +4 -5
- package/skills/devops/git-workflow.md +4 -5
- package/skills/devops/incident-response.md +4 -5
- package/skills/devops/monorepo.md +4 -5
- package/skills/devops/observability.md +4 -5
- package/skills/devops/performance.md +4 -5
- package/skills/devops/testing.md +4 -5
- package/skills/docs/adr-workflow.md +4 -7
- package/skills/docs/backlog-proposal-workflow.md +4 -3
- package/skills/docs/customer-profile-workflow.md +4 -3
- package/skills/docs/document-ingest-workflow.md +4 -3
- package/skills/docs/evidence-ingest-workflow.md +4 -3
- package/skills/docs/init-docs.md +4 -5
- package/skills/docs/init-project.md +4 -5
- package/skills/docs/prd-workflow.md +4 -7
- package/skills/docs/prfaq-workflow.md +4 -3
- package/skills/docs/product-intelligence-review.md +4 -3
- package/skills/docs/product-intelligence-workflow.md +4 -6
- package/skills/docs/product-signal-workflow.md +4 -5
- package/skills/docs/research-workflow.md +4 -5
- package/skills/docs/runbook-workflow.md +4 -5
- package/skills/docs/strategy-workflow.md +4 -5
- package/skills/exploration/dependency-graph-reading.md +4 -7
- package/skills/exploration/repo-map.md +4 -5
- package/skills/exploration/tracer-bullet-method.md +4 -7
- package/skills/exploration/unknown-codebase-onboarding.md +4 -7
- package/skills/frameworks/django.md +4 -5
- package/skills/frameworks/nextjs.md +4 -5
- package/skills/frameworks/react.md +4 -5
- package/skills/frameworks/spring-boot.md +4 -5
- package/skills/frontend-design/accessibility.md +4 -5
- package/skills/frontend-design/component-patterns.md +4 -5
- package/skills/frontend-design/engineering.md +4 -5
- package/skills/frontend-design/state-management.md +4 -5
- package/skills/frontend-design/ui-aesthetics.md +4 -5
- package/skills/frontend-design/ux-principles.md +4 -5
- package/skills/operating/change-management.md +4 -8
- package/skills/operating/incident-response.md +4 -8
- package/skills/operating/oncall-rotation.md +4 -7
- package/skills/operating/orchestration-reference.md +4 -10
- package/skills/quality-gates/review-work.md +4 -5
- package/skills/quality-gates/verify-change.md +4 -5
- package/skills/quality-gates/verify-module.md +4 -5
- package/skills/quality-gates/verify-quality.md +4 -5
- package/skills/quality-gates/verify-security.md +4 -5
- package/skills/roles/architect.ai-systems.md +6 -9
- package/skills/roles/architect.data.md +6 -9
- package/skills/roles/architect.enterprise.md +6 -9
- package/skills/roles/architect.integration.md +6 -9
- package/skills/roles/architect.md +7 -14
- package/skills/roles/architect.platform.md +6 -9
- package/skills/roles/data-analyst.experiment.md +6 -9
- package/skills/roles/data-analyst.md +6 -9
- package/skills/roles/data-analyst.product-intelligence.md +7 -9
- package/skills/roles/data-analyst.product.md +6 -9
- package/skills/roles/data-analyst.telemetry.md +7 -9
- package/skills/roles/data-engineer.pipeline.md +6 -9
- package/skills/roles/data-engineer.vector-retrieval.md +7 -9
- package/skills/roles/data-engineer.warehouse.md +6 -9
- package/skills/roles/debugger.md +6 -9
- package/skills/roles/designer.accessibility.md +6 -9
- package/skills/roles/designer.md +7 -9
- package/skills/roles/engineer.ai.md +6 -9
- package/skills/roles/engineer.data.md +6 -9
- package/skills/roles/engineer.md +9 -9
- package/skills/roles/engineer.platform.md +6 -9
- package/skills/roles/operator.docs.md +6 -9
- package/skills/roles/operator.md +9 -9
- package/skills/roles/operator.release.md +6 -9
- package/skills/roles/operator.sre.md +6 -9
- package/skills/roles/orchestrator.md +6 -9
- package/skills/roles/product-manager.ai-product.md +6 -9
- package/skills/roles/product-manager.business-strategy.md +6 -9
- package/skills/roles/product-manager.enterprise.md +6 -9
- package/skills/roles/product-manager.growth.md +7 -9
- package/skills/roles/product-manager.md +7 -9
- package/skills/roles/product-manager.platform.md +6 -9
- package/skills/roles/product-manager.product.md +6 -9
- package/skills/roles/qa.ai-eval.md +8 -9
- package/skills/roles/qa.api-contract.md +7 -9
- package/skills/roles/qa.data-pipeline.md +7 -9
- package/skills/roles/qa.md +7 -9
- package/skills/roles/qa.test-automation.md +6 -9
- package/skills/roles/qa.web-ui.md +7 -9
- package/skills/roles/researcher.explorer.md +6 -9
- package/skills/roles/researcher.md +8 -9
- package/skills/roles/researcher.ux.md +6 -9
- package/skills/roles/reviewer.devil-advocate.md +6 -9
- package/skills/roles/reviewer.evaluator.md +6 -9
- package/skills/roles/reviewer.md +9 -9
- package/skills/roles/reviewer.trace.md +6 -9
- package/skills/roles/security.ai.md +7 -9
- package/skills/roles/security.appsec.md +6 -9
- package/skills/roles/security.cloud.md +6 -9
- package/skills/roles/security.legal-compliance.md +6 -9
- package/skills/roles/security.md +7 -9
- package/skills/roles/security.privacy.md +7 -9
- package/skills/roles/security.supply-chain.md +7 -9
- package/skills/security/blue-team.md +4 -5
- package/skills/security/code-audit.md +4 -5
- package/skills/security/pentest.md +4 -5
- package/skills/security/red-team.md +4 -5
- package/skills/security/threat-intel.md +4 -5
- package/skills/security/vuln-research.md +4 -5
- package/skills/strategy/competitive-landscape.md +4 -8
- package/skills/strategy/market-research-methods.md +4 -8
- package/skills/strategy/narrative-arc.md +4 -8
- package/skills/strategy/pricing-positioning.md +4 -8
- package/skills/utility/clean-code.md +4 -5
- package/specialists/policy-inventory.json +14 -0
- package/specialists/registry.json +158 -13
- package/lib/hooks/env-check.mjs +0 -83
- package/lib/hooks/read-tracker.mjs +0 -61
- package/lib/policy/unified-gates.mjs +0 -96
- package/lib/server/static/assets/index-ab25c707.js +0 -70
- package/lib/server/static/assets/index-f0c80a2b.css +0 -1
- package/lib/specialist-contracts-enforce.mjs +0 -158
- package/rules/common/agents.md +0 -28
- package/rules/common/development-workflow.md +0 -32
- package/rules/common/performance.md +0 -55
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/data-analyst.telemetry.md. Anti-pattern guidance for the Data-analyst.telemetry (telemetry) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the data-analyst.telemetry (telemetry) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-analyst, cx-sre.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-data-analyst-telemetry
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Data Analyst — Telemetry role. Use when reviewing or generating work by cx-data-analyst, cx-sre, or when an agent is acting in the Data Analyst — Telemetry role.
|
|
9
4
|
role: data-analyst.telemetry
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-analyst
|
|
7
|
+
- cx-sre
|
|
11
8
|
inherits: data-analyst
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# Telemetry Analyst Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/data-engineer.pipeline.md. Anti-pattern guidance for the Data-engineer.pipeline (pipeline) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the data-engineer.pipeline (pipeline) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-engineer.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-data-engineer-pipeline
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Data Engineer — Pipeline role. Use when reviewing or generating work by cx-data-engineer, or when an agent is acting in the Data Engineer — Pipeline role.
|
|
9
4
|
role: data-engineer.pipeline
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-engineer
|
|
11
7
|
inherits: engineer.data
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Data Pipeline Engineer Overlay
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/data-engineer.vector-retrieval.md. Anti-pattern guidance for the Data-engineer.vector-retrieval (vector retrieval) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the data-engineer.vector-retrieval (vector retrieval) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-engineer, cx-ai-engineer.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-data-engineer-vector-retrieval
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Data Engineer — Vector Retrieval role. Use when reviewing or generating work by cx-data-engineer, cx-ai-engineer, or when an agent is acting in the Data Engineer — Vector Retrieval role.
|
|
9
4
|
role: data-engineer.vector-retrieval
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-engineer
|
|
7
|
+
- cx-ai-engineer
|
|
11
8
|
inherits: engineer.data
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# Vector Retrieval Engineer Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/data-engineer.warehouse.md. Anti-pattern guidance for the Data-engineer.warehouse (warehouse) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the data-engineer.warehouse (warehouse) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-engineer.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-data-engineer-warehouse
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Data Engineer — Warehouse role. Use when reviewing or generating work by cx-data-engineer, or when an agent is acting in the Data Engineer — Warehouse role.
|
|
9
4
|
role: data-engineer.warehouse
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-engineer
|
|
11
7
|
inherits: engineer.data
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Warehouse Engineer Overlay
|
package/skills/roles/debugger.md
CHANGED
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/debugger.md. Anti-pattern guidance for the Debugger role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the debugger domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-debugger.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-debugger
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Debugger role. Use when reviewing or generating work by cx-debugger, or when an agent is acting in the Debugger role.
|
|
9
4
|
role: debugger
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-debugger
|
|
11
7
|
inherits: null
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Debugger. Role guidance
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/designer.accessibility.md. Anti-pattern guidance for the Designer.accessibility (accessibility) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the designer.accessibility (accessibility) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-accessibility.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-designer-accessibility
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Designer — Accessibility role. Use when reviewing or generating work by cx-accessibility, or when an agent is acting in the Designer — Accessibility role.
|
|
9
4
|
role: designer.accessibility
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-accessibility
|
|
11
7
|
inherits: designer
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Accessibility Overlay
|
package/skills/roles/designer.md
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/designer.md. Anti-pattern guidance for the Designer role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the designer domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-designer, cx-accessibility.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-designer
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Designer role. Use when reviewing or generating work by cx-designer, cx-accessibility, or when an agent is acting in the Designer role.
|
|
9
4
|
role: designer
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-designer
|
|
7
|
+
- cx-accessibility
|
|
11
8
|
inherits: null
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# Designer. Role guidance
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/engineer.ai.md. Anti-pattern guidance for the Engineer.ai (ai) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the engineer.ai (ai) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-ai-engineer.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-engineer-ai
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Engineer — AI role. Use when reviewing or generating work by cx-ai-engineer, or when an agent is acting in the Engineer — AI role.
|
|
9
4
|
role: engineer.ai
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-ai-engineer
|
|
11
7
|
inherits: engineer
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# AI Engineer Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/engineer.data.md. Anti-pattern guidance for the Engineer.data (data) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the engineer.data (data) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-engineer.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-engineer-data
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Engineer — Data role. Use when reviewing or generating work by cx-data-engineer, or when an agent is acting in the Engineer — Data role.
|
|
9
4
|
role: engineer.data
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-engineer
|
|
11
7
|
inherits: engineer
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Data Engineer Overlay
|
package/skills/roles/engineer.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/engineer.md. Anti-pattern guidance for the Engineer role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the engineer domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-engineer, cx-ai-engineer, cx-data-engineer, cx-platform-engineer.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-engineer
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Engineer role. Use when reviewing or generating work by cx-engineer, cx-ai-engineer, cx-data-engineer, cx-platform-engineer, or when an agent is acting in the Engineer role.
|
|
9
4
|
role: engineer
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-engineer
|
|
7
|
+
- cx-ai-engineer
|
|
8
|
+
- cx-data-engineer
|
|
9
|
+
- cx-platform-engineer
|
|
11
10
|
inherits: null
|
|
12
11
|
version: 2
|
|
13
|
-
profiles:
|
|
12
|
+
profiles:
|
|
13
|
+
- rnd
|
|
14
14
|
cap: 1
|
|
15
15
|
---
|
|
16
16
|
# Engineer. Role guidance
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/engineer.platform.md. Anti-pattern guidance for the Engineer.platform (platform) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the engineer.platform (platform) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-platform-engineer.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-engineer-platform
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Engineer — Platform role. Use when reviewing or generating work by cx-platform-engineer, or when an agent is acting in the Engineer — Platform role.
|
|
9
4
|
role: engineer.platform
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-platform-engineer
|
|
11
7
|
inherits: engineer
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Platform Engineer Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/operator.docs.md. Anti-pattern guidance for the Operator.docs (docs) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the operator.docs (docs) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-docs-keeper.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-operator-docs
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Operator — Docs role. Use when reviewing or generating work by cx-docs-keeper, or when an agent is acting in the Operator — Docs role.
|
|
9
4
|
role: operator.docs
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-docs-keeper
|
|
11
7
|
inherits: operator
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Docs Keeper Overlay
|
package/skills/roles/operator.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/operator.md. Anti-pattern guidance for the Operator role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the operator domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-sre, cx-operations, cx-release-manager, cx-docs-keeper.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-operator
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Operator role. Use when reviewing or generating work by cx-sre, cx-operations, cx-release-manager, cx-docs-keeper, or when an agent is acting in the Operator role.
|
|
9
4
|
role: operator
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-sre
|
|
7
|
+
- cx-operations
|
|
8
|
+
- cx-release-manager
|
|
9
|
+
- cx-docs-keeper
|
|
11
10
|
inherits: null
|
|
12
11
|
version: 2
|
|
13
|
-
profiles:
|
|
12
|
+
profiles:
|
|
13
|
+
- rnd
|
|
14
14
|
cap: 1
|
|
15
15
|
---
|
|
16
16
|
# Operator. Role guidance
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/operator.release.md. Anti-pattern guidance for the Operator.release (release) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the operator.release (release) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-release-manager.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-operator-release
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Operator — Release role. Use when reviewing or generating work by cx-release-manager, or when an agent is acting in the Operator — Release role.
|
|
9
4
|
role: operator.release
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-release-manager
|
|
11
7
|
inherits: operator
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Release Manager Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/operator.sre.md. Anti-pattern guidance for the Operator.sre (sre) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the operator.sre (sre) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-sre.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-operator-sre
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Operator — SRE role. Use when reviewing or generating work by cx-sre, or when an agent is acting in the Operator — SRE role.
|
|
9
4
|
role: operator.sre
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-sre
|
|
11
7
|
inherits: operator
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# SRE Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/orchestrator.md. Anti-pattern guidance for the Orchestrator role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the orchestrator domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-orchestrator.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-orchestrator
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Orchestrator role. Use when reviewing or generating work by cx-orchestrator, or when an agent is acting in the Orchestrator role.
|
|
9
4
|
role: orchestrator
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-orchestrator
|
|
11
7
|
inherits: null
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Orchestrator. Role guidance
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/product-manager.ai-product.md. Anti-pattern guidance for the Product-manager.ai-product (ai product) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the product-manager.ai-product (ai product) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-product-manager.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-product-manager-ai-product
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Product Manager — AI Product role. Use when reviewing or generating work by cx-product-manager, or when an agent is acting in the Product Manager — AI Product role.
|
|
9
4
|
role: product-manager.ai-product
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-product-manager
|
|
11
7
|
inherits: product-manager
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# AI Product PM Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/product-manager.business-strategy.md. Anti-pattern guidance for the Product-manager.business-strategy (business strategy) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the product-manager.business-strategy (business strategy) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-business-strategist.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-product-manager-business-strategy
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Product Manager — Business Strategy role. Use when reviewing or generating work by cx-business-strategist, or when an agent is acting in the Product Manager — Business Strategy role.
|
|
9
4
|
role: product-manager.business-strategy
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-business-strategist
|
|
11
7
|
inherits: product-manager
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Business Strategy Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/product-manager.enterprise.md. Anti-pattern guidance for the Product-manager.enterprise (enterprise) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the product-manager.enterprise (enterprise) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-product-manager.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-product-manager-enterprise
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Product Manager — Enterprise role. Use when reviewing or generating work by cx-product-manager, or when an agent is acting in the Product Manager — Enterprise role.
|
|
9
4
|
role: product-manager.enterprise
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-product-manager
|
|
11
7
|
inherits: product-manager
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Enterprise PM Overlay
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/product-manager.growth.md. Anti-pattern guidance for the Product-manager.growth (growth) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the product-manager.growth (growth) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-product-manager, cx-business-strategist.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-product-manager-growth
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Product Manager — Growth role. Use when reviewing or generating work by cx-product-manager, cx-business-strategist, or when an agent is acting in the Product Manager — Growth role.
|
|
9
4
|
role: product-manager.growth
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-product-manager
|
|
7
|
+
- cx-business-strategist
|
|
11
8
|
inherits: product-manager
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# Growth PM Overlay
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/product-manager.md. Anti-pattern guidance for the Product-manager role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the product-manager domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-product-manager, cx-business-strategist.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-product-manager
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Product Manager role. Use when reviewing or generating work by cx-product-manager, cx-business-strategist, or when an agent is acting in the Product Manager role.
|
|
9
4
|
role: product-manager
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-product-manager
|
|
7
|
+
- cx-business-strategist
|
|
11
8
|
inherits: null
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# Product Manager. Role guidance
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/product-manager.platform.md. Anti-pattern guidance for the Product-manager.platform (platform) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the product-manager.platform (platform) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-product-manager.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-product-manager-platform
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Product Manager — Platform role. Use when reviewing or generating work by cx-product-manager, or when an agent is acting in the Product Manager — Platform role.
|
|
9
4
|
role: product-manager.platform
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-product-manager
|
|
11
7
|
inherits: product-manager
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Platform PM Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/product-manager.product.md. Anti-pattern guidance for the Product-manager.product (product) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the product-manager.product (product) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-product-manager.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-product-manager-product
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Product Manager — Product role. Use when reviewing or generating work by cx-product-manager, or when an agent is acting in the Product Manager — Product role.
|
|
9
4
|
role: product-manager.product
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-product-manager
|
|
11
7
|
inherits: product-manager
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Product PM Overlay
|
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/qa.ai-eval.md. Anti-pattern guidance for the Qa.ai-eval (ai eval) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the qa.ai-eval (ai eval) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-qa, cx-test-automation, cx-evaluator.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-qa-ai-eval
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the QA — AI Eval role. Use when reviewing or generating work by cx-qa, cx-test-automation, cx-evaluator, or when an agent is acting in the QA — AI Eval role.
|
|
9
4
|
role: qa.ai-eval
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-qa
|
|
7
|
+
- cx-test-automation
|
|
8
|
+
- cx-evaluator
|
|
11
9
|
inherits: qa
|
|
12
10
|
version: 2
|
|
13
|
-
profiles:
|
|
11
|
+
profiles:
|
|
12
|
+
- rnd
|
|
14
13
|
cap: 1
|
|
15
14
|
---
|
|
16
15
|
# AI Eval QA Overlay
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/qa.api-contract.md. Anti-pattern guidance for the Qa.api-contract (api contract) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the qa.api-contract (api contract) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-qa, cx-test-automation.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-qa-api-contract
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the QA — API Contract role. Use when reviewing or generating work by cx-qa, cx-test-automation, or when an agent is acting in the QA — API Contract role.
|
|
9
4
|
role: qa.api-contract
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-qa
|
|
7
|
+
- cx-test-automation
|
|
11
8
|
inherits: qa
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# API Contract QA Overlay
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/qa.data-pipeline.md. Anti-pattern guidance for the Qa.data-pipeline (data pipeline) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the qa.data-pipeline (data pipeline) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-qa, cx-test-automation.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-qa-data-pipeline
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the QA — Data Pipeline role. Use when reviewing or generating work by cx-qa, cx-test-automation, or when an agent is acting in the QA — Data Pipeline role.
|
|
9
4
|
role: qa.data-pipeline
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-qa
|
|
7
|
+
- cx-test-automation
|
|
11
8
|
inherits: qa
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# Data Pipeline QA Overlay
|
package/skills/roles/qa.md
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/qa.md. Anti-pattern guidance for the Qa role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the qa domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-qa, cx-test-automation.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-qa
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the QA role. Use when reviewing or generating work by cx-qa, cx-test-automation, or when an agent is acting in the QA role.
|
|
9
4
|
role: qa
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-qa
|
|
7
|
+
- cx-test-automation
|
|
11
8
|
inherits: null
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# QA. Role guidance
|