Skip to content

Commit bdd2e3f

Browse files
committed
Add machine-readable onboarding fingerprint (.agents/code-mint-status.json)
Introduce a committed JSON file that tracks which north-star outcomes have been proven in a target repository, enabling quick cross-repo scanning of code-mint onboarding status. Changes: - New template: .agents/code-mint-status.json - meta--onboarding: initialize fingerprint in Prepare Directories, update at Phase 1 and Phase 5 boundaries, serialize parallel writes - All 10 auditor/creator skills: update fingerprint alongside checklist - meta--skill-creator: new skills inherit the fingerprint convention - docs/skill-development.md: Status Fingerprint section with update rule, scoping, create-if-missing, parallel writes, and vocabulary - docs/outcomes.md, framework.md, adoption-guide.md, onboarding-checklist.md: reference the fingerprint - AGENTS.md, README.md, CONTRIBUTING.md: repo map and copy commands Made-with: Cursor
1 parent 57bfdb7 commit bdd2e3f

21 files changed

Lines changed: 105 additions & 22 deletions

File tree

.agents/code-mint-status.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"code_mint": "1.0",
3+
"scope": ".",
4+
"onboarded_at": null,
5+
"last_validated": null,
6+
"outcomes": {
7+
"validate_current_state": { "status": "Not Started", "date": null },
8+
"navigate": { "status": "Not Started", "date": null },
9+
"self_test": { "status": "Not Started", "date": null },
10+
"smoke_path": { "status": "Not Started", "date": null },
11+
"bug_reproduction": { "status": "Not Started", "date": null },
12+
"sre_investigation": { "status": "Not Started", "date": null }
13+
}
14+
}

.agents/skills/autonomy--env-auditor/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ Write the report to `.agents/reports/autonomy--env-auditor-audit.md`:
9696
Run `autonomy--env-creator` to remediate findings.
9797
```
9898

99-
After writing the report, update `docs/onboarding-checklist.md`. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
99+
After writing the report, update `docs/onboarding-checklist.md` and `.agents/code-mint-status.json` with the current `smoke_path` outcome status and date. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.

.agents/skills/autonomy--env-creator/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,4 +243,4 @@ Update the project's AGENTS.md and/or README to include:
243243
4. If generation or startup verification fails, keep the old `.env` in place or restore it from the backup before trying again.
244244
5. If a `.env.example` file exists, keep it as a reference or compatibility file only. Point it to the primary bootstrap path if helpful.
245245
6. Archive the audit report to `.agents/reports/completed/autonomy--env-auditor-audit-{YYYY-MM-DD}.md`.
246-
7. Update `docs/onboarding-checklist.md`. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
246+
7. Update `docs/onboarding-checklist.md` and `.agents/code-mint-status.json` with the current `smoke_path` outcome status and date. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.

.agents/skills/autonomy--runtime-auditor/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,4 @@ Write the report to `.agents/reports/autonomy--runtime-auditor-audit.md`:
193193
Run `autonomy--runtime-creator` to remediate findings.
194194
```
195195

196-
After writing the report, update `docs/onboarding-checklist.md`. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
196+
After writing the report, update `docs/onboarding-checklist.md` and `.agents/code-mint-status.json` with the current `smoke_path` outcome status and date. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.

.agents/skills/autonomy--runtime-creator/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ If any step still depends on human approval or real cloud setup, document that b
124124
## Step 7: Archive
125125

126126
1. Archive the audit report to `.agents/reports/completed/autonomy--runtime-auditor-audit-{YYYY-MM-DD}.md`
127-
2. Update `docs/onboarding-checklist.md`. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
127+
2. Update `docs/onboarding-checklist.md` and `.agents/code-mint-status.json` with the current `smoke_path` outcome status and date. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.

.agents/skills/autonomy--sre-agent/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ If the workflow above doesn't immediately surface the cause, form ranked hypothe
243243

244244
Write a failing test case that reproduces the bug BEFORE proposing any fix. If you cannot reproduce the bug in a test, you do not understand it well enough to fix it.
245245

246-
For onboarding proof, the failing test or deterministic repro recipe is itself the evidence artifact. Capture it in `docs/onboarding-checklist.md` before moving on.
246+
For onboarding proof, the failing test or deterministic repro recipe is itself the evidence artifact. Capture it in `docs/onboarding-checklist.md` and update `.agents/code-mint-status.json` with the current `bug_reproduction` and `sre_investigation` outcome statuses and dates before moving on.
247247

248248
## Fix and Confirm
249249

.agents/skills/autonomy--sre-auditor/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,4 @@ Write the report to `.agents/reports/autonomy--sre-auditor-audit.md`:
172172
Address findings to enable `autonomy--sre-agent` to operate effectively. If tooling or auth is missing, complete the manual install/authentication work first, then re-run `autonomy--sre-auditor`.
173173
```
174174

175-
After writing the report, update `docs/onboarding-checklist.md`. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
175+
After writing the report, update `docs/onboarding-checklist.md` and `.agents/code-mint-status.json` with the current `sre_investigation` outcome status and date. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.

.agents/skills/autonomy--test-readiness-auditor/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Write the report to `.agents/reports/autonomy--test-readiness-auditor-audit.md`:
131131
Run `autonomy--test-readiness-creator` to remediate findings.
132132
```
133133

134-
After writing the report, update `docs/onboarding-checklist.md`. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
134+
After writing the report, update `docs/onboarding-checklist.md` and `.agents/code-mint-status.json` with the current `self_test` outcome status and date. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
135135

136136
## Detailed Criteria
137137

.agents/skills/autonomy--test-readiness-creator/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ Before changing CI behavior, ask for explicit approval if the change will block
107107
2. Verify per-file test execution works with the documented command.
108108
3. Confirm test speed meets benchmarks where practical.
109109
4. Archive the audit report to `.agents/reports/completed/autonomy--test-readiness-auditor-audit-{YYYY-MM-DD}.md`.
110-
5. Update `docs/onboarding-checklist.md`. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
110+
5. Update `docs/onboarding-checklist.md` and `.agents/code-mint-status.json` with the current `self_test` outcome status and date. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.

.agents/skills/legibility--auditor/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Write the report to `.agents/reports/legibility--auditor-audit.md` using this st
123123
Run `legibility--enhancer` to collaboratively remediate findings.
124124
```
125125

126-
After writing the report, update `docs/onboarding-checklist.md`. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
126+
After writing the report, update `docs/onboarding-checklist.md` and `.agents/code-mint-status.json` with the current `navigate` outcome status and date. Optionally update `docs/skills-status.md` if the repository keeps the compatibility view.
127127

128128
## Detailed Criteria
129129

0 commit comments

Comments
 (0)