aw-ecc 1.4.32 → 1.4.47
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/.claude-plugin/plugin.json +1 -1
- package/.codex/hooks/aw-post-tool-use.sh +8 -2
- package/.codex/hooks/aw-session-start.sh +11 -4
- package/.codex/hooks/aw-stop.sh +8 -2
- package/.codex/hooks/aw-user-prompt-submit.sh +10 -2
- package/.codex/hooks.json +8 -8
- package/.cursor/INSTALL.md +7 -5
- package/.cursor/hooks/adapter.js +41 -4
- package/.cursor/hooks/after-agent-response.js +62 -0
- package/.cursor/hooks/before-submit-prompt.js +7 -1
- package/.cursor/hooks/post-tool-use-failure.js +21 -0
- package/.cursor/hooks/post-tool-use.js +39 -0
- package/.cursor/hooks/shared/aw-phase-definitions.js +53 -0
- package/.cursor/hooks/shared/aw-phase-runner.js +3 -1
- package/.cursor/hooks/subagent-start.js +22 -4
- package/.cursor/hooks/subagent-stop.js +18 -1
- package/.cursor/hooks.json +23 -2
- package/.opencode/package.json +1 -1
- package/AGENTS.md +3 -3
- package/README.md +5 -5
- package/commands/adk.md +52 -0
- package/commands/build.md +22 -9
- package/commands/deploy.md +12 -0
- package/commands/execute.md +9 -0
- package/commands/feature.md +333 -0
- package/commands/investigate.md +18 -5
- package/commands/plan.md +23 -9
- package/commands/publish.md +65 -0
- package/commands/review.md +12 -0
- package/commands/ship.md +12 -0
- package/commands/test.md +12 -0
- package/commands/verify.md +9 -0
- package/hooks/hooks.json +36 -0
- package/manifests/install-components.json +8 -0
- package/manifests/install-modules.json +83 -0
- package/manifests/install-profiles.json +7 -0
- package/package.json +1 -1
- package/scripts/ci/validate-rules.js +51 -0
- package/scripts/cursor-aw-home/hooks.json +23 -2
- package/scripts/cursor-aw-hooks/adapter.js +41 -4
- package/scripts/cursor-aw-hooks/before-submit-prompt.js +7 -1
- package/scripts/hooks/aw-usage-commit-created.js +32 -0
- package/scripts/hooks/aw-usage-post-tool-use-failure.js +56 -0
- package/scripts/hooks/aw-usage-post-tool-use.js +242 -0
- package/scripts/hooks/aw-usage-prompt-submit.js +112 -0
- package/scripts/hooks/aw-usage-session-start.js +48 -0
- package/scripts/hooks/aw-usage-stop.js +182 -0
- package/scripts/hooks/aw-usage-telemetry-send.js +84 -0
- package/scripts/hooks/cost-tracker.js +3 -23
- package/scripts/hooks/shared/aw-phase-definitions.js +53 -0
- package/scripts/hooks/shared/aw-phase-runner.js +3 -1
- package/scripts/lib/aw-hook-contract.js +2 -2
- package/scripts/lib/aw-pricing.js +306 -0
- package/scripts/lib/aw-usage-telemetry.js +472 -0
- package/scripts/lib/codex-hook-config.js +8 -8
- package/scripts/lib/cursor-hook-config.js +25 -10
- package/scripts/lib/install-targets/cursor-project.js +3 -0
- package/scripts/lib/install-targets/helpers.js +20 -3
- package/skills/aw-adk/SKILL.md +317 -0
- package/skills/aw-adk/agents/analyzer.md +113 -0
- package/skills/aw-adk/agents/comparator.md +113 -0
- package/skills/aw-adk/agents/grader.md +115 -0
- package/skills/aw-adk/assets/eval_review.html +76 -0
- package/skills/aw-adk/eval-viewer/generate_review.py +164 -0
- package/skills/aw-adk/eval-viewer/viewer.html +181 -0
- package/skills/aw-adk/evals/eval-colocated-placement.md +84 -0
- package/skills/aw-adk/evals/eval-create-agent.md +90 -0
- package/skills/aw-adk/evals/eval-create-command.md +98 -0
- package/skills/aw-adk/evals/eval-create-eval.md +89 -0
- package/skills/aw-adk/evals/eval-create-rule.md +99 -0
- package/skills/aw-adk/evals/eval-create-skill.md +97 -0
- package/skills/aw-adk/evals/eval-delete-agent.md +79 -0
- package/skills/aw-adk/evals/eval-delete-command.md +89 -0
- package/skills/aw-adk/evals/eval-delete-rule.md +86 -0
- package/skills/aw-adk/evals/eval-delete-skill.md +90 -0
- package/skills/aw-adk/evals/eval-meta-eval-coverage.md +78 -0
- package/skills/aw-adk/evals/eval-meta-eval-determinism.md +81 -0
- package/skills/aw-adk/evals/eval-meta-eval-false-pass.md +81 -0
- package/skills/aw-adk/evals/eval-score-accuracy.md +95 -0
- package/skills/aw-adk/evals/eval-type-redirect.md +68 -0
- package/skills/aw-adk/evals/evals.json +96 -0
- package/skills/aw-adk/references/artifact-wiring.md +162 -0
- package/skills/aw-adk/references/cross-ide-mapping.md +71 -0
- package/skills/aw-adk/references/eval-placement-guide.md +183 -0
- package/skills/aw-adk/references/external-resources.md +75 -0
- package/skills/aw-adk/references/getting-started.md +66 -0
- package/skills/aw-adk/references/registry-structure.md +152 -0
- package/skills/aw-adk/references/rubric-agent.md +36 -0
- package/skills/aw-adk/references/rubric-command.md +36 -0
- package/skills/aw-adk/references/rubric-eval.md +36 -0
- package/skills/aw-adk/references/rubric-meta-eval.md +132 -0
- package/skills/aw-adk/references/rubric-rule.md +36 -0
- package/skills/aw-adk/references/rubric-skill.md +36 -0
- package/skills/aw-adk/references/schemas.md +222 -0
- package/skills/aw-adk/references/template-agent.md +251 -0
- package/skills/aw-adk/references/template-command.md +279 -0
- package/skills/aw-adk/references/template-eval.md +176 -0
- package/skills/aw-adk/references/template-rule.md +119 -0
- package/skills/aw-adk/references/template-skill.md +123 -0
- package/skills/aw-adk/references/type-classifier.md +98 -0
- package/skills/aw-adk/references/writing-good-agents.md +227 -0
- package/skills/aw-adk/references/writing-good-commands.md +258 -0
- package/skills/aw-adk/references/writing-good-evals.md +271 -0
- package/skills/aw-adk/references/writing-good-rules.md +214 -0
- package/skills/aw-adk/references/writing-good-skills.md +159 -0
- package/skills/aw-adk/scripts/aggregate-benchmark.py +190 -0
- package/skills/aw-adk/scripts/lint-artifact.sh +211 -0
- package/skills/aw-adk/scripts/score-artifact.sh +179 -0
- package/skills/aw-adk/scripts/trigger-eval.py +192 -0
- package/skills/aw-build/SKILL.md +19 -2
- package/skills/aw-deploy/SKILL.md +65 -3
- package/skills/aw-design/SKILL.md +156 -0
- package/skills/aw-design/references/highrise-tokens.md +394 -0
- package/skills/aw-design/references/micro-interactions.md +76 -0
- package/skills/aw-design/references/prompt-template.md +160 -0
- package/skills/aw-design/references/quality-checklist.md +70 -0
- package/skills/aw-design/references/self-review.md +497 -0
- package/skills/aw-design/references/stitch-workflow.md +127 -0
- package/skills/aw-feature/SKILL.md +293 -0
- package/skills/aw-investigate/SKILL.md +17 -0
- package/skills/aw-plan/SKILL.md +34 -3
- package/skills/aw-publish/SKILL.md +300 -0
- package/skills/aw-publish/evals/eval-confirmation-gate.md +60 -0
- package/skills/aw-publish/evals/eval-intent-detection.md +111 -0
- package/skills/aw-publish/evals/eval-push-modes.md +67 -0
- package/skills/aw-publish/evals/eval-rules-push.md +60 -0
- package/skills/aw-publish/evals/evals.json +29 -0
- package/skills/aw-publish/references/push-modes.md +38 -0
- package/skills/aw-review/SKILL.md +88 -9
- package/skills/aw-rules-review/SKILL.md +124 -0
- package/skills/aw-rules-review/agents/openai.yaml +3 -0
- package/skills/aw-rules-review/scripts/generate-review-template.mjs +323 -0
- package/skills/aw-ship/SKILL.md +16 -0
- package/skills/aw-spec/SKILL.md +15 -0
- package/skills/aw-tasks/SKILL.md +15 -0
- package/skills/aw-test/SKILL.md +16 -0
- package/skills/aw-yolo/SKILL.md +4 -0
- package/skills/diagnose/SKILL.md +121 -0
- package/skills/diagnose/scripts/hitl-loop.template.sh +41 -0
- package/skills/finish-only-when-green/SKILL.md +265 -0
- package/skills/grill-me/SKILL.md +24 -0
- package/skills/grill-with-docs/SKILL.md +92 -0
- package/skills/grill-with-docs/adr-format.md +47 -0
- package/skills/grill-with-docs/context-format.md +67 -0
- package/skills/improve-codebase-architecture/SKILL.md +75 -0
- package/skills/improve-codebase-architecture/deepening.md +37 -0
- package/skills/improve-codebase-architecture/interface-design.md +44 -0
- package/skills/improve-codebase-architecture/language.md +53 -0
- package/skills/local-ghl-setup-from-screenshot/SKILL.md +538 -0
- package/skills/tdd/SKILL.md +115 -0
- package/skills/tdd/deep-modules.md +33 -0
- package/skills/tdd/interface-design.md +31 -0
- package/skills/tdd/mocking.md +59 -0
- package/skills/tdd/refactoring.md +10 -0
- package/skills/tdd/tests.md +61 -0
- package/skills/to-issues/SKILL.md +62 -0
- package/skills/to-prd/SKILL.md +75 -0
- package/skills/using-aw-skills/SKILL.md +170 -237
- package/skills/using-aw-skills/hooks/session-start.sh +11 -41
- package/skills/zoom-out/SKILL.md +24 -0
- package/.cursor/rules/common-agents.md +0 -53
- package/.cursor/rules/common-aw-routing.md +0 -43
- package/.cursor/rules/common-coding-style.md +0 -52
- package/.cursor/rules/common-development-workflow.md +0 -33
- package/.cursor/rules/common-git-workflow.md +0 -28
- package/.cursor/rules/common-hooks.md +0 -34
- package/.cursor/rules/common-patterns.md +0 -35
- package/.cursor/rules/common-performance.md +0 -59
- package/.cursor/rules/common-security.md +0 -33
- package/.cursor/rules/common-testing.md +0 -33
- package/.cursor/skills/api-and-interface-design/SKILL.md +0 -75
- package/.cursor/skills/article-writing/SKILL.md +0 -85
- package/.cursor/skills/aw-brainstorm/SKILL.md +0 -115
- package/.cursor/skills/aw-build/SKILL.md +0 -152
- package/.cursor/skills/aw-build/evals/build-stage-cases.json +0 -28
- package/.cursor/skills/aw-debug/SKILL.md +0 -49
- package/.cursor/skills/aw-deploy/SKILL.md +0 -101
- package/.cursor/skills/aw-deploy/evals/deploy-stage-cases.json +0 -32
- package/.cursor/skills/aw-execute/SKILL.md +0 -47
- package/.cursor/skills/aw-execute/references/mode-code.md +0 -47
- package/.cursor/skills/aw-execute/references/mode-docs.md +0 -28
- package/.cursor/skills/aw-execute/references/mode-infra.md +0 -44
- package/.cursor/skills/aw-execute/references/mode-migration.md +0 -58
- package/.cursor/skills/aw-execute/references/worker-implementer.md +0 -26
- package/.cursor/skills/aw-execute/references/worker-parallel-worker.md +0 -23
- package/.cursor/skills/aw-execute/references/worker-quality-reviewer.md +0 -23
- package/.cursor/skills/aw-execute/references/worker-spec-reviewer.md +0 -23
- package/.cursor/skills/aw-execute/scripts/build-worker-bundle.js +0 -229
- package/.cursor/skills/aw-finish/SKILL.md +0 -111
- package/.cursor/skills/aw-investigate/SKILL.md +0 -109
- package/.cursor/skills/aw-plan/SKILL.md +0 -368
- package/.cursor/skills/aw-prepare/SKILL.md +0 -118
- package/.cursor/skills/aw-review/SKILL.md +0 -118
- package/.cursor/skills/aw-ship/SKILL.md +0 -115
- package/.cursor/skills/aw-spec/SKILL.md +0 -104
- package/.cursor/skills/aw-tasks/SKILL.md +0 -138
- package/.cursor/skills/aw-test/SKILL.md +0 -118
- package/.cursor/skills/aw-verify/SKILL.md +0 -51
- package/.cursor/skills/aw-yolo/SKILL.md +0 -111
- package/.cursor/skills/browser-testing-with-devtools/SKILL.md +0 -81
- package/.cursor/skills/bun-runtime/SKILL.md +0 -84
- package/.cursor/skills/ci-cd-and-automation/SKILL.md +0 -71
- package/.cursor/skills/code-simplification/SKILL.md +0 -74
- package/.cursor/skills/content-engine/SKILL.md +0 -88
- package/.cursor/skills/context-engineering/SKILL.md +0 -74
- package/.cursor/skills/deprecation-and-migration/SKILL.md +0 -75
- package/.cursor/skills/documentation-and-adrs/SKILL.md +0 -75
- package/.cursor/skills/documentation-lookup/SKILL.md +0 -90
- package/.cursor/skills/frontend-slides/SKILL.md +0 -184
- package/.cursor/skills/frontend-slides/STYLE_PRESETS.md +0 -330
- package/.cursor/skills/frontend-ui-engineering/SKILL.md +0 -68
- package/.cursor/skills/git-workflow-and-versioning/SKILL.md +0 -75
- package/.cursor/skills/idea-refine/SKILL.md +0 -84
- package/.cursor/skills/incremental-implementation/SKILL.md +0 -75
- package/.cursor/skills/investor-materials/SKILL.md +0 -96
- package/.cursor/skills/investor-outreach/SKILL.md +0 -76
- package/.cursor/skills/market-research/SKILL.md +0 -75
- package/.cursor/skills/mcp-server-patterns/SKILL.md +0 -67
- package/.cursor/skills/nextjs-turbopack/SKILL.md +0 -44
- package/.cursor/skills/performance-optimization/SKILL.md +0 -77
- package/.cursor/skills/security-and-hardening/SKILL.md +0 -70
- package/.cursor/skills/using-aw-skills/SKILL.md +0 -290
- package/.cursor/skills/using-aw-skills/evals/skill-trigger-cases.tsv +0 -25
- package/.cursor/skills/using-aw-skills/evals/test-skill-triggers.sh +0 -171
- package/.cursor/skills/using-aw-skills/hooks/hooks.json +0 -9
- package/.cursor/skills/using-aw-skills/hooks/session-start.sh +0 -67
- package/.cursor/skills/using-platform-skills/SKILL.md +0 -163
- package/.cursor/skills/using-platform-skills/evals/platform-selection-cases.json +0 -52
- /package/.cursor/rules/{golang-coding-style.md → golang-coding-style.mdc} +0 -0
- /package/.cursor/rules/{golang-hooks.md → golang-hooks.mdc} +0 -0
- /package/.cursor/rules/{golang-patterns.md → golang-patterns.mdc} +0 -0
- /package/.cursor/rules/{golang-security.md → golang-security.mdc} +0 -0
- /package/.cursor/rules/{golang-testing.md → golang-testing.mdc} +0 -0
- /package/.cursor/rules/{kotlin-coding-style.md → kotlin-coding-style.mdc} +0 -0
- /package/.cursor/rules/{kotlin-hooks.md → kotlin-hooks.mdc} +0 -0
- /package/.cursor/rules/{kotlin-patterns.md → kotlin-patterns.mdc} +0 -0
- /package/.cursor/rules/{kotlin-security.md → kotlin-security.mdc} +0 -0
- /package/.cursor/rules/{kotlin-testing.md → kotlin-testing.mdc} +0 -0
- /package/.cursor/rules/{php-coding-style.md → php-coding-style.mdc} +0 -0
- /package/.cursor/rules/{php-hooks.md → php-hooks.mdc} +0 -0
- /package/.cursor/rules/{php-patterns.md → php-patterns.mdc} +0 -0
- /package/.cursor/rules/{php-security.md → php-security.mdc} +0 -0
- /package/.cursor/rules/{php-testing.md → php-testing.mdc} +0 -0
- /package/.cursor/rules/{python-coding-style.md → python-coding-style.mdc} +0 -0
- /package/.cursor/rules/{python-hooks.md → python-hooks.mdc} +0 -0
- /package/.cursor/rules/{python-patterns.md → python-patterns.mdc} +0 -0
- /package/.cursor/rules/{python-security.md → python-security.mdc} +0 -0
- /package/.cursor/rules/{python-testing.md → python-testing.mdc} +0 -0
- /package/.cursor/rules/{swift-coding-style.md → swift-coding-style.mdc} +0 -0
- /package/.cursor/rules/{swift-hooks.md → swift-hooks.mdc} +0 -0
- /package/.cursor/rules/{swift-patterns.md → swift-patterns.mdc} +0 -0
- /package/.cursor/rules/{swift-security.md → swift-security.mdc} +0 -0
- /package/.cursor/rules/{swift-testing.md → swift-testing.mdc} +0 -0
- /package/.cursor/rules/{typescript-coding-style.md → typescript-coding-style.mdc} +0 -0
- /package/.cursor/rules/{typescript-hooks.md → typescript-hooks.mdc} +0 -0
- /package/.cursor/rules/{typescript-patterns.md → typescript-patterns.mdc} +0 -0
- /package/.cursor/rules/{typescript-security.md → typescript-security.mdc} +0 -0
- /package/.cursor/rules/{typescript-testing.md → typescript-testing.mdc} +0 -0
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: using-platform-skills
|
|
3
|
-
description: Select the smallest correct GHL platform skill stack after the AW stage is known. Use when the task touches backend services, frontend MFAs, data systems, infra, review, test, or product-specific platform context.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Using Platform Skills
|
|
7
|
-
|
|
8
|
-
## Overview
|
|
9
|
-
|
|
10
|
-
This is the second-hop router for GHL-specific work.
|
|
11
|
-
Use it after `using-aw-skills` has already selected the primary AW stage.
|
|
12
|
-
|
|
13
|
-
Its job is to:
|
|
14
|
-
|
|
15
|
-
- identify the touched GHL domain
|
|
16
|
-
- pick the smallest correct platform family
|
|
17
|
-
- choose the first supporting platform skills for the selected stage
|
|
18
|
-
- avoid loading every platform playbook by default
|
|
19
|
-
|
|
20
|
-
## When to Use
|
|
21
|
-
|
|
22
|
-
- the primary AW stage is already known
|
|
23
|
-
- the task touches a real GHL backend, worker, frontend, data, infra, test, review, or product surface
|
|
24
|
-
- platform-specific conventions materially change how the stage should be done
|
|
25
|
-
|
|
26
|
-
Do not use:
|
|
27
|
-
|
|
28
|
-
- before the primary AW stage is selected
|
|
29
|
-
- for generic non-GHL work
|
|
30
|
-
- when no platform family materially changes the implementation, test, review, or deploy path
|
|
31
|
-
|
|
32
|
-
## Skill Discovery
|
|
33
|
-
|
|
34
|
-
After the AW stage is selected, choose the platform family:
|
|
35
|
-
|
|
36
|
-
```text
|
|
37
|
-
Primary AW stage selected
|
|
38
|
-
│
|
|
39
|
-
├── Backend service or worker? ───────────────→ platform-services:*
|
|
40
|
-
├── Frontend MFA or design-system work? ─────→ platform-frontend:* + platform-design:*
|
|
41
|
-
├── Data store, analytics, search, cache,
|
|
42
|
-
│ or data migration work? ──────────────────────→ platform-data:*
|
|
43
|
-
├── Infra or deploy path work? ──────────────→ platform-infra:*
|
|
44
|
-
├── Test system or QA governance work? ──────→ platform-sdet:*
|
|
45
|
-
├── Formal review or readiness work? ────────→ platform-review:*
|
|
46
|
-
└── Product-context ambiguity? ──────────────→ platform-product:*
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
Then choose the smallest supporting skills for the current stage.
|
|
50
|
-
|
|
51
|
-
## Workflow
|
|
52
|
-
|
|
53
|
-
1. Confirm the AW stage first.
|
|
54
|
-
Do not pick platform skills until the primary route is clear.
|
|
55
|
-
2. Identify the touched surface.
|
|
56
|
-
Backend, frontend, data, infra, review, test, or product context.
|
|
57
|
-
3. Choose the first platform family.
|
|
58
|
-
Start from the family that most directly changes the current stage behavior.
|
|
59
|
-
4. Add only the first supporting platform skills.
|
|
60
|
-
Prefer the smallest stack that changes implementation quality, test evidence, review depth, or release safety.
|
|
61
|
-
Do not duplicate planning-process skills already owned by `aw-plan`, `aw-spec`, `aw-tasks`, or Addy-style planning helpers.
|
|
62
|
-
5. Add craft skills only if they sharpen the same stage.
|
|
63
|
-
Do not let craft skills replace platform families or vice versa.
|
|
64
|
-
|
|
65
|
-
## Stage-to-Platform Matrix
|
|
66
|
-
|
|
67
|
-
### Backend services and workers
|
|
68
|
-
|
|
69
|
-
| AW stage | First platform skills to load |
|
|
70
|
-
|---|---|
|
|
71
|
-
| `aw-plan` | `platform-services:development` |
|
|
72
|
-
| `aw-build` | `platform-services:development` |
|
|
73
|
-
| `aw-investigate` | `platform-infra:grafana` |
|
|
74
|
-
| `aw-test` | `platform-sdet:quality-gates` |
|
|
75
|
-
| `aw-review` | `platform-review:code-review-pr`, `platform-sdet:quality-gates` |
|
|
76
|
-
| `aw-deploy` | `platform-infra:staging-deploy`, `platform-infra:deployment-strategies`, `platform-infra:production-readiness` |
|
|
77
|
-
| `aw-ship` | `platform-review:code-review-pr`, `platform-infra:staging-deploy`, `platform-infra:production-readiness` |
|
|
78
|
-
|
|
79
|
-
### Frontend MFAs and design-system work
|
|
80
|
-
|
|
81
|
-
| AW stage | First platform skills to load |
|
|
82
|
-
|---|---|
|
|
83
|
-
| `aw-plan` | `platform-design:system`, `platform-frontend:vue-development` |
|
|
84
|
-
| `aw-build` | `platform-frontend:vue-development`, `highrise-ui-governance`, `quality-gate-coder` |
|
|
85
|
-
| `aw-investigate` | `platform-infra:grafana` when runtime signals matter; otherwise use the smallest relevant frontend family |
|
|
86
|
-
| `aw-test` | `platform-frontend:a11y-review`, `platform-sdet:quality-gates` |
|
|
87
|
-
| `aw-review` | `platform-review:code-review-pr`, `platform-design:review`, `platform-frontend:a11y-review`, `platform-sdet:quality-gates` |
|
|
88
|
-
| `aw-deploy` | `deploy-versioned-mfa`, `platform-infra:staging-deploy`, `platform-infra:production-readiness` |
|
|
89
|
-
| `aw-ship` | `deploy-versioned-mfa`, `platform-infra:staging-deploy`, `platform-infra:production-readiness` |
|
|
90
|
-
|
|
91
|
-
### Data, migration, and storage work
|
|
92
|
-
|
|
93
|
-
`platform-data:*` is the family for the data team surface.
|
|
94
|
-
Use it for:
|
|
95
|
-
|
|
96
|
-
- transactional databases
|
|
97
|
-
- document stores
|
|
98
|
-
- analytical databases and warehouses
|
|
99
|
-
- search indexes
|
|
100
|
-
- realtime data stores
|
|
101
|
-
- cache and key-value systems
|
|
102
|
-
- migration and cross-database movement
|
|
103
|
-
|
|
104
|
-
Current concrete data families include:
|
|
105
|
-
|
|
106
|
-
- `platform-data:cloudsql-clickhouse` for CloudSQL and ClickHouse
|
|
107
|
-
- `platform-data:mongodb-patterns`
|
|
108
|
-
- `platform-data:firestore-patterns`
|
|
109
|
-
- `platform-data:redis-patterns`
|
|
110
|
-
- `platform-data:elasticsearch-patterns`
|
|
111
|
-
- `platform-data:migration-patterns`
|
|
112
|
-
|
|
113
|
-
Keep infra ownership separate:
|
|
114
|
-
|
|
115
|
-
- provisioning clusters, secrets, Helm, Terraform, Jenkins, or deploy topology -> `platform-infra:*`
|
|
116
|
-
- modeling schemas, indexes, migrations, sync workers, queries, or search mappings -> `platform-data:*`
|
|
117
|
-
|
|
118
|
-
| AW stage | First platform skills to load |
|
|
119
|
-
|---|---|
|
|
120
|
-
| `aw-plan` | `platform-data:migration-patterns` or the narrow storage family |
|
|
121
|
-
| `aw-build` | `platform-data:migration-patterns`, `platform-data:mongodb-patterns`, `platform-data:redis-patterns`, `platform-data:elasticsearch-patterns`, `platform-data:cloudsql-clickhouse`, or another narrow data family |
|
|
122
|
-
| `aw-test` | `platform-sdet:quality-gates` |
|
|
123
|
-
| `aw-review` | `platform-review:code-review-pr` plus the narrow data family when contracts or safety need checking |
|
|
124
|
-
| `aw-deploy` / `aw-ship` | `platform-infra:deployment-strategies`, plus the narrow data family when rollout safety depends on it |
|
|
125
|
-
|
|
126
|
-
### Infra, release, and operational work
|
|
127
|
-
|
|
128
|
-
| AW stage | First platform skills to load |
|
|
129
|
-
|---|---|
|
|
130
|
-
| `aw-plan` | `platform-infra:deployment-strategies` |
|
|
131
|
-
| `aw-build` | `platform-infra:jenkins-pipelines`, `platform-infra:kubernetes-workloads`, `platform-infra:terraform-iac`, or another narrow infra family |
|
|
132
|
-
| `aw-investigate` | `platform-infra:grafana`, `platform-infra:log-analysis` |
|
|
133
|
-
| `aw-test` | `platform-sdet:quality-gates` |
|
|
134
|
-
| `aw-review` | `platform-review:code-review-pr`, `platform-infra:production-readiness` |
|
|
135
|
-
| `aw-deploy` | `platform-infra:staging-deploy`, `platform-infra:deployment-strategies`, `platform-infra:production-readiness` |
|
|
136
|
-
| `aw-ship` | `platform-infra:deployment-strategies`, `platform-infra:production-readiness` |
|
|
137
|
-
|
|
138
|
-
## Common Rationalizations
|
|
139
|
-
|
|
140
|
-
| Rationalization | Reality |
|
|
141
|
-
|---|---|
|
|
142
|
-
| "The AW stage is enough; platform rules can be implied." | Platform families encode real org behavior and should be selected explicitly when they matter. |
|
|
143
|
-
| "I'll just load everything platform-related to be safe." | Flooding the session makes routing less clear and increases noise. |
|
|
144
|
-
| "Frontend only needs frontend skills." | Real frontend work often also needs design, accessibility, quality-gate, or deploy support. |
|
|
145
|
-
| "Review and test don't need platform families." | Review depth and test evidence are some of the most platform-specific parts of the workflow. |
|
|
146
|
-
|
|
147
|
-
## Red Flags
|
|
148
|
-
|
|
149
|
-
- platform skills are chosen before the AW stage is known
|
|
150
|
-
- every task loads multiple platform families with no clear reason
|
|
151
|
-
- frontend tasks skip `platform-design:*` or accessibility support when UI quality matters
|
|
152
|
-
- backend tasks skip platform service conventions and jump straight to generic coding
|
|
153
|
-
- deploy and ship work proceed without platform infra or readiness support
|
|
154
|
-
|
|
155
|
-
## Verification
|
|
156
|
-
|
|
157
|
-
Before leaving platform selection, confirm:
|
|
158
|
-
|
|
159
|
-
- [ ] the AW stage was chosen first
|
|
160
|
-
- [ ] exactly one primary platform family was selected first
|
|
161
|
-
- [ ] the first supporting platform skills match the current AW stage
|
|
162
|
-
- [ ] only the smallest useful platform stack was loaded
|
|
163
|
-
- [ ] craft skills complement the platform stack instead of replacing it
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cases": [
|
|
3
|
-
{
|
|
4
|
-
"id": "backend-plan",
|
|
5
|
-
"prompt": "Create the implementation spec for the approved Communities moderation API contract.",
|
|
6
|
-
"awStage": "aw-plan",
|
|
7
|
-
"surface": "backend-service",
|
|
8
|
-
"expectedPlatformFamilies": ["platform-services:*"],
|
|
9
|
-
"expectedSupportingSkills": ["platform-services:development"]
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"id": "frontend-plan",
|
|
13
|
-
"prompt": "Create the implementation spec for the approved Communities feed MFA change.",
|
|
14
|
-
"awStage": "aw-plan",
|
|
15
|
-
"surface": "frontend-mfa",
|
|
16
|
-
"expectedPlatformFamilies": ["platform-frontend:*", "platform-design:*"],
|
|
17
|
-
"expectedSupportingSkills": ["platform-design:system", "platform-frontend:vue-development"]
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"id": "backend-investigate",
|
|
21
|
-
"prompt": "Investigate this Communities moderation worker retry failure before patching.",
|
|
22
|
-
"awStage": "aw-investigate",
|
|
23
|
-
"surface": "backend-worker",
|
|
24
|
-
"expectedPlatformFamilies": ["platform-infra:*"],
|
|
25
|
-
"expectedSupportingSkills": ["platform-infra:grafana"]
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"id": "frontend-test",
|
|
29
|
-
"prompt": "Test the approved Communities feed MFA UI change for responsive and accessibility regressions.",
|
|
30
|
-
"awStage": "aw-test",
|
|
31
|
-
"surface": "frontend-mfa",
|
|
32
|
-
"expectedPlatformFamilies": ["platform-frontend:*", "platform-sdet:*"],
|
|
33
|
-
"expectedSupportingSkills": ["platform-frontend:a11y-review", "platform-sdet:quality-gates"]
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"id": "service-deploy",
|
|
37
|
-
"prompt": "Deploy this verified Communities moderation API service to staging.",
|
|
38
|
-
"awStage": "aw-deploy",
|
|
39
|
-
"surface": "backend-service",
|
|
40
|
-
"expectedPlatformFamilies": ["platform-infra:*"],
|
|
41
|
-
"expectedSupportingSkills": ["platform-infra:staging-deploy", "platform-infra:deployment-strategies", "platform-infra:production-readiness"]
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"id": "data-build",
|
|
45
|
-
"prompt": "Add the new analytics projection and search mapping for this reporting workflow.",
|
|
46
|
-
"awStage": "aw-build",
|
|
47
|
-
"surface": "data-analytics-search",
|
|
48
|
-
"expectedPlatformFamilies": ["platform-data:*"],
|
|
49
|
-
"expectedSupportingSkills": ["platform-data:cloudsql-clickhouse", "platform-data:elasticsearch-patterns"]
|
|
50
|
-
}
|
|
51
|
-
]
|
|
52
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|