continuous-improvement 3.16.0 → 3.17.0
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/marketplace.json +2 -2
- package/CHANGELOG.md +6 -0
- package/README.md +2 -2
- package/commands/intent-driven-development.md +36 -0
- package/lib/plugin-metadata.mjs +1 -1
- package/llms.txt +1 -1
- package/package.json +2 -2
- package/plugins/beginner.json +1 -1
- package/plugins/continuous-improvement/.claude-plugin/marketplace.json +2 -2
- package/plugins/continuous-improvement/.claude-plugin/plugin.json +2 -2
- package/plugins/continuous-improvement/commands/intent-driven-development.md +36 -0
- package/plugins/continuous-improvement/lib/plugin-metadata.mjs +1 -1
- package/plugins/continuous-improvement/skills/README.md +1 -0
- package/plugins/continuous-improvement/skills/intent-driven-development/SKILL.md +161 -0
- package/plugins/expert.json +1 -1
- package/skills/intent-driven-development.md +161 -0
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"plugins": [
|
|
8
8
|
{
|
|
9
9
|
"name": "continuous-improvement",
|
|
10
|
-
"description": "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as
|
|
11
|
-
"version": "3.
|
|
10
|
+
"description": "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as 27 bundled skills, instinct-aware hooks, an MCP toolset for recall and reflection, and a GitHub Action transcript linter that feeds real work history back into sharper instincts.",
|
|
11
|
+
"version": "3.17.0",
|
|
12
12
|
"source": "./plugins/continuous-improvement",
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "naimkatiman"
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this skill are documented here.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [3.17.0] — 2026-06-28
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **`/intent-driven-development`**: turn an ambiguous or high-impact change into verifiable acceptance criteria before you build. Converts a fuzzy request into observable `AC-NNN` criteria with named verification methods and a `[revised]` protocol that forbids silently dropping a criterion mid-build, so "done" is falsifiable and the agreed plan is held sacred (Law 2). Tier 2 (expert install). Brings the bundle to 27 skills. (#258)
|
|
12
|
+
|
|
7
13
|
## [3.16.0] — 2026-06-27
|
|
8
14
|
|
|
9
15
|
### Added
|
package/README.md
CHANGED
|
@@ -261,7 +261,7 @@ All 18 ship in the marketplace bundle. The Beginner install gets all of them —
|
|
|
261
261
|
|
|
262
262
|
## Skills
|
|
263
263
|
|
|
264
|
-
The plugin ships **
|
|
264
|
+
The plugin ships **27 skills** — 1 core + 1 featured + 6 tier-1 + 16 tier-2 + 3 always-bundled. Beginner install gets tier-1, featured, and the always-bundled companion; Expert adds tier-2, the MCP server, and observation hooks. Full catalog with per-skill descriptions, Law tagging, and drop-in single-file install: [docs/skills.md](docs/skills.md). Adding a 28th skill: [CONTRIBUTING.md § Evolution — adding a new skill](CONTRIBUTING.md#evolution--adding-a-new-skill).
|
|
265
265
|
|
|
266
266
|
---
|
|
267
267
|
|
|
@@ -320,7 +320,7 @@ Authored end-to-end with `/superpowers` and `/proceed-with-the-recommendation`:
|
|
|
320
320
|
|
|
321
321
|
- [QUICKSTART.md](QUICKSTART.md) — 2-minute setup
|
|
322
322
|
- [SKILL.md](SKILL.md) — full 7 Laws spec
|
|
323
|
-
- [docs/skills.md](docs/skills.md) — full
|
|
323
|
+
- [docs/skills.md](docs/skills.md) — full 27-skill catalog
|
|
324
324
|
- [examples/](examples/) — bug fix, feature build, refactor walkthroughs
|
|
325
325
|
- [templates/insights-claude-md.md](templates/insights-claude-md.md) — paste-in CLAUDE.md blocks for verification discipline, environment notes, think-before-acting, and git/deploy workflow (sourced from the 28-day usage report)
|
|
326
326
|
- [CONTRIBUTING.md](CONTRIBUTING.md) — architecture, repo internals, adding a new skill
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: intent-driven-development
|
|
3
|
+
description: "Turn an ambiguous or high-impact change into scoped, verifiable acceptance criteria (observable AC-NNN, explicit scope, named verification methods, and a [revised] protocol that forbids silently dropping a criterion) before or alongside implementation. Enforces Law 2 (Plan Is Sacred)."
|
|
4
|
+
argument-hint: "[the change to scope into acceptance criteria]"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# /intent-driven-development
|
|
8
|
+
|
|
9
|
+
Convert an ambiguous or high-impact request into observable acceptance criteria before you build, so "done" is a fact two people would agree on and the agreed plan is held sacred (Law 2). Produce useful criteria without ceremony: inspect context first, expose only genuine ambiguity, choose verification that fits the risk.
|
|
10
|
+
|
|
11
|
+
## Trigger phrases
|
|
12
|
+
|
|
13
|
+
- `/intent-driven-development`
|
|
14
|
+
- `/intent-driven-development <the change>`
|
|
15
|
+
- "define acceptance criteria"
|
|
16
|
+
- "scope this change" / "make this testable"
|
|
17
|
+
- "de-risk this before we build it"
|
|
18
|
+
- "prepare implementation requirements for another agent"
|
|
19
|
+
|
|
20
|
+
Do not trigger for trivial edits, one-line fixes, active debugging, code review, or requests whose acceptance conditions are already clear.
|
|
21
|
+
|
|
22
|
+
## What happens
|
|
23
|
+
|
|
24
|
+
1. **Inspect and scope.** Read the repo, docs, schemas, and tests for technical facts before asking. Capture product or business constraints only from the user or a product artifact, never inferred from code.
|
|
25
|
+
2. **Choose depth.** Quick Capture (3-7 criteria, low or moderate risk) or Full Acceptance Brief (security, data, migration, cross-system, or handoff).
|
|
26
|
+
3. **Write criteria.** Each `AC-NNN` names a scenario, a trigger, an expected observable result, a prohibited side effect when meaningful, a verification method, and a priority. No vague words without defined evidence.
|
|
27
|
+
4. **Proceed or hand off.** Record the criteria and continue for a clear request; present blockers and wait when a change is risky. If a criterion cannot be met mid-build, mark it `[revised]`, increment the revision, and re-present only the changed criteria.
|
|
28
|
+
|
|
29
|
+
## Skill file
|
|
30
|
+
|
|
31
|
+
Full behavior is defined in [`skills/intent-driven-development.md`](../skills/intent-driven-development.md).
|
|
32
|
+
|
|
33
|
+
## Pairs with
|
|
34
|
+
|
|
35
|
+
- `/grill-me`: grill-me clarifies a fuzzy input; this skill turns the agreed intent into verifiable criteria.
|
|
36
|
+
- `/roast`: roast validates the idea, then scope the survivor into acceptance criteria.
|
package/lib/plugin-metadata.mjs
CHANGED
|
@@ -26,7 +26,7 @@ const KEYWORDS = [
|
|
|
26
26
|
"transcript-linter",
|
|
27
27
|
];
|
|
28
28
|
const CLAUDE_PLUGIN_CATEGORY = "productivity";
|
|
29
|
-
const SHARED_PLUGIN_DESCRIPTION = "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as
|
|
29
|
+
const SHARED_PLUGIN_DESCRIPTION = "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as 27 bundled skills, instinct-aware hooks, an MCP toolset for recall and reflection, and a GitHub Action transcript linter that feeds real work history back into sharper instincts.";
|
|
30
30
|
// Four vendored upstream companions registered alongside the CI plugin.
|
|
31
31
|
// Each entry points at a pinned-SHA snapshot under third-party/<name>/.
|
|
32
32
|
// See third-party/MANIFEST.md for refresh recipes and per-snapshot
|
package/llms.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# continuous-improvement
|
|
2
2
|
|
|
3
|
-
> The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as
|
|
3
|
+
> The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as 27 bundled skills, instinct-aware hooks, an MCP toolset for recall and reflection, and a GitHub Action transcript linter that feeds real work history back into sharper instincts.
|
|
4
4
|
|
|
5
5
|
## What This Is
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "continuous-improvement",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as
|
|
3
|
+
"version": "3.17.0",
|
|
4
|
+
"description": "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as 27 bundled skills, instinct-aware hooks, an MCP toolset for recall and reflection, and a GitHub Action transcript linter that feeds real work history back into sharper instincts. Beginner: one /plugin install command. Expert: adds MCP tools and session hooks.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
7
7
|
"claude-code-skill",
|
package/plugins/beginner.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "continuous-improvement",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"mode": "beginner",
|
|
5
5
|
"description": "Beginner mode: see what your agent learned, list its instincts, and request a session reflection. Bundles three grounding skills (gateguard, tdd-workflow, verification-loop) so research, memory, tests, and verification happen by default — every edit starts from facts, not guesses.",
|
|
6
6
|
"tools": [
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"plugins": [
|
|
8
8
|
{
|
|
9
9
|
"name": "continuous-improvement",
|
|
10
|
-
"description": "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as
|
|
11
|
-
"version": "3.
|
|
10
|
+
"description": "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as 27 bundled skills, instinct-aware hooks, an MCP toolset for recall and reflection, and a GitHub Action transcript linter that feeds real work history back into sharper instincts.",
|
|
11
|
+
"version": "3.17.0",
|
|
12
12
|
"source": "./",
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "naimkatiman"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "continuous-improvement",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as
|
|
3
|
+
"version": "3.17.0",
|
|
4
|
+
"description": "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as 27 bundled skills, instinct-aware hooks, an MCP toolset for recall and reflection, and a GitHub Action transcript linter that feeds real work history back into sharper instincts.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "naimkatiman",
|
|
7
7
|
"url": "https://github.com/naimkatiman"
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: intent-driven-development
|
|
3
|
+
description: "Turn an ambiguous or high-impact change into scoped, verifiable acceptance criteria (observable AC-NNN, explicit scope, named verification methods, and a [revised] protocol that forbids silently dropping a criterion) before or alongside implementation. Enforces Law 2 (Plan Is Sacred)."
|
|
4
|
+
argument-hint: "[the change to scope into acceptance criteria]"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# /intent-driven-development
|
|
8
|
+
|
|
9
|
+
Convert an ambiguous or high-impact request into observable acceptance criteria before you build, so "done" is a fact two people would agree on and the agreed plan is held sacred (Law 2). Produce useful criteria without ceremony: inspect context first, expose only genuine ambiguity, choose verification that fits the risk.
|
|
10
|
+
|
|
11
|
+
## Trigger phrases
|
|
12
|
+
|
|
13
|
+
- `/intent-driven-development`
|
|
14
|
+
- `/intent-driven-development <the change>`
|
|
15
|
+
- "define acceptance criteria"
|
|
16
|
+
- "scope this change" / "make this testable"
|
|
17
|
+
- "de-risk this before we build it"
|
|
18
|
+
- "prepare implementation requirements for another agent"
|
|
19
|
+
|
|
20
|
+
Do not trigger for trivial edits, one-line fixes, active debugging, code review, or requests whose acceptance conditions are already clear.
|
|
21
|
+
|
|
22
|
+
## What happens
|
|
23
|
+
|
|
24
|
+
1. **Inspect and scope.** Read the repo, docs, schemas, and tests for technical facts before asking. Capture product or business constraints only from the user or a product artifact, never inferred from code.
|
|
25
|
+
2. **Choose depth.** Quick Capture (3-7 criteria, low or moderate risk) or Full Acceptance Brief (security, data, migration, cross-system, or handoff).
|
|
26
|
+
3. **Write criteria.** Each `AC-NNN` names a scenario, a trigger, an expected observable result, a prohibited side effect when meaningful, a verification method, and a priority. No vague words without defined evidence.
|
|
27
|
+
4. **Proceed or hand off.** Record the criteria and continue for a clear request; present blockers and wait when a change is risky. If a criterion cannot be met mid-build, mark it `[revised]`, increment the revision, and re-present only the changed criteria.
|
|
28
|
+
|
|
29
|
+
## Skill file
|
|
30
|
+
|
|
31
|
+
Full behavior is defined in [`skills/intent-driven-development.md`](../skills/intent-driven-development.md).
|
|
32
|
+
|
|
33
|
+
## Pairs with
|
|
34
|
+
|
|
35
|
+
- `/grill-me`: grill-me clarifies a fuzzy input; this skill turns the agreed intent into verifiable criteria.
|
|
36
|
+
- `/roast`: roast validates the idea, then scope the survivor into acceptance criteria.
|
|
@@ -26,7 +26,7 @@ const KEYWORDS = [
|
|
|
26
26
|
"transcript-linter",
|
|
27
27
|
];
|
|
28
28
|
const CLAUDE_PLUGIN_CATEGORY = "productivity";
|
|
29
|
-
const SHARED_PLUGIN_DESCRIPTION = "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as
|
|
29
|
+
const SHARED_PLUGIN_DESCRIPTION = "The persistent-memory and runtime-discipline layer for Claude Code. It remembers the corrections you already gave, grounds every edit in real facts before it lands, and — through the Mulahazah engine — turns each fix into a reusable instinct, so a lesson learned once is applied automatically next time with no re-teaching. Built on the 7 Laws of AI Agent Discipline (research, plan, verify, reflect, learn) and shipped as 27 bundled skills, instinct-aware hooks, an MCP toolset for recall and reflection, and a GitHub Action transcript linter that feeds real work history back into sharper instincts.";
|
|
30
30
|
// Four vendored upstream companions registered alongside the CI plugin.
|
|
31
31
|
// Each entry points at a pinned-SHA snapshot under third-party/<name>/.
|
|
32
32
|
// See third-party/MANIFEST.md for refresh recipes and per-snapshot
|
|
@@ -29,6 +29,7 @@ skill set on disk.
|
|
|
29
29
|
- `grill-me` — Enforces Law 1 (Research Before Executing) of the 7 Laws of AI Agent Discipline. Interview the user relentlessly about a plan or design until shared understanding is reached, resolving every branch of the decision tree before any code is written. Ported from mattpocock/skills under MIT.
|
|
30
30
|
- `grill-with-docs` — Enforces Law 1 (Research Before Executing) and Law 7 (Learn From Every Session) of the 7 Laws of AI Agent Discipline. Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates CONTEXT.md + ADRs inline as decisions crystallise. Ported from mattpocock/skills under MIT.
|
|
31
31
|
- `handoff` — Enforces Law 5 (Reflect After Every Session) of the 7 Laws of AI Agent Discipline. Compact the current conversation into a handoff document for another agent to pick up. Ported from mattpocock/skills under MIT.
|
|
32
|
+
- `intent-driven-development` — Enforces Law 2 (Plan Is Sacred) of the 7 Laws of AI Agent Discipline. Turn an ambiguous or high-impact change into scoped, verifiable acceptance criteria (observable AC-NNN, explicit in/out scope, named verification methods, and a [revised] protocol that forbids silently dropping a criterion) before or alongside implementation, so the plan that gets built is the plan that was agreed, not an invented default. Use when clarifying a feature, defining acceptance criteria, de-risking a security/data/migration/integration change, or preparing implementation requirements for another agent. Do not trigger for trivial edits, straightforward fixes, active debugging, or code review.
|
|
32
33
|
- `reconcile` — Enforces Law 1 (Research Before Executing) of the 7 Laws of AI Agent Discipline. Establishes git ground truth — branch, status, stashes, worktrees, ahead/behind — before any mutation, halts on protected or destructive operations, and verifies a push actually landed instead of assuming it did.
|
|
33
34
|
- `recovery-classification` — Enforces Law 4 (Verify Before Reporting) of the 7 Laws of AI Agent Discipline. After any failure in the verification ladder or auto-loop, classify the failure class before retrying — provider, tool-schema, deterministic-policy, git, worktree, runtime — so retry-vs-pause-vs-self-heal-vs-stop is an intentional decision, not a generic 'try again'.
|
|
34
35
|
- `roast` — Enforces Law 1 (Research Before Executing) of the 7 Laws of AI Agent Discipline. Convene a 5-persona adversarial council (Contrarian, Expansionist, Logician, Researcher, Buyer) that attacks an idea from every angle, then a Judge returns one GO / RESHAPE / KILL verdict plus the cheapest 48-hour test to de-risk it — so you pressure-test an idea before sinking time into building the wrong thing.
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: intent-driven-development
|
|
3
|
+
tier: "2"
|
|
4
|
+
description: "Enforces Law 2 (Plan Is Sacred) of the 7 Laws of AI Agent Discipline. Turn an ambiguous or high-impact change into scoped, verifiable acceptance criteria (observable AC-NNN, explicit in/out scope, named verification methods, and a [revised] protocol that forbids silently dropping a criterion) before or alongside implementation, so the plan that gets built is the plan that was agreed, not an invented default. Use when clarifying a feature, defining acceptance criteria, de-risking a security/data/migration/integration change, or preparing implementation requirements for another agent. Do not trigger for trivial edits, straightforward fixes, active debugging, or code review."
|
|
5
|
+
origin: continuous-improvement
|
|
6
|
+
user-invocable: true
|
|
7
|
+
argument-hint: "[the change to scope into acceptance criteria]"
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /intent-driven-development: scope the change before you build it
|
|
11
|
+
|
|
12
|
+
Law 2 says the plan is sacred: once a goal and its acceptance conditions are agreed, you do not silently drift from them. The cheapest way to honor that is to make the plan verifiable in the first place. A goal phrased as "make export work" cannot be held sacred because nobody can tell when it is met. This skill converts an ambiguous or high-impact request into observable acceptance criteria (`AC-001`, `AC-002`, ...) with named verification methods, so "done" is a fact two people would agree on, and a criterion can never be quietly dropped mid-build.
|
|
13
|
+
|
|
14
|
+
It produces useful criteria without turning specification into ceremony: inspect available context first, expose only genuine ambiguity, and choose verification that fits the work and its risk.
|
|
15
|
+
|
|
16
|
+
## When to activate
|
|
17
|
+
|
|
18
|
+
- The user asks to clarify a feature, define acceptance criteria, or de-risk a change before implementation.
|
|
19
|
+
- The request touches security, authentication, persistent data, migrations, external APIs, or compliance.
|
|
20
|
+
- The user wants a handoff artifact another agent or team can implement without inventing requirements.
|
|
21
|
+
- The request is ambiguous enough that the expected outcome is not yet observable or testable.
|
|
22
|
+
- The user types `/intent-driven-development`, "define acceptance criteria", "scope this change", or "make this testable".
|
|
23
|
+
|
|
24
|
+
Do not activate for trivial edits, one-line fixes, active debugging, code review, or implementation requests whose acceptance conditions are already clear.
|
|
25
|
+
|
|
26
|
+
## How it works
|
|
27
|
+
|
|
28
|
+
1. **Inspect context first.** Read the repository, docs, schemas, and test infrastructure for technical facts before asking any question. Treat product and business constraints as something only the user or a product artifact can supply.
|
|
29
|
+
2. **Choose depth.** Quick Capture (3-7 criteria, low or moderate risk) or Full Acceptance Brief (security, data, migration, cross-system, or handoff).
|
|
30
|
+
3. **Ask minimally.** Only ask questions whose answers cannot be inferred and that materially change scope or behavior. Group related questions into one batch.
|
|
31
|
+
4. Write observable criteria. Each AC-NNN names a scenario, a trigger, an expected observable result, a prohibited side effect when meaningful, a verification method, and a priority. Do not use "correctly" or "securely" without defined evidence.
|
|
32
|
+
5. **Proceed or hand off.** For a clear request with no blocking risk, record the criteria and continue. For a risky change, present the blockers and wait for confirmation.
|
|
33
|
+
6. **Hold the plan sacred.** If a criterion cannot be met due to a constraint found mid-build, do not silently drop or work around it. Mark it `[revised]`, state the constraint, adjust scope or verification, increment the revision number, and re-present only the changed criteria before continuing.
|
|
34
|
+
|
|
35
|
+
## Operating rules
|
|
36
|
+
|
|
37
|
+
1. Inspect available repository, docs, issue, design, and test context before asking for technical facts that can be discovered locally.
|
|
38
|
+
2. Do not infer product or business constraints from code. Business rules, compliance obligations, contractual SLAs, pricing, data-retention policy, prioritization, and target users cannot be read from a repository. Record them as assumptions flagged for confirmation, never as discovered facts. The repository tells you how the system behaves today, not what the business requires it to do.
|
|
39
|
+
3. Ask only questions whose answers are required and cannot be safely inferred.
|
|
40
|
+
4. Do not block implementation by default. When the user has asked to implement a sufficiently clear change, record key assumptions and criteria briefly, then proceed or hand them to the implementation workflow.
|
|
41
|
+
5. Require explicit confirmation before proceeding only when an unresolved decision could create material security exposure, data loss, irreversible migration, contractual or API breakage, meaningful cost, or destructive external action.
|
|
42
|
+
6. Do not write an acceptance document into a repository, alter project files, create a branch, commit, or invoke another skill unless the user requests it or the active workflow requires it.
|
|
43
|
+
7. Treat automated tests as evidence, not truth. Prefer automation when reliable and proportionate; allow manual UX, accessibility, security, legal, or operational verification where automation cannot establish the outcome.
|
|
44
|
+
8. Never include real secrets, credentials, tokens, private keys, personal data, or production payloads in criteria, fixtures, examples, or saved artifacts. Use redacted or synthetic values.
|
|
45
|
+
9. Do not run destructive tests, migrations, security probes, load tests, paid external calls, or operations against production data without explicit authorization and an identified safe environment.
|
|
46
|
+
10. When a criterion cannot be satisfied due to a constraint discovered during implementation, update it (`[revised]`, state the constraint, adjust scope or verification), increment the revision, and re-present only the changed criteria. Require confirmation only if the revision changes a blocking decision or reduces a safety or correctness guarantee.
|
|
47
|
+
|
|
48
|
+
## Choose the depth
|
|
49
|
+
|
|
50
|
+
Use the smallest useful output.
|
|
51
|
+
|
|
52
|
+
### Quick Capture
|
|
53
|
+
|
|
54
|
+
For a clear but non-trivial change with low or moderate risk. Produce: Goal; In scope and out of scope; Assumptions; 3-7 acceptance criteria with verification methods; blocking questions if any. Do not delay implementation for approval unless a blocking risk exists or the user asked for a spec first.
|
|
55
|
+
|
|
56
|
+
### Full Acceptance Brief
|
|
57
|
+
|
|
58
|
+
For ambiguous, cross-system, security-sensitive, data-changing, migration, compliance, or high-cost changes, or when the user wants a handoff artifact. Produce the full template below and request confirmation for unresolved blocking decisions before risky implementation.
|
|
59
|
+
|
|
60
|
+
### Existing specification review
|
|
61
|
+
|
|
62
|
+
When the user already supplied a PRD, issue, plan, or criteria: review it instead of restarting discovery. Identify missing scope boundaries, unsafe assumptions, contradictions, and unverifiable requirements. Return corrected or supplemental criteria.
|
|
63
|
+
|
|
64
|
+
## Write acceptance criteria
|
|
65
|
+
|
|
66
|
+
Use `AC-001`, `AC-002`, and so on. Criteria and tests need not map one-to-one. For each applicable criterion include: scenario or starting condition; action or trigger; expected observable behavior; prohibited side effect when meaningful; verification method (automated test, integration check, manual UX review, accessibility check, security review, operational check, or stakeholder acceptance); environment or safety constraint when verification could affect data, services, cost, or secrets; priority (Required, Important, or Optional).
|
|
67
|
+
|
|
68
|
+
Do not use "correctly", "securely", "fast", "intuitive", or "robust" without defining observable evidence or recording them as a human-review judgment.
|
|
69
|
+
|
|
70
|
+
Cover only the boundaries that apply:
|
|
71
|
+
|
|
72
|
+
| Category | Include when | Typical evidence |
|
|
73
|
+
| --- | --- | --- |
|
|
74
|
+
| Happy path | New or changed user-visible behavior | Successful workflow or state transition |
|
|
75
|
+
| Validation | The change accepts input | Malformed or boundary value rejected without mutation |
|
|
76
|
+
| Authorization/privacy | Data or actions have access boundaries | Denied access and no sensitive disclosure |
|
|
77
|
+
| Persistence/migration | Stored data or schemas change | Backward read, migration, rollback, or backup behavior |
|
|
78
|
+
| Compatibility | Public APIs, files, events, or clients may break | Existing contract or fixture stays valid |
|
|
79
|
+
| Failure recovery | Network, service, or async failure exists | No partial state, or clear retry and degraded behavior |
|
|
80
|
+
| Idempotency/concurrency | Repeats or simultaneous writes are plausible | No duplicate side effect or invalid final state |
|
|
81
|
+
| Performance | A user or service threshold matters | Defined measurement conditions and threshold |
|
|
82
|
+
| UX/accessibility | A person interacts with the result | Keyboard, feedback, error recovery, visual or manual review |
|
|
83
|
+
|
|
84
|
+
## Output template (Full Acceptance Brief)
|
|
85
|
+
|
|
86
|
+
Omit irrelevant sections for Quick Capture.
|
|
87
|
+
|
|
88
|
+
```markdown
|
|
89
|
+
# Acceptance Brief: <Change Name>
|
|
90
|
+
|
|
91
|
+
**Status:** Draft | Approved | Implemented | Verified
|
|
92
|
+
**Revision:** <number>
|
|
93
|
+
**Prepared for:** <user/team/agent, when known>
|
|
94
|
+
|
|
95
|
+
## Goal
|
|
96
|
+
<One observable outcome sentence.>
|
|
97
|
+
|
|
98
|
+
## Scope
|
|
99
|
+
**In scope:** <behavior included>
|
|
100
|
+
**Out of scope:** <adjacent work excluded>
|
|
101
|
+
|
|
102
|
+
## Context
|
|
103
|
+
**Discovered facts** (technical, verified from repository or artifact)
|
|
104
|
+
**Product/business constraints** (supplied by user or artifact, never inferred from code, or "none supplied yet")
|
|
105
|
+
**Assumptions** (unverified claims to confirm)
|
|
106
|
+
**Dependencies and constraints**
|
|
107
|
+
|
|
108
|
+
## Risk Review
|
|
109
|
+
| Risk area | Applies? | Required handling |
|
|
110
|
+
| --- | --- | --- |
|
|
111
|
+
| Security/privacy | Yes/No | <redaction, authorization, review> |
|
|
112
|
+
| Persistent data/migration | Yes/No | <compatibility, backup, rollback> |
|
|
113
|
+
| External effects/cost | Yes/No | <sandbox, test environment, authorization> |
|
|
114
|
+
| Compatibility/API | Yes/No | <contract to preserve or version> |
|
|
115
|
+
| UX/accessibility | Yes/No | <manual or automated evidence> |
|
|
116
|
+
|
|
117
|
+
## Acceptance Criteria
|
|
118
|
+
### AC-001: <observable behavior>
|
|
119
|
+
- **Scenario:** <starting condition>
|
|
120
|
+
- **Action:** <single trigger>
|
|
121
|
+
- **Expected:** <observable result>
|
|
122
|
+
- **Must not:** <prohibited side effect, if applicable>
|
|
123
|
+
- **Verification:** <method and intended evidence>
|
|
124
|
+
- **Environment/safety:** <constraints, if applicable>
|
|
125
|
+
- **Priority:** Required | Important | Optional
|
|
126
|
+
|
|
127
|
+
## Blocking Decisions
|
|
128
|
+
- [ ] <only decisions that prevent safe or correct progress>
|
|
129
|
+
|
|
130
|
+
## Verification Plan
|
|
131
|
+
| Criterion | Verification evidence | Status |
|
|
132
|
+
| --- | --- | --- |
|
|
133
|
+
| AC-001 | <test, check, or review command or evidence type> | Pending |
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
## Pass/fail rubric
|
|
137
|
+
|
|
138
|
+
A brief passes only if every answer is "yes". Any "no" means revise before returning it.
|
|
139
|
+
|
|
140
|
+
- [ ] Does every required criterion have a scenario, an observable expected result, and a named verification method?
|
|
141
|
+
- [ ] Are vague terms ("correctly", "secure", "fast", "robust") either replaced with observable evidence or marked as human judgment?
|
|
142
|
+
- [ ] Are product and business constraints listed as supplied or assumed, with none silently inferred from code?
|
|
143
|
+
- [ ] Is scope explicit, with out-of-scope items named?
|
|
144
|
+
- [ ] Are blocking decisions limited to choices that actually affect safety or correctness, not preferences?
|
|
145
|
+
|
|
146
|
+
A failing criterion: `AC-001: The export works correctly and is secure.` (no scenario, no observable result, no verification, "correctly" and "secure" undefined). A passing one names the scenario, the expected result, the prohibited side effect, and the verification method, so two people would agree it was met.
|
|
147
|
+
|
|
148
|
+
## How it fits the 7 Laws
|
|
149
|
+
|
|
150
|
+
| Law | Role of this skill |
|
|
151
|
+
|---|---|
|
|
152
|
+
| Law 2 (Plan Is Sacred) | The acceptance brief **is** the sacred plan: observable criteria, explicit scope, and a `[revised]` protocol that forbids silently dropping or working around a criterion mid-build. |
|
|
153
|
+
| Law 1 (Research Before Executing) | Rule 1 inspects repo, docs, schemas, and tests for technical facts before asking, and refuses to infer business rules from code. |
|
|
154
|
+
| Law 4 (Verify Before Reporting) | Every criterion carries a named verification method and a pass/fail rubric, so "done" is falsifiable rather than asserted. |
|
|
155
|
+
|
|
156
|
+
## Pairs with
|
|
157
|
+
|
|
158
|
+
- [`grill-me`](./grill-me.md): interviews a fuzzy request to a shippable spec. Reach for `grill-me` when the input is unclear, then this skill to turn the agreed intent into verifiable criteria.
|
|
159
|
+
- [`roast`](./roast.md): validates whether the idea should exist at all. Roast first, then scope the survivor into acceptance criteria.
|
|
160
|
+
- [`goal-monitor`](./goal-monitor.md): the runtime drift gate. The `## Goal` and criteria this skill produces are what goal-monitor scores a session against.
|
|
161
|
+
- [`verification-loop`](./verification-loop.md): runs the per-project verify ladder. The criteria's verification methods feed its evidence step.
|
package/plugins/expert.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "continuous-improvement",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"mode": "expert",
|
|
5
5
|
"description": "Expert mode: tune confidence, manage instincts, and persist plans on disk. Adds safety, token-budget, and strategic-compact skills plus the /learn-eval command so long sessions stay sharp and learnings survive context resets.",
|
|
6
6
|
"tools": [
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: intent-driven-development
|
|
3
|
+
tier: "2"
|
|
4
|
+
description: "Enforces Law 2 (Plan Is Sacred) of the 7 Laws of AI Agent Discipline. Turn an ambiguous or high-impact change into scoped, verifiable acceptance criteria (observable AC-NNN, explicit in/out scope, named verification methods, and a [revised] protocol that forbids silently dropping a criterion) before or alongside implementation, so the plan that gets built is the plan that was agreed, not an invented default. Use when clarifying a feature, defining acceptance criteria, de-risking a security/data/migration/integration change, or preparing implementation requirements for another agent. Do not trigger for trivial edits, straightforward fixes, active debugging, or code review."
|
|
5
|
+
origin: continuous-improvement
|
|
6
|
+
user-invocable: true
|
|
7
|
+
argument-hint: "[the change to scope into acceptance criteria]"
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /intent-driven-development: scope the change before you build it
|
|
11
|
+
|
|
12
|
+
Law 2 says the plan is sacred: once a goal and its acceptance conditions are agreed, you do not silently drift from them. The cheapest way to honor that is to make the plan verifiable in the first place. A goal phrased as "make export work" cannot be held sacred because nobody can tell when it is met. This skill converts an ambiguous or high-impact request into observable acceptance criteria (`AC-001`, `AC-002`, ...) with named verification methods, so "done" is a fact two people would agree on, and a criterion can never be quietly dropped mid-build.
|
|
13
|
+
|
|
14
|
+
It produces useful criteria without turning specification into ceremony: inspect available context first, expose only genuine ambiguity, and choose verification that fits the work and its risk.
|
|
15
|
+
|
|
16
|
+
## When to activate
|
|
17
|
+
|
|
18
|
+
- The user asks to clarify a feature, define acceptance criteria, or de-risk a change before implementation.
|
|
19
|
+
- The request touches security, authentication, persistent data, migrations, external APIs, or compliance.
|
|
20
|
+
- The user wants a handoff artifact another agent or team can implement without inventing requirements.
|
|
21
|
+
- The request is ambiguous enough that the expected outcome is not yet observable or testable.
|
|
22
|
+
- The user types `/intent-driven-development`, "define acceptance criteria", "scope this change", or "make this testable".
|
|
23
|
+
|
|
24
|
+
Do not activate for trivial edits, one-line fixes, active debugging, code review, or implementation requests whose acceptance conditions are already clear.
|
|
25
|
+
|
|
26
|
+
## How it works
|
|
27
|
+
|
|
28
|
+
1. **Inspect context first.** Read the repository, docs, schemas, and test infrastructure for technical facts before asking any question. Treat product and business constraints as something only the user or a product artifact can supply.
|
|
29
|
+
2. **Choose depth.** Quick Capture (3-7 criteria, low or moderate risk) or Full Acceptance Brief (security, data, migration, cross-system, or handoff).
|
|
30
|
+
3. **Ask minimally.** Only ask questions whose answers cannot be inferred and that materially change scope or behavior. Group related questions into one batch.
|
|
31
|
+
4. Write observable criteria. Each AC-NNN names a scenario, a trigger, an expected observable result, a prohibited side effect when meaningful, a verification method, and a priority. Do not use "correctly" or "securely" without defined evidence.
|
|
32
|
+
5. **Proceed or hand off.** For a clear request with no blocking risk, record the criteria and continue. For a risky change, present the blockers and wait for confirmation.
|
|
33
|
+
6. **Hold the plan sacred.** If a criterion cannot be met due to a constraint found mid-build, do not silently drop or work around it. Mark it `[revised]`, state the constraint, adjust scope or verification, increment the revision number, and re-present only the changed criteria before continuing.
|
|
34
|
+
|
|
35
|
+
## Operating rules
|
|
36
|
+
|
|
37
|
+
1. Inspect available repository, docs, issue, design, and test context before asking for technical facts that can be discovered locally.
|
|
38
|
+
2. Do not infer product or business constraints from code. Business rules, compliance obligations, contractual SLAs, pricing, data-retention policy, prioritization, and target users cannot be read from a repository. Record them as assumptions flagged for confirmation, never as discovered facts. The repository tells you how the system behaves today, not what the business requires it to do.
|
|
39
|
+
3. Ask only questions whose answers are required and cannot be safely inferred.
|
|
40
|
+
4. Do not block implementation by default. When the user has asked to implement a sufficiently clear change, record key assumptions and criteria briefly, then proceed or hand them to the implementation workflow.
|
|
41
|
+
5. Require explicit confirmation before proceeding only when an unresolved decision could create material security exposure, data loss, irreversible migration, contractual or API breakage, meaningful cost, or destructive external action.
|
|
42
|
+
6. Do not write an acceptance document into a repository, alter project files, create a branch, commit, or invoke another skill unless the user requests it or the active workflow requires it.
|
|
43
|
+
7. Treat automated tests as evidence, not truth. Prefer automation when reliable and proportionate; allow manual UX, accessibility, security, legal, or operational verification where automation cannot establish the outcome.
|
|
44
|
+
8. Never include real secrets, credentials, tokens, private keys, personal data, or production payloads in criteria, fixtures, examples, or saved artifacts. Use redacted or synthetic values.
|
|
45
|
+
9. Do not run destructive tests, migrations, security probes, load tests, paid external calls, or operations against production data without explicit authorization and an identified safe environment.
|
|
46
|
+
10. When a criterion cannot be satisfied due to a constraint discovered during implementation, update it (`[revised]`, state the constraint, adjust scope or verification), increment the revision, and re-present only the changed criteria. Require confirmation only if the revision changes a blocking decision or reduces a safety or correctness guarantee.
|
|
47
|
+
|
|
48
|
+
## Choose the depth
|
|
49
|
+
|
|
50
|
+
Use the smallest useful output.
|
|
51
|
+
|
|
52
|
+
### Quick Capture
|
|
53
|
+
|
|
54
|
+
For a clear but non-trivial change with low or moderate risk. Produce: Goal; In scope and out of scope; Assumptions; 3-7 acceptance criteria with verification methods; blocking questions if any. Do not delay implementation for approval unless a blocking risk exists or the user asked for a spec first.
|
|
55
|
+
|
|
56
|
+
### Full Acceptance Brief
|
|
57
|
+
|
|
58
|
+
For ambiguous, cross-system, security-sensitive, data-changing, migration, compliance, or high-cost changes, or when the user wants a handoff artifact. Produce the full template below and request confirmation for unresolved blocking decisions before risky implementation.
|
|
59
|
+
|
|
60
|
+
### Existing specification review
|
|
61
|
+
|
|
62
|
+
When the user already supplied a PRD, issue, plan, or criteria: review it instead of restarting discovery. Identify missing scope boundaries, unsafe assumptions, contradictions, and unverifiable requirements. Return corrected or supplemental criteria.
|
|
63
|
+
|
|
64
|
+
## Write acceptance criteria
|
|
65
|
+
|
|
66
|
+
Use `AC-001`, `AC-002`, and so on. Criteria and tests need not map one-to-one. For each applicable criterion include: scenario or starting condition; action or trigger; expected observable behavior; prohibited side effect when meaningful; verification method (automated test, integration check, manual UX review, accessibility check, security review, operational check, or stakeholder acceptance); environment or safety constraint when verification could affect data, services, cost, or secrets; priority (Required, Important, or Optional).
|
|
67
|
+
|
|
68
|
+
Do not use "correctly", "securely", "fast", "intuitive", or "robust" without defining observable evidence or recording them as a human-review judgment.
|
|
69
|
+
|
|
70
|
+
Cover only the boundaries that apply:
|
|
71
|
+
|
|
72
|
+
| Category | Include when | Typical evidence |
|
|
73
|
+
| --- | --- | --- |
|
|
74
|
+
| Happy path | New or changed user-visible behavior | Successful workflow or state transition |
|
|
75
|
+
| Validation | The change accepts input | Malformed or boundary value rejected without mutation |
|
|
76
|
+
| Authorization/privacy | Data or actions have access boundaries | Denied access and no sensitive disclosure |
|
|
77
|
+
| Persistence/migration | Stored data or schemas change | Backward read, migration, rollback, or backup behavior |
|
|
78
|
+
| Compatibility | Public APIs, files, events, or clients may break | Existing contract or fixture stays valid |
|
|
79
|
+
| Failure recovery | Network, service, or async failure exists | No partial state, or clear retry and degraded behavior |
|
|
80
|
+
| Idempotency/concurrency | Repeats or simultaneous writes are plausible | No duplicate side effect or invalid final state |
|
|
81
|
+
| Performance | A user or service threshold matters | Defined measurement conditions and threshold |
|
|
82
|
+
| UX/accessibility | A person interacts with the result | Keyboard, feedback, error recovery, visual or manual review |
|
|
83
|
+
|
|
84
|
+
## Output template (Full Acceptance Brief)
|
|
85
|
+
|
|
86
|
+
Omit irrelevant sections for Quick Capture.
|
|
87
|
+
|
|
88
|
+
```markdown
|
|
89
|
+
# Acceptance Brief: <Change Name>
|
|
90
|
+
|
|
91
|
+
**Status:** Draft | Approved | Implemented | Verified
|
|
92
|
+
**Revision:** <number>
|
|
93
|
+
**Prepared for:** <user/team/agent, when known>
|
|
94
|
+
|
|
95
|
+
## Goal
|
|
96
|
+
<One observable outcome sentence.>
|
|
97
|
+
|
|
98
|
+
## Scope
|
|
99
|
+
**In scope:** <behavior included>
|
|
100
|
+
**Out of scope:** <adjacent work excluded>
|
|
101
|
+
|
|
102
|
+
## Context
|
|
103
|
+
**Discovered facts** (technical, verified from repository or artifact)
|
|
104
|
+
**Product/business constraints** (supplied by user or artifact, never inferred from code, or "none supplied yet")
|
|
105
|
+
**Assumptions** (unverified claims to confirm)
|
|
106
|
+
**Dependencies and constraints**
|
|
107
|
+
|
|
108
|
+
## Risk Review
|
|
109
|
+
| Risk area | Applies? | Required handling |
|
|
110
|
+
| --- | --- | --- |
|
|
111
|
+
| Security/privacy | Yes/No | <redaction, authorization, review> |
|
|
112
|
+
| Persistent data/migration | Yes/No | <compatibility, backup, rollback> |
|
|
113
|
+
| External effects/cost | Yes/No | <sandbox, test environment, authorization> |
|
|
114
|
+
| Compatibility/API | Yes/No | <contract to preserve or version> |
|
|
115
|
+
| UX/accessibility | Yes/No | <manual or automated evidence> |
|
|
116
|
+
|
|
117
|
+
## Acceptance Criteria
|
|
118
|
+
### AC-001: <observable behavior>
|
|
119
|
+
- **Scenario:** <starting condition>
|
|
120
|
+
- **Action:** <single trigger>
|
|
121
|
+
- **Expected:** <observable result>
|
|
122
|
+
- **Must not:** <prohibited side effect, if applicable>
|
|
123
|
+
- **Verification:** <method and intended evidence>
|
|
124
|
+
- **Environment/safety:** <constraints, if applicable>
|
|
125
|
+
- **Priority:** Required | Important | Optional
|
|
126
|
+
|
|
127
|
+
## Blocking Decisions
|
|
128
|
+
- [ ] <only decisions that prevent safe or correct progress>
|
|
129
|
+
|
|
130
|
+
## Verification Plan
|
|
131
|
+
| Criterion | Verification evidence | Status |
|
|
132
|
+
| --- | --- | --- |
|
|
133
|
+
| AC-001 | <test, check, or review command or evidence type> | Pending |
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
## Pass/fail rubric
|
|
137
|
+
|
|
138
|
+
A brief passes only if every answer is "yes". Any "no" means revise before returning it.
|
|
139
|
+
|
|
140
|
+
- [ ] Does every required criterion have a scenario, an observable expected result, and a named verification method?
|
|
141
|
+
- [ ] Are vague terms ("correctly", "secure", "fast", "robust") either replaced with observable evidence or marked as human judgment?
|
|
142
|
+
- [ ] Are product and business constraints listed as supplied or assumed, with none silently inferred from code?
|
|
143
|
+
- [ ] Is scope explicit, with out-of-scope items named?
|
|
144
|
+
- [ ] Are blocking decisions limited to choices that actually affect safety or correctness, not preferences?
|
|
145
|
+
|
|
146
|
+
A failing criterion: `AC-001: The export works correctly and is secure.` (no scenario, no observable result, no verification, "correctly" and "secure" undefined). A passing one names the scenario, the expected result, the prohibited side effect, and the verification method, so two people would agree it was met.
|
|
147
|
+
|
|
148
|
+
## How it fits the 7 Laws
|
|
149
|
+
|
|
150
|
+
| Law | Role of this skill |
|
|
151
|
+
|---|---|
|
|
152
|
+
| Law 2 (Plan Is Sacred) | The acceptance brief **is** the sacred plan: observable criteria, explicit scope, and a `[revised]` protocol that forbids silently dropping or working around a criterion mid-build. |
|
|
153
|
+
| Law 1 (Research Before Executing) | Rule 1 inspects repo, docs, schemas, and tests for technical facts before asking, and refuses to infer business rules from code. |
|
|
154
|
+
| Law 4 (Verify Before Reporting) | Every criterion carries a named verification method and a pass/fail rubric, so "done" is falsifiable rather than asserted. |
|
|
155
|
+
|
|
156
|
+
## Pairs with
|
|
157
|
+
|
|
158
|
+
- [`grill-me`](./grill-me.md): interviews a fuzzy request to a shippable spec. Reach for `grill-me` when the input is unclear, then this skill to turn the agreed intent into verifiable criteria.
|
|
159
|
+
- [`roast`](./roast.md): validates whether the idea should exist at all. Roast first, then scope the survivor into acceptance criteria.
|
|
160
|
+
- [`goal-monitor`](./goal-monitor.md): the runtime drift gate. The `## Goal` and criteria this skill produces are what goal-monitor scores a session against.
|
|
161
|
+
- [`verification-loop`](./verification-loop.md): runs the per-project verify ladder. The criteria's verification methods feed its evidence step.
|