macca-method 2.0.0 → 2.1.2
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/.agents/macca-lock.json +1 -1
- package/.agents/skills/_shared/references/brainstorm-session.md +5 -5
- package/.agents/skills/_shared/references/fix-mode.md +18 -3
- package/.agents/skills/_shared/references/human-loop.md +1 -1
- package/.agents/skills/_shared/references/invocation-policy.md +20 -20
- package/.agents/skills/_shared/references/language-config.md +7 -5
- package/.agents/skills/_shared/references/output-ownership.md +11 -11
- package/.agents/skills/_shared/references/scope-rules.md +1 -1
- package/.agents/skills/_shared/references/skill-catalog.md +20 -20
- package/.agents/skills/_shared/scripts/validate-skills.py +37 -15
- package/.agents/skills/add-feature/SKILL.md +11 -3
- package/.agents/skills/antislop-copywriting/SKILL.md +372 -0
- package/.agents/skills/brainstorm-api/SKILL.md +33 -19
- package/.agents/skills/brainstorm-api/assets/api.template.md +35 -15
- package/.agents/skills/brainstorm-architecture/SKILL.md +40 -18
- package/.agents/skills/brainstorm-architecture/assets/architecture.template.md +44 -25
- package/.agents/skills/brainstorm-prd/SKILL.md +52 -20
- package/.agents/skills/brainstorm-prd/assets/PRD.template.md +47 -23
- package/.agents/skills/brainstorm-rules/SKILL.md +39 -22
- package/.agents/skills/brainstorm-rules/assets/rules.template.md +32 -18
- package/.agents/skills/brainstorm-schema/SKILL.md +23 -11
- package/.agents/skills/brainstorm-schema/assets/schema.template.md +25 -10
- package/.agents/skills/brainstorm-styleguide/SKILL.md +40 -22
- package/.agents/skills/brainstorm-styleguide/assets/StyleGuide.template.md +78 -60
- package/.agents/skills/brainstorm-task/SKILL.md +29 -14
- package/.agents/skills/brainstorm-task/assets/Task.template.md +29 -18
- package/.agents/skills/bug-fix/SKILL.md +39 -8
- package/.agents/skills/code-review/SKILL.md +9 -7
- package/.agents/skills/code-review/references/review-checklist.md +21 -10
- package/.agents/skills/developer/SKILL.md +10 -0
- package/.agents/skills/developer/references/execute-task.md +13 -7
- package/.agents/skills/developer/references/onboarding.md +1 -1
- package/.agents/skills/help/SKILL.md +39 -23
- package/.agents/skills/meet/SKILL.md +11 -4
- package/.agents/skills/quick-dev/SKILL.md +29 -22
- package/.agents/skills/release-readiness/SKILL.md +19 -13
- package/.agents/skills/skill-creator/LICENSE.txt +202 -0
- package/.agents/skills/skill-creator/SKILL.md +485 -0
- package/.agents/skills/skill-creator/agents/analyzer.md +274 -0
- package/.agents/skills/skill-creator/agents/comparator.md +202 -0
- package/.agents/skills/skill-creator/agents/grader.md +223 -0
- package/.agents/skills/skill-creator/assets/eval_review.html +146 -0
- package/.agents/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/.agents/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/.agents/skills/skill-creator/references/schemas.md +441 -0
- package/.agents/skills/skill-creator/scripts/__init__.py +0 -0
- package/.agents/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/.agents/skills/skill-creator/scripts/generate_report.py +326 -0
- package/.agents/skills/skill-creator/scripts/improve_description.py +247 -0
- package/.agents/skills/skill-creator/scripts/package_skill.py +136 -0
- package/.agents/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/.agents/skills/skill-creator/scripts/run_eval.py +310 -0
- package/.agents/skills/skill-creator/scripts/run_loop.py +328 -0
- package/.agents/skills/skill-creator/scripts/utils.py +47 -0
- package/.agents/skills/spec-audit/SKILL.md +33 -4
- package/.agents/skills/spec-compliance/SKILL.md +36 -21
- package/.agents/skills/spec-init/SKILL.md +31 -17
- package/README.md +165 -129
- package/bin/macca-method.js +1378 -1077
- package/package.json +40 -40
- package/scripts/run-skill-validator.js +27 -9
- package/scripts/test-install.js +611 -337
- package/scripts/test-upgrade-legacy.js +131 -76
- package/scripts/validate-skill-behavior.js +175 -64
|
@@ -7,7 +7,7 @@ Read this file only when identity/config/work mode is incomplete or plan-first m
|
|
|
7
7
|
If `additionalSkills` is missing:
|
|
8
8
|
|
|
9
9
|
1. Ask once whether the project uses framework/domain skills.
|
|
10
|
-
2. For each named skill, search `.agents/skills
|
|
10
|
+
2. For each named skill, search every MACCA tool destination: `.agents/skills/` (codex/kimi), `.github/skills/` (copilot), `.opencode/skills/`, `.claude/skills/`, `.cursor/skills/`, `.windsurf/skills/`, `.gemini/skills/`, `.kilo/skills/`. If none match, also check the global equivalents `~/.config/opencode/skills/`, `~/.claude/skills/`, and `~/.agents/skills/`. Only then fall back to matching workspace folders.
|
|
11
11
|
3. If found, record its path. If absent, ask for the path or allow `skip`.
|
|
12
12
|
4. Before saving, load `../../_shared/references/additional-skills.md` and use its canonical `paths` shape.
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: help
|
|
3
|
-
description: Interactive guide for
|
|
3
|
+
description: Interactive guide and dashboard for MACCA AI Spec-Driven Development. Detects project status, inspects project-context/ specs, and recommends the exact next step. Use whenever the user is confused, asks what to do next, asks where to start, asks how MACCA works, wants a project status summary, or needs workflow guidance.
|
|
4
4
|
compatibility: Requires the complete MACCA-METHOD collection with sibling _shared resources and workspace file access.
|
|
5
5
|
metadata:
|
|
6
6
|
persona: "Galbi"
|
|
@@ -11,12 +11,14 @@ metadata:
|
|
|
11
11
|
|
|
12
12
|
## Shared Runtime Setup
|
|
13
13
|
|
|
14
|
+
Paths written as `../...` below are relative to this SKILL.md's own folder, not the project's working directory - resolve them as a sibling of the folder that contains this file.
|
|
15
|
+
|
|
14
16
|
At startup:
|
|
15
17
|
|
|
16
18
|
1. Read `../_shared/references/language-config.md`.
|
|
17
19
|
2. Read `../_shared/references/scope-rules.md`.
|
|
18
20
|
3. Read `../_shared/references/invocation-policy.md` when explaining how a skill is activated.
|
|
19
|
-
|
|
21
|
+
4. Use `languagePreferences.communication.normalized` for all chat output, reports, and guidance.
|
|
20
22
|
|
|
21
23
|
---
|
|
22
24
|
|
|
@@ -31,6 +33,7 @@ Operate as `@Galbi` (Project Manager). Use the shared persona profile in `../_sh
|
|
|
31
33
|
You are a patient **Mentor and Guide** who explains complex systems with everyday analogies, not jargon.
|
|
32
34
|
|
|
33
35
|
**Strengths:**
|
|
36
|
+
|
|
34
37
|
- Explain systems and concepts clearly with examples
|
|
35
38
|
- Read project status and recommend the correct next step
|
|
36
39
|
- Answer questions about the workflow, skills, and this system
|
|
@@ -45,12 +48,16 @@ You are a patient **Mentor and Guide** who explains complex systems with everyda
|
|
|
45
48
|
## Step 1: Detect Project Status
|
|
46
49
|
|
|
47
50
|
Check whether the `project-context/` folder exists:
|
|
51
|
+
|
|
48
52
|
- **No:** first check whether a real codebase already exists (for example `package.json`, `composer.json`, `go.mod`, `src/`, `app/`, `artisan`, `routes/`).
|
|
49
|
-
-
|
|
50
|
-
- If
|
|
53
|
+
- Before recommending a skill, give a short plain-language orientation (2-4 sentences, no jargon): this system writes down what to build before touching code, then checks the code against that writing afterward - this catches misunderstandings early and gives every future session a stable source of truth instead of re-guessing intent from scratch.
|
|
54
|
+
- If a real codebase exists: show "The codebase already exists but `project-context/` has not been created yet. Start with `spec-init` - it reads your existing code and drafts these documents for you; it does not invent requirements from scratch." Then stop.
|
|
55
|
+
- If no real codebase exists: show "No spec documents exist yet. This is a new project. Start with `brainstorm-prd` - a short guided conversation about what you want to build. Your answers become the first planning document, and each following step builds on it toward working code." Then stop.
|
|
56
|
+
- Mention once, briefly: you can call `help` again anytime you are not sure what to do next.
|
|
51
57
|
- **Yes:** Continue and read whichever files exist.
|
|
52
58
|
|
|
53
59
|
Check for the existence of:
|
|
60
|
+
|
|
54
61
|
- `project-context/PRD.md`
|
|
55
62
|
- `project-context/StyleGuide.md`
|
|
56
63
|
- `project-context/architecture.md`
|
|
@@ -62,6 +69,7 @@ Check for the existence of:
|
|
|
62
69
|
If `Task.md` exists, count incomplete `[ ]` versus complete `[x]` tasks.
|
|
63
70
|
|
|
64
71
|
Also check:
|
|
72
|
+
|
|
65
73
|
- `.agents/developer-config.json` — read `name`, `project`, `developerPreferences.workMode`, `developerPreferences.scope`, `additionalSkills`, `availableMCPs`
|
|
66
74
|
- The `project-context/plans/` folder — list existing plan files
|
|
67
75
|
|
|
@@ -107,26 +115,27 @@ Questions? Or ready to start?
|
|
|
107
115
|
### Recommendation Logic
|
|
108
116
|
|
|
109
117
|
Before recommending the next skill, read `developerPreferences.scope` if present:
|
|
118
|
+
|
|
110
119
|
- `frontend` -> do not recommend `brainstorm-schema`; `brainstorm-api` only as a consumer contract; prioritize `StyleGuide.md`, `rules.md`, `Task.md`, and `developer`
|
|
111
120
|
- `backend` -> do not recommend `brainstorm-styleguide`; prioritize `schema.md`, `api.md`, `rules.md`, `Task.md`, and `developer`
|
|
112
121
|
- `fullstack` or missing -> use the full logic in the table below
|
|
113
122
|
|
|
114
|
-
| Condition
|
|
115
|
-
|
|
116
|
-
| Codebase exists, no `project-context/`
|
|
117
|
-
| No spec files exist
|
|
118
|
-
| Only PRD exists
|
|
119
|
-
| PRD + Architecture exist, schema/api/rules are missing
|
|
120
|
-
| PRD + Architecture exist, UI direction is needed
|
|
121
|
-
| All files exist except Task.md
|
|
122
|
-
| Task.md exists, incomplete tasks `[ ]` remain
|
|
123
|
+
| Condition | Next Step |
|
|
124
|
+
| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
125
|
+
| Codebase exists, no `project-context/` | Use `spec-init` |
|
|
126
|
+
| No spec files exist | Start with `brainstorm-prd` |
|
|
127
|
+
| Only PRD exists | Continue with `brainstorm-architecture` first |
|
|
128
|
+
| PRD + Architecture exist, schema/api/rules are missing | Do `brainstorm-schema`, then `brainstorm-api` and `brainstorm-rules` (flexible order, one per session) |
|
|
129
|
+
| PRD + Architecture exist, UI direction is needed | Use `brainstorm-styleguide` |
|
|
130
|
+
| All files exist except Task.md | Run `brainstorm-task` |
|
|
131
|
+
| Task.md exists, incomplete tasks `[ ]` remain | Continue with `developer` |
|
|
123
132
|
| All tasks are complete `[x]`, and a small bounded technical change still has a clear phase/task anchor | Use `quick-dev`; use `developer` for larger maintenance, unclear anchoring, or broader post-task work; use `add-feature` when official business/spec scope expands |
|
|
124
|
-
| A bug is reported
|
|
125
|
-
| Need to check spec consistency
|
|
126
|
-
| Want to audit the MACCA framework itself
|
|
127
|
-
| Want one structured round of team input
|
|
128
|
-
| Preparing a completed candidate for production
|
|
129
|
-
| All tasks are complete, no changes remain
|
|
133
|
+
| A bug is reported | Use `bug-fix` |
|
|
134
|
+
| Need to check spec consistency | Run `spec-audit` in **project mode** |
|
|
135
|
+
| Want to audit the MACCA framework itself | Run `spec-audit` in **framework mode** |
|
|
136
|
+
| Want one structured round of team input | Run `meet` |
|
|
137
|
+
| Preparing a completed candidate for production | Run `release-readiness` |
|
|
138
|
+
| All tasks are complete, no changes remain | Run `spec-audit` in **project mode**; before production release, run `release-readiness` |
|
|
130
139
|
|
|
131
140
|
---
|
|
132
141
|
|
|
@@ -143,10 +152,17 @@ For deeper questions, use the routing guide below instead of answering from memo
|
|
|
143
152
|
For deeper workflow questions, inspect the active MACCA collection: skill descriptions and `SKILL.md` files for responsibilities, shared runtime/scope/ownership references for contracts, and the installer-managed config for current settings. Read a repository-root `README.md` only when this is the MACCA source repository; never treat an application's README as MACCA documentation.
|
|
144
153
|
|
|
145
154
|
Keep inline explanations short:
|
|
146
|
-
|
|
147
|
-
- `
|
|
148
|
-
- `
|
|
149
|
-
- `
|
|
155
|
+
|
|
156
|
+
- `brainstorm-*` = defines source-of-truth planning documents (`PRD.md`, `architecture.md`, `schema.md`, `api.md`, `StyleGuide.md`, `rules.md`, `Task.md`)
|
|
157
|
+
- `developer` = executes `Task.md` phase by phase with phase-closing gates
|
|
158
|
+
- `quick-dev` = executes one small, focused task anchored to an active phase
|
|
159
|
+
- `bug-fix` = investigates root causes, fixes bugs, and maintains `bug-log.md`
|
|
160
|
+
- `spec-compliance` = checks whether the code matches all agreed specs
|
|
161
|
+
- `code-review` = reviews code quality and security using standard checklists
|
|
162
|
+
- `spec-audit` = audits consistency between spec documents (project mode) or framework definitions (framework mode)
|
|
163
|
+
- `add-feature` = updates all affected specs and adds a new phase when expanding official business scope
|
|
164
|
+
- `spec-init` = reverse-engineers baseline specs from an existing codebase
|
|
165
|
+
- `meet` = runs a single-round structured meeting with all expert personas
|
|
150
166
|
- `release-readiness` = report-only gate for deployment, migration, config, observability, rollback, and operational evidence
|
|
151
167
|
|
|
152
168
|
If a question needs exact wording or edge-case details, read the matching README section first instead of paraphrasing from memory.
|
|
@@ -11,6 +11,8 @@ metadata:
|
|
|
11
11
|
|
|
12
12
|
## Shared Runtime Setup
|
|
13
13
|
|
|
14
|
+
Paths written as `../...` below are relative to this SKILL.md's own folder, not the project's working directory - resolve them as a sibling of the folder that contains this file.
|
|
15
|
+
|
|
14
16
|
At startup:
|
|
15
17
|
|
|
16
18
|
1. Read `../_shared/references/language-config.md`.
|
|
@@ -84,7 +86,7 @@ Use this fixed order and skip unselected personas:
|
|
|
84
86
|
|
|
85
87
|
Each selected persona gets exactly one block:
|
|
86
88
|
|
|
87
|
-
|
|
89
|
+
```markdown
|
|
88
90
|
### @Persona — [Role]
|
|
89
91
|
|
|
90
92
|
**Recommendation:** [one clear recommendation]
|
|
@@ -96,7 +98,7 @@ Each selected persona gets exactly one block:
|
|
|
96
98
|
**Risk / trade-off:** [most important risk, or "No material risk identified"]
|
|
97
99
|
|
|
98
100
|
**Suggested action:** [one concrete next action]
|
|
99
|
-
|
|
101
|
+
```
|
|
100
102
|
|
|
101
103
|
Contribution rules:
|
|
102
104
|
|
|
@@ -133,26 +135,31 @@ The meeting is discussion-only. It reports artifact handoffs but does not edit t
|
|
|
133
135
|
|
|
134
136
|
Use this structure in the same meeting response:
|
|
135
137
|
|
|
136
|
-
|
|
138
|
+
```markdown
|
|
137
139
|
## @Galbi — Meeting Summary
|
|
138
140
|
|
|
139
141
|
### Final Decisions
|
|
142
|
+
|
|
140
143
|
- [decision, or "No final decision yet"]
|
|
141
144
|
|
|
142
145
|
### Open Questions
|
|
146
|
+
|
|
143
147
|
- [unresolved item, or "None"]
|
|
144
148
|
|
|
145
149
|
### Action Items
|
|
150
|
+
|
|
146
151
|
- [action] — owner: `[skill-name]`
|
|
147
152
|
|
|
148
153
|
### Artifact Handoffs
|
|
154
|
+
|
|
149
155
|
- `project-context/[filename].md` — [required update]
|
|
150
156
|
|
|
151
157
|
### Recommended Next Skill
|
|
158
|
+
|
|
152
159
|
- `[skill-name]` — [reason]
|
|
153
160
|
|
|
154
161
|
Meeting closed. Start a new `meet` if another round is needed.
|
|
155
|
-
|
|
162
|
+
```
|
|
156
163
|
|
|
157
164
|
## Rules
|
|
158
165
|
|
|
@@ -11,6 +11,8 @@ metadata:
|
|
|
11
11
|
|
|
12
12
|
## Shared Runtime Setup
|
|
13
13
|
|
|
14
|
+
Paths written as `../...` below are relative to this SKILL.md's own folder, not the project's working directory - resolve them as a sibling of the folder that contains this file (this also applies to the `../developer/references/...` reads later in this file).
|
|
15
|
+
|
|
14
16
|
Before any output:
|
|
15
17
|
|
|
16
18
|
1. Read `../_shared/references/language-config.md`.
|
|
@@ -51,13 +53,17 @@ If the request meets ANY of these, do NOT proceed. Redirect to `developer`:
|
|
|
51
53
|
Read `.agents/developer-config.json`. Extract `name` and `project`.
|
|
52
54
|
|
|
53
55
|
**If both exist:**
|
|
56
|
+
|
|
54
57
|
> "Back again, [name]. **Firdaus** here — ready for a quick fix on **[project]**. What needs doing?"
|
|
55
58
|
|
|
56
59
|
**If name exists, project empty:**
|
|
60
|
+
|
|
57
61
|
> "Back again, [name]. **Firdaus** here — ready. What needs doing?"
|
|
58
62
|
|
|
59
63
|
**If name missing:**
|
|
64
|
+
|
|
60
65
|
> "Hi. I am **Firdaus**. Before we start:
|
|
66
|
+
>
|
|
61
67
|
> 1. What is your name?
|
|
62
68
|
> 2. What is the project name?"
|
|
63
69
|
|
|
@@ -79,7 +85,7 @@ Read `additionalSkills` and `availableMCPs` from `.agents/developer-config.json`
|
|
|
79
85
|
Read `developerPreferences.scope` from `.agents/developer-config.json`.
|
|
80
86
|
|
|
81
87
|
- **Exists:** show `[Scope: frontend / backend / fullstack]`. Tell the user to correct now if needed.
|
|
82
|
-
- **Missing:** ask once using the same question as
|
|
88
|
+
- **Missing:** ask once using the same question as `../developer/references/onboarding.md` § Developer Scope. Save answer.
|
|
83
89
|
|
|
84
90
|
---
|
|
85
91
|
|
|
@@ -109,6 +115,7 @@ Need confirmation before proceeding: ← omit entire block if none
|
|
|
109
115
|
```
|
|
110
116
|
|
|
111
117
|
**Rules:**
|
|
118
|
+
|
|
112
119
|
- Omit "Need confirmation" block entirely if there are no blocking ambiguities.
|
|
113
120
|
- Non-blocking ambiguities go under "Assumptions" as `[~]` — not as questions.
|
|
114
121
|
- If a needed spec is missing (e.g. no `StyleGuide.md` but task touches UI), note it under Specs as `StyleGuide.md — missing, UI compliance cannot be verified`.
|
|
@@ -119,34 +126,35 @@ Need confirmation before proceeding: ← omit entire block if none
|
|
|
119
126
|
## Step 2 — Read Relevant Specs
|
|
120
127
|
|
|
121
128
|
Verify `project-context/` exists.
|
|
129
|
+
|
|
122
130
|
- `architecture.md` → **required**. If missing, stop and ask the user to run `brainstorm-architecture` first.
|
|
123
131
|
- Others → optional. If missing and needed, the gap was already noted in Step 1.
|
|
124
132
|
|
|
125
133
|
Read only what the task needs:
|
|
126
134
|
|
|
127
|
-
| Condition
|
|
128
|
-
|
|
129
|
-
| Always
|
|
130
|
-
| Touches database / models
|
|
131
|
-
| Touches API / service endpoints
|
|
132
|
-
| Touches UI / pages / components
|
|
133
|
-
| Feature or requirement is unclear | + `project-context/PRD.md`
|
|
135
|
+
| Condition | Read |
|
|
136
|
+
| --------------------------------- | ------------------------------------------------------------- |
|
|
137
|
+
| Always | `project-context/rules.md`, `project-context/architecture.md` |
|
|
138
|
+
| Touches database / models | + `project-context/schema.md` |
|
|
139
|
+
| Touches API / service endpoints | + `project-context/api.md` |
|
|
140
|
+
| Touches UI / pages / components | + `project-context/StyleGuide.md` |
|
|
141
|
+
| Feature or requirement is unclear | + `project-context/PRD.md` |
|
|
134
142
|
|
|
135
143
|
Scan `[FORBIDDEN]` in `rules.md` before any coding.
|
|
136
144
|
|
|
137
145
|
**Scope enforcement** — use `architecture.md` as the primary boundary:
|
|
138
146
|
|
|
139
|
-
| Scope
|
|
140
|
-
|
|
141
|
-
| `frontend`
|
|
142
|
-
| `backend`
|
|
143
|
-
| `fullstack` or missing | No restriction
|
|
147
|
+
| Scope | Restriction |
|
|
148
|
+
| ---------------------- | --------------------------- |
|
|
149
|
+
| `frontend` | Do not touch backend files |
|
|
150
|
+
| `backend` | Do not touch frontend files |
|
|
151
|
+
| `fullstack` or missing | No restriction |
|
|
144
152
|
|
|
145
153
|
---
|
|
146
154
|
|
|
147
155
|
## Step 2b — Record an Approved Scope Delta Before Coding
|
|
148
156
|
|
|
149
|
-
If the task is outside `project-context/`, follow the approval flow
|
|
157
|
+
If the task is outside `project-context/`, follow the approval flow in `../developer/references/execute-task.md` § Understand and Protect Scope before editing code. After approval, create or update the lightweight `Task.md` entry immediately with `status: in-progress` and the delta details. If `Task.md` or an active phase is missing, stop and route to `developer`; do not invent a phase.
|
|
150
158
|
|
|
151
159
|
## Step 3 — Execute
|
|
152
160
|
|
|
@@ -166,17 +174,16 @@ The approved scope delta must already exist before this step. Never defer its re
|
|
|
166
174
|
|
|
167
175
|
Do a lightweight scan of `Task.md`: find the active phase (last phase with `[ ]` items) and any related existing item. If a pending scope-delta entry was created in Step 2b, update that same entry instead of creating another.
|
|
168
176
|
|
|
169
|
-
| Condition
|
|
170
|
-
|
|
171
|
-
| Related item found, `[ ]` | Mark `[x]`, add a brief implementation note if a decision was made
|
|
172
|
-
| Related item found, `[x]` | Add a sub-note describing the refinement
|
|
173
|
-
| No related item found
|
|
177
|
+
| Condition | Action |
|
|
178
|
+
| ------------------------- | ---------------------------------------------------------------------- |
|
|
179
|
+
| Related item found, `[ ]` | Mark `[x]`, add a brief implementation note if a decision was made |
|
|
180
|
+
| Related item found, `[x]` | Add a sub-note describing the refinement |
|
|
181
|
+
| No related item found | Append to active phase as new `[x]` with tag `(quick-fix: YYYY-MM-DD)` |
|
|
174
182
|
|
|
175
183
|
If a scope delta exists, record it inline:
|
|
176
184
|
|
|
177
185
|
```md
|
|
178
|
-
[x] [task description]
|
|
179
|
-
> Delta: [what was added/changed] — pending sync to [spec-doc].md
|
|
186
|
+
[x] [task description] (quick-fix: YYYY-MM-DD) > Delta: [what was added/changed] — pending sync to [spec-doc].md
|
|
180
187
|
```
|
|
181
188
|
|
|
182
189
|
---
|
|
@@ -186,7 +193,7 @@ If a scope delta exists, record it inline:
|
|
|
186
193
|
1. Run `spec-compliance`. Follow `fixMode` from Shared Runtime Setup.
|
|
187
194
|
2. Run `code-review`. Follow `fixMode` from Shared Runtime Setup.
|
|
188
195
|
|
|
189
|
-
Both follow the same gate
|
|
196
|
+
Both follow the same `spec-compliance` -> `code-review` gate sequence as `../developer/references/close-phase.md`. Do not proceed to Step 6 until both pass.
|
|
190
197
|
|
|
191
198
|
---
|
|
192
199
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: release-readiness
|
|
3
|
-
description: Produces a report-only production release readiness
|
|
3
|
+
description: Produces a report-only production release readiness audit from existing specs, quality gates, deployment configs, migrations, observability, rollback, and runbooks. Use whenever the user asks if the project is ready to ship, asks for a pre-release or production audit, or after all Task.md phases are finished. Never deploys or alters infrastructure.
|
|
4
4
|
compatibility: Requires the complete MACCA-METHOD collection with sibling _shared resources, git when reviewing diffs, and workspace file access.
|
|
5
5
|
metadata:
|
|
6
6
|
persona: "Fachri"
|
|
@@ -11,6 +11,8 @@ metadata:
|
|
|
11
11
|
|
|
12
12
|
## Shared Setup
|
|
13
13
|
|
|
14
|
+
Paths written as `../...` below are relative to this SKILL.md's own folder, not the project's working directory - resolve them as a sibling of the folder that contains this file.
|
|
15
|
+
|
|
14
16
|
1. Read `../_shared/references/language-config.md`.
|
|
15
17
|
2. Use the configured communication language.
|
|
16
18
|
3. This skill is report-only. Do not edit files, run deployment, publish packages, rotate secrets, apply migrations, or change infrastructure.
|
|
@@ -109,7 +111,7 @@ Verdicts:
|
|
|
109
111
|
|
|
110
112
|
Use this report:
|
|
111
113
|
|
|
112
|
-
|
|
114
|
+
```markdown
|
|
113
115
|
# Release Readiness Report
|
|
114
116
|
|
|
115
117
|
**Candidate:** [branch/commit/tag/version]
|
|
@@ -117,26 +119,30 @@ Use this report:
|
|
|
117
119
|
**Verdict:** READY / CONDITIONAL / NOT READY
|
|
118
120
|
|
|
119
121
|
## Evidence Summary
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
|
123
|
-
| RR-
|
|
124
|
-
| RR-
|
|
125
|
-
| RR-
|
|
126
|
-
| RR-
|
|
127
|
-
| RR-
|
|
128
|
-
| RR-
|
|
129
|
-
| RR-
|
|
122
|
+
|
|
123
|
+
| Area | Status | Evidence |
|
|
124
|
+
| ----------------------------------- | -------------------------------- | -------- |
|
|
125
|
+
| RR-01 Scope & quality gates | PASS / FAIL / NOT VERIFIED / N/A | [source] |
|
|
126
|
+
| RR-02 Build, tests & smoke | ... | ... |
|
|
127
|
+
| RR-03 Config & secrets | ... | ... |
|
|
128
|
+
| RR-04 Migration & recovery | ... | ... |
|
|
129
|
+
| RR-05 Deploy, rollback & flags | ... | ... |
|
|
130
|
+
| RR-06 Observability & incidents | ... | ... |
|
|
131
|
+
| RR-07 Compatibility & communication | ... | ... |
|
|
132
|
+
| RR-08 UI operational experience | ... | ... |
|
|
130
133
|
|
|
131
134
|
## Blockers
|
|
135
|
+
|
|
132
136
|
- [blocker, evidence, owner]
|
|
133
137
|
|
|
134
138
|
## Required Before Release
|
|
139
|
+
|
|
135
140
|
- [action] — owner: [role] — validation: [proof required]
|
|
136
141
|
|
|
137
142
|
## Accepted Residual Risks
|
|
143
|
+
|
|
138
144
|
- [risk and explicit owner/expiry] / None
|
|
139
|
-
|
|
145
|
+
```
|
|
140
146
|
|
|
141
147
|
## Rules
|
|
142
148
|
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright 2026 Anthropic, PBC.
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|