@geraldmaron/construct 1.0.14 → 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 +6 -0
- package/bin/construct +3 -3
- 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/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/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 +6 -1
- package/lib/flavors/loader.mjs +1 -1
- package/lib/handoffs/contract.mjs +2 -2
- package/lib/hooks/session-start.mjs +1 -1
- package/lib/ingest/chunker.mjs +94 -0
- package/lib/ingest/pipeline.mjs +53 -0
- package/lib/ingest/store.mjs +82 -0
- package/lib/knowledge/search.mjs +12 -0
- package/lib/mcp/server.mjs +142 -1
- package/lib/mcp/tools/skills.mjs +6 -3
- package/lib/mcp/tools/workflow.mjs +6 -2
- package/lib/observation-store.mjs +14 -5
- package/lib/ollama-manager.mjs +32 -28
- package/lib/prompt-composer.js +11 -1
- package/lib/runtime/uv-bootstrap.mjs +129 -0
- package/lib/runtime/whisper-bootstrap.mjs +102 -0
- package/lib/server/index.mjs +22 -1
- package/lib/server/static/index.html +1 -1
- package/lib/specialists/postconditions.mjs +1 -1
- package/lib/sync/skill-frontmatter.mjs +113 -21
- package/lib/tracking-surfaces.mjs +2 -0
- package/lib/validators/skills.mjs +86 -54
- package/package.json +5 -5
- package/personas/construct.md +4 -7
- package/platforms/claude/settings.template.json +1 -1
- 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/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/lib/specialist-contracts-enforce.mjs +0 -172
- package/rules/common/agents.md +0 -28
- package/rules/common/development-workflow.md +0 -32
- package/rules/common/performance.md +0 -55
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frameworks-django
|
|
3
|
+
description: Patterns, anti-patterns, and reference guidance for Django. Use when the task involves django.
|
|
4
|
+
---
|
|
6
5
|
# Django
|
|
7
6
|
|
|
8
7
|
## Project Structure
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frameworks-nextjs
|
|
3
|
+
description: Patterns, anti-patterns, and reference guidance for Next.js (App Router). Use when the task involves next.js (app router).
|
|
4
|
+
---
|
|
6
5
|
# Next.js (App Router)
|
|
7
6
|
|
|
8
7
|
## App Router Mental Model
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frameworks-react
|
|
3
|
+
description: "By default, components are **Server Components**: they run on the server, have no state, and can fetch data directly. Add `'use client'` only when you need interactivity, browser APIs, or hooks. Use when the task matches the trigger conditions described in the body."
|
|
4
|
+
---
|
|
6
5
|
# React
|
|
7
6
|
|
|
8
7
|
## Component Design
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frameworks-spring-boot
|
|
3
|
+
description: Patterns, anti-patterns, and reference guidance for Spring Boot. Use when the task involves spring boot.
|
|
4
|
+
---
|
|
6
5
|
# Spring Boot
|
|
7
6
|
|
|
8
7
|
## Project Structure
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frontend-design-accessibility
|
|
3
|
+
description: Target **WCAG 2.1 AA** as the minimum for any public-facing product. WCAG 2.2 AA is the current standard (published October 2023) and required by many regulatory frameworks (EU Web Accessibility Directive, ADA, Section 508). Use when the task matches the trigger conditions described in the body.
|
|
4
|
+
---
|
|
6
5
|
# Accessibility (WCAG 2.2 / Inclusive Design)
|
|
7
6
|
|
|
8
7
|
## Compliance Baseline
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frontend-design-component-patterns
|
|
3
|
+
description: Use this skill when designing component architecture, building design systems, or structuring reusable UI.
|
|
4
|
+
---
|
|
6
5
|
# Component Patterns
|
|
7
6
|
|
|
8
7
|
Use this skill when designing component architecture, building design systems, or structuring reusable UI.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frontend-design-engineering
|
|
3
|
+
description: Use this skill when working on build tooling, bundling, rendering strategies, or frontend infrastructure.
|
|
4
|
+
---
|
|
6
5
|
# Frontend Engineering
|
|
7
6
|
|
|
8
7
|
Use this skill when working on build tooling, bundling, rendering strategies, or frontend infrastructure.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frontend-design-state-management
|
|
3
|
+
description: Use this skill when choosing state management tools, structuring application state, or debugging state issues.
|
|
4
|
+
---
|
|
6
5
|
# Frontend State Management
|
|
7
6
|
|
|
8
7
|
Use this skill when choosing state management tools, structuring application state, or debugging state issues.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frontend-design-ui-aesthetics
|
|
3
|
+
description: "Use this skill when making visual design decisions: color, typography, layout, spacing, and visual hierarchy."
|
|
4
|
+
---
|
|
6
5
|
# UI Aesthetics
|
|
7
6
|
|
|
8
7
|
Use this skill when making visual design decisions: color, typography, layout, spacing, and visual hierarchy.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: frontend-design-ux-principles
|
|
3
|
+
description: Use this skill when designing user flows, evaluating usability, or planning information architecture.
|
|
4
|
+
---
|
|
6
5
|
# UX Principles
|
|
7
6
|
|
|
8
7
|
Use this skill when designing user flows, evaluating usability, or planning information architecture.
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Use when
|
|
4
|
-
|
|
5
|
-
Covers the Type 1 / Type 2 door framework, irreversibility analysis,
|
|
6
|
-
and rollback planning.
|
|
7
|
-
-->
|
|
8
|
-
|
|
1
|
+
---
|
|
2
|
+
name: operating-change-management
|
|
3
|
+
description: Use when a change needs to be categorized by reversibility, when designing rollout gates, or when the team is uncertain how much approval process a change warrants.
|
|
4
|
+
---
|
|
9
5
|
# Change Management
|
|
10
6
|
|
|
11
7
|
Use when a change needs to be categorized by reversibility, when designing rollout gates, or when the team is uncertain how much approval process a change warrants.
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Use when
|
|
4
|
-
|
|
5
|
-
communication cadence, blameless postmortem structure, and MTTR
|
|
6
|
-
discipline.
|
|
7
|
-
-->
|
|
8
|
-
|
|
1
|
+
---
|
|
2
|
+
name: operating-incident-response
|
|
3
|
+
description: Use when an issue is active in production, when building incident process from scratch, or when reviewing postmortems for quality.
|
|
4
|
+
---
|
|
9
5
|
# Incident Response
|
|
10
6
|
|
|
11
7
|
Use when an issue is active in production, when building incident process from scratch, or when reviewing postmortems for quality.
|
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Use when
|
|
4
|
-
|
|
5
|
-
bar, escalation chains, and on-call health indicators.
|
|
6
|
-
-->
|
|
7
|
-
|
|
1
|
+
---
|
|
2
|
+
name: operating-oncall-rotation
|
|
3
|
+
description: Use when setting up on-call, reviewing its health, or handling an escalation during a rotation.
|
|
4
|
+
---
|
|
8
5
|
# On-Call Rotation
|
|
9
6
|
|
|
10
7
|
Use when setting up on-call, reviewing its health, or handling an escalation during a rotation.
|
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
classification, parallel dispatch, horizontal routing, and efficiency
|
|
6
|
-
discipline. Called via get_skill("operating/orchestration-reference") by
|
|
7
|
-
specialists and personas when they need the full context; short essentials
|
|
8
|
-
stay in sharedGuidance so they load every turn.
|
|
9
|
-
-->
|
|
10
|
-
|
|
1
|
+
---
|
|
2
|
+
name: operating-orchestration-reference
|
|
3
|
+
description: detailed orchestration reference loaded on demand. Use when the task matches the trigger conditions described in the body.
|
|
4
|
+
---
|
|
11
5
|
# Orchestration Reference
|
|
12
6
|
|
|
13
7
|
Loaded on demand via `get_skill("operating/orchestration-reference")`.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: quality-gates-review-work
|
|
3
|
+
description: Use this methodology when a change needs rigorous pre-merge validation. Five independent review roles run concurrently. All must pass.
|
|
4
|
+
---
|
|
6
5
|
# Parallel Adversarial Review
|
|
7
6
|
|
|
8
7
|
Use this methodology when a change needs rigorous pre-merge validation. Five independent review roles run concurrently. All must pass.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: quality-gates-verify-change
|
|
3
|
+
description: Use this skill to analyze the impact of code changes and verify documentation and tests are in sync.
|
|
4
|
+
---
|
|
6
5
|
# Verify Change
|
|
7
6
|
|
|
8
7
|
Use this skill to analyze the impact of code changes and verify documentation and tests are in sync.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: quality-gates-verify-module
|
|
3
|
+
description: Use this skill to check that a module or package is structurally complete and ready for use.
|
|
4
|
+
---
|
|
6
5
|
# Verify Module
|
|
7
6
|
|
|
8
7
|
Use this skill to check that a module or package is structurally complete and ready for use.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: quality-gates-verify-quality
|
|
3
|
+
description: Use this skill to check code quality, complexity, and maintainability after changes.
|
|
4
|
+
---
|
|
6
5
|
# Verify Quality
|
|
7
6
|
|
|
8
7
|
Use this skill to check code quality, complexity, and maintainability after changes.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-->
|
|
1
|
+
---
|
|
2
|
+
name: quality-gates-verify-security
|
|
3
|
+
description: Use this skill to scan code for security vulnerabilities before commits or releases.
|
|
4
|
+
---
|
|
6
5
|
# Verify Security
|
|
7
6
|
|
|
8
7
|
Use this skill to scan code for security vulnerabilities before commits or releases.
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/architect.ai-systems.md. Anti-pattern guidance for the Architect.ai-systems (ai systems) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the architect.ai-systems (ai systems) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-architect.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-architect-ai-systems
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Architect — AI Systems role. Use when reviewing or generating work by cx-architect, or when an agent is acting in the Architect — AI Systems role.
|
|
9
4
|
role: architect.ai-systems
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-architect
|
|
11
7
|
inherits: architect
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# AI Systems Architect Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/architect.data.md. Anti-pattern guidance for the Architect.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 architect.data (data) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-architect.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-architect-data
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Architect — Data role. Use when reviewing or generating work by cx-architect, or when an agent is acting in the Architect — Data role.
|
|
9
4
|
role: architect.data
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-architect
|
|
11
7
|
inherits: architect
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Data Architect Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/architect.enterprise.md. Anti-pattern guidance for the Architect.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 architect.enterprise (enterprise) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-architect.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-architect-enterprise
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Architect — Enterprise role. Use when reviewing or generating work by cx-architect, or when an agent is acting in the Architect — Enterprise role.
|
|
9
4
|
role: architect.enterprise
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-architect
|
|
11
7
|
inherits: architect
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Enterprise Architect Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/architect.integration.md. Anti-pattern guidance for the Architect.integration (integration) role.
|
|
3
|
-
|
|
4
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
5
|
-
Covers common failure modes for the architect.integration (integration) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-architect.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-architect-integration
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Architect — Integration role. Use when reviewing or generating work by cx-architect, or when an agent is acting in the Architect — Integration role.
|
|
9
4
|
role: architect.integration
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-architect
|
|
11
7
|
inherits: architect
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Integration Architect Overlay
|
|
@@ -1,21 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/architect.md. Anti-pattern guidance for the Architect role.
|
|
3
|
-
|
|
4
|
-
## Improvement Note (auto-generated 2026-04-29)
|
|
5
|
-
- Improve specificity in technical guidance; provide detailed steps or code snippets rather than vague suggestions.
|
|
6
|
-
- Ensure that responses directly address the user's request; avoid unrelated topics or general advice that doesn't pertain to the task.
|
|
7
|
-
- Incorporate thorough explanations for any proposed solutions or changes to clarify their importance and methodology.
|
|
8
|
-
|
|
9
|
-
Loaded at sync time to inline role-specific failure modes into specialist agent prompts.
|
|
10
|
-
Covers common failure modes for the architect domain and counter-moves to avoid them.
|
|
11
|
-
Applies to: cx-architect, cx-rd-lead.
|
|
12
|
-
-->
|
|
13
1
|
---
|
|
2
|
+
name: roles-architect
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Architect role. Use when reviewing or generating work by cx-architect, cx-rd-lead, or when an agent is acting in the Architect role.
|
|
14
4
|
role: architect
|
|
15
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-architect
|
|
7
|
+
- cx-rd-lead
|
|
16
8
|
inherits: null
|
|
17
9
|
version: 2
|
|
18
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
19
12
|
cap: 1
|
|
20
13
|
---
|
|
21
14
|
# Architect. Role guidance
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/architect.platform.md. Anti-pattern guidance for the Architect.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 architect.platform (platform) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-architect.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-architect-platform
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Architect — Platform role. Use when reviewing or generating work by cx-architect, or when an agent is acting in the Architect — Platform role.
|
|
9
4
|
role: architect.platform
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-architect
|
|
11
7
|
inherits: architect
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Platform Architect Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/data-analyst.experiment.md. Anti-pattern guidance for the Data-analyst.experiment (experiment) 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.experiment (experiment) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-analyst.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-data-analyst-experiment
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Data Analyst — Experiment role. Use when reviewing or generating work by cx-data-analyst, or when an agent is acting in the Data Analyst — Experiment role.
|
|
9
4
|
role: data-analyst.experiment
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-analyst
|
|
11
7
|
inherits: data-analyst
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Experiment Analyst Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/data-analyst.md. Anti-pattern guidance for the Data-analyst 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 domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-analyst.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-data-analyst
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Data Analyst role. Use when reviewing or generating work by cx-data-analyst, or when an agent is acting in the Data Analyst role.
|
|
9
4
|
role: data-analyst
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-analyst
|
|
11
7
|
inherits: null
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Data Analyst. Role guidance
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/data-analyst.product-intelligence.md. Anti-pattern guidance for the Data-analyst.product-intelligence (product intelligence) 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.product-intelligence (product intelligence) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-analyst, cx-product-manager.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-data-analyst-product-intelligence
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Data Analyst — Product Intelligence role. Use when reviewing or generating work by cx-data-analyst, cx-product-manager, or when an agent is acting in the Data Analyst — Product Intelligence role.
|
|
9
4
|
role: data-analyst.product-intelligence
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-analyst
|
|
7
|
+
- cx-product-manager
|
|
11
8
|
inherits: data-analyst
|
|
12
9
|
version: 2
|
|
13
|
-
profiles:
|
|
10
|
+
profiles:
|
|
11
|
+
- rnd
|
|
14
12
|
cap: 1
|
|
15
13
|
---
|
|
16
14
|
# Product Intelligence Analyst Overlay
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
skills/roles/data-analyst.product.md. Anti-pattern guidance for the Data-analyst.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 data-analyst.product (product) domain and counter-moves to avoid them.
|
|
6
|
-
Applies to: cx-data-analyst.
|
|
7
|
-
-->
|
|
8
1
|
---
|
|
2
|
+
name: roles-data-analyst-product
|
|
3
|
+
description: Surfaces anti-patterns, failure modes, and counter-moves specific to the Data Analyst — Product role. Use when reviewing or generating work by cx-data-analyst, or when an agent is acting in the Data Analyst — Product role.
|
|
9
4
|
role: data-analyst.product
|
|
10
|
-
applies_to:
|
|
5
|
+
applies_to:
|
|
6
|
+
- cx-data-analyst
|
|
11
7
|
inherits: data-analyst
|
|
12
8
|
version: 2
|
|
13
|
-
profiles:
|
|
9
|
+
profiles:
|
|
10
|
+
- rnd
|
|
14
11
|
cap: 1
|
|
15
12
|
---
|
|
16
13
|
# Product Analytics Overlay
|
|
@@ -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
|