You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .agents/skills/autonomy-env-auditor/SKILL.md
+22-5Lines changed: 22 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,21 @@
1
1
---
2
-
name: autonomy--env-auditor
3
-
description: Audit whether a repository's environment variable configuration allows an agent to load all required .env variables from scratch. Use when evaluating a new repository's agent-readiness, when environment loading fails during agent setup, or as part of an initial harness assessment. Do not use when .env files already load correctly and the goal is to add a single new variable, or when creating env loading capability (use autonomy--env-creator).
2
+
name: autonomy-env-auditor
3
+
description: Audit whether a repository's environment variable configuration allows an agent to load all required .env variables from scratch. Use when evaluating a new repository's agent-readiness, when environment loading fails during agent setup, or as part of an initial harness assessment. Do not use when .env files already load correctly and the goal is to add a single new variable, or when creating env loading capability (use autonomy-env-creator).
4
4
---
5
5
6
6
# Environment Auditor
7
7
8
8
Evaluate whether an agent can configure and load all required environment variables from a cold start — with zero pre-existing `.env` files or manual setup.
9
9
10
+
## Discipline
11
+
12
+
This auditor follows code-mint's shared auditor discipline:
13
+
14
+
-**Depth option** — default `standard`; use `quick` for a sanity check on a recently audited repo or `deep` for legacy codebases, quarterly refreshes, or high-risk readiness claims. Heritage classification from `meta-onboarding` Phase 0 sets a sensible default.
15
+
-**Calibration** — every report ends with a Calibration section naming the depth used, confidence level, what was not checked, and what would raise confidence. This is a required artifact, not a disclaimer.
16
+
17
+
This discipline is inspired by AWS AI-DLC's adaptive-depth and overconfidence-prevention ideas, but code-mint does not vendor or implement the full AI-DLC workflow.
18
+
10
19
## Step 1: Discover Environment Requirements
11
20
12
21
1.**Find all environment variable references** in the codebase:
Ensure `.gitignore` ignores generated report contents while preserving the directories with their `.gitkeep` files.
62
71
63
-
Write the report to `.agents/reports/autonomy--env-auditor-audit.md`:
72
+
Write the report to `.agents/reports/autonomy-env-auditor-audit.md`:
64
73
65
74
```
66
75
# Environment Audit Report
@@ -87,13 +96,21 @@ Write the report to `.agents/reports/autonomy--env-auditor-audit.md`:
87
96
- **Current State:** [what exists]
88
97
- **Required State:** [what should exist]
89
98
- **Recommended Action:** [specific step]
90
-
- **Next Skill / Step:** [e.g., Run `autonomy--env-creator`]
99
+
- **Next Skill / Step:** [e.g., Run `autonomy-env-creator`]
91
100
92
101
## Cold Start Blockers
93
102
[List of variables that prevent application startup]
94
103
95
104
## Next Steps
96
-
Run `autonomy--env-creator` to remediate findings.
105
+
Run `autonomy-env-creator` to remediate findings.
106
+
107
+
## Calibration
108
+
**Depth:** [quick / standard / deep]
109
+
**Confidence:** [High / Medium / Low] — [one-sentence reason]
110
+
**Not checked:**
111
+
- [specific area + reason]
112
+
**To raise confidence:**
113
+
- [specific next step]
97
114
```
98
115
99
116
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.
Copy file name to clipboardExpand all lines: .agents/skills/autonomy-env-creator/SKILL.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
---
2
-
name: autonomy--env-creator
3
-
description: Creates the capacity for an agent to load all environment variables from scratch, based on the output of autonomy--env-auditor. Use when an env audit report exists and environment loading needs to be remediated. Do not use when no audit report exists (run autonomy--env-auditor first) or when debugging a single missing variable.
2
+
name: autonomy-env-creator
3
+
description: Creates the capacity for an agent to load all environment variables from scratch, based on the output of autonomy-env-auditor. Use when an env audit report exists and environment loading needs to be remediated. Do not use when no audit report exists (run autonomy-env-auditor first) or when debugging a single missing variable.
4
4
---
5
5
6
6
# Environment Creator
7
7
8
-
Build out a repository's environment variable configuration so that an agent (or new developer) can go from zero to a fully configured `.env` in a single command. Based on findings from `autonomy--env-auditor`.
8
+
Build out a repository's environment variable configuration so that an agent (or new developer) can go from zero to a fully configured `.env` in a single command. Based on findings from `autonomy-env-auditor`.
9
9
10
10
Prefer one documented bootstrap path that writes local env config from the repo's real source of truth. In many repos that is `scripts/env.sh`. A `.env.example` file can still exist, but it should be secondary.
11
11
12
12
## Prerequisites
13
13
14
-
Read the audit report at `.agents/reports/autonomy--env-auditor-audit.md`. If no report exists, instruct the user to run `autonomy--env-auditor` first.
14
+
Read the audit report at `.agents/reports/autonomy-env-auditor-audit.md`. If no report exists, instruct the user to run `autonomy-env-auditor` first.
15
15
16
16
Before changing anything:
17
17
@@ -242,5 +242,5 @@ Update the project's AGENTS.md and/or README to include:
242
242
3. Start the application and verify it boots successfully.
243
243
4. If generation or startup verification fails, keep the old `.env` in place or restore it from the backup before trying again.
244
244
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.
245
-
6. Archive the audit report to `.agents/reports/completed/autonomy--env-auditor-audit-{YYYY-MM-DD}.md`.
245
+
6. Archive the audit report to `.agents/reports/completed/autonomy-env-auditor-audit-{YYYY-MM-DD}.md`.
246
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.
Copy file name to clipboardExpand all lines: .agents/skills/autonomy-sre-auditor/SKILL.md
+23-6Lines changed: 23 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
name: autonomy--sre-auditor
3
-
description: Audit whether an agent has working access to the SRE CLIs the project uses — version control host CLI, cloud provider CLI, and observability CLI. Tests each connection and reports access gaps. The steps below use GitHub CLI, AWS CLI, and Datadog Pup as a worked example; adapt for your project's actual tooling. Use when setting up a new agent environment, troubleshooting tool access, or as part of an initial harness assessment. Do not use when debugging a specific production issue (use autonomy--sre-agent) or when auditing general runtime readiness (use autonomy--runtime-auditor).
2
+
name: autonomy-sre-auditor
3
+
description: Audit whether an agent has working access to the SRE CLIs the project uses — version control host CLI, cloud provider CLI, and observability CLI. Tests each connection and reports access gaps. The steps below use GitHub CLI, AWS CLI, and Datadog Pup as a worked example; adapt for your project's actual tooling. Use when setting up a new agent environment, troubleshooting tool access, or as part of an initial harness assessment. Do not use when debugging a specific production issue (use interface-sre-agent) or when auditing general runtime readiness (use autonomy-staging-auditor).
4
4
---
5
5
6
6
# SRE Auditor
@@ -9,6 +9,15 @@ Verify that an agent has authenticated, working access to the CLI tools required
9
9
10
10
The steps below use **GitHub CLI, AWS CLI, and Datadog Pup** as a reference profile. If your project uses a different VCS host (e.g., GitLab, Azure DevOps), cloud provider (e.g., GCP, Azure), or observability platform (e.g., Grafana, New Relic, Prometheus), substitute the equivalent CLI and read-only verification commands while following the same audit structure.
11
11
12
+
## Discipline
13
+
14
+
This auditor follows code-mint's shared auditor discipline:
15
+
16
+
-**Depth option** — default `standard`; use `quick` for a sanity check on a recently audited repo or `deep` for legacy codebases, quarterly refreshes, or high-risk readiness claims. Heritage classification from `meta-onboarding` Phase 0 sets a sensible default.
17
+
-**Calibration** — every report ends with a Calibration section naming the depth used, confidence level, what was not checked, and what would raise confidence. This is a required artifact, not a disclaimer.
18
+
19
+
This discipline is inspired by AWS AI-DLC's adaptive-depth and overconfidence-prevention ideas, but code-mint does not vendor or implement the full AI-DLC workflow.
20
+
12
21
## Step 1: Audit GitHub CLI Access
13
22
14
23
### Check Installation
@@ -107,15 +116,15 @@ For each monitoring tool, verify that output is machine-readable:
107
116
-[ ] Traces connect requests across services
108
117
-[ ] Error context includes stack traces, request IDs, and relevant input data
109
118
110
-
Machine-readable telemetry is required for `autonomy--sre-agent` to operate effectively.
119
+
Machine-readable telemetry is required for `interface-sre-agent` to operate effectively.
Ensure `.gitignore` ignores generated report contents while preserving the directories with their `.gitkeep` files.
117
126
118
-
Write the report to `.agents/reports/autonomy--sre-auditor-audit.md`:
127
+
Write the report to `.agents/reports/autonomy-sre-auditor-audit.md`:
119
128
120
129
```
121
130
# SRE Tooling Audit Report
@@ -166,10 +175,18 @@ Write the report to `.agents/reports/autonomy--sre-auditor-audit.md`:
166
175
- **Current State:** [what exists]
167
176
- **Required State:** [what should exist]
168
177
- **Recommended Action:** [specific step]
169
-
- **Next Skill / Step:** [e.g., Install/authenticate tooling manually, then re-run `autonomy--sre-auditor`; once ready, use `autonomy--sre-agent`]
178
+
- **Next Skill / Step:** [e.g., Install/authenticate tooling manually, then re-run `autonomy-sre-auditor`; once ready, use `interface-sre-agent`]
170
179
171
180
## Next Steps
172
-
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`.
181
+
Address findings to enable `interface-sre-agent` to operate effectively. If tooling or auth is missing, complete the manual install/authentication work first, then re-run `autonomy-sre-auditor`.
182
+
183
+
## Calibration
184
+
**Depth:** [quick / standard / deep]
185
+
**Confidence:** [High / Medium / Low] — [one-sentence reason]
186
+
**Not checked:**
187
+
- [specific area + reason]
188
+
**To raise confidence:**
189
+
- [specific next step]
173
190
```
174
191
175
192
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.
Copy file name to clipboardExpand all lines: .agents/skills/autonomy-staging-auditor/SKILL.md
+23-6Lines changed: 23 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,21 @@
1
1
---
2
-
name: autonomy--runtime-auditor
3
-
description: Audit whether an AI agent can go from a clean checkout to a runnable application or local runtime equivalent, without unsafe provisioning or destructive setup. Use when evaluating development or staging-like runtime readiness, onboarding a new project, or checking whether the agent can install dependencies, start services, and perform smoke checks. Do not use when evaluating test strategy and coverage depth (use autonomy--test-readiness-auditor) or when debugging a live production issue (use autonomy--sre-agent).
2
+
name: autonomy-staging-auditor
3
+
description: Audit whether an AI agent can go from a clean checkout to a runnable application or local runtime equivalent, without unsafe provisioning or destructive setup. Use when evaluating development or staging-like runtime readiness, onboarding a new project, or checking whether the agent can install dependencies, start services, and perform smoke checks. Do not use when evaluating test strategy and coverage depth (use autonomy-testing-auditor) or when debugging a live production issue (use interface-sre-agent).
4
4
---
5
5
6
6
# Runtime Auditor
7
7
8
8
Evaluate whether an agent can go from a clean checkout to a safe local runtime or staging-like equivalent, or to the closest safe local simulation of that environment. This skill focuses on install, setup, local services, startup, smoke checks, and infrastructure inspection. It does not require cloud provisioning.
9
9
10
+
## Discipline
11
+
12
+
This auditor follows code-mint's shared auditor discipline:
13
+
14
+
-**Depth option** — default `standard`; use `quick` for a sanity check on a recently audited repo or `deep` for legacy codebases, quarterly refreshes, or high-risk readiness claims. Heritage classification from `meta-onboarding` Phase 0 sets a sensible default.
15
+
-**Calibration** — every report ends with a Calibration section naming the depth used, confidence level, what was not checked, and what would raise confidence. This is a required artifact, not a disclaimer.
16
+
17
+
This discipline is inspired by AWS AI-DLC's adaptive-depth and overconfidence-prevention ideas, but code-mint does not vendor or implement the full AI-DLC workflow.
18
+
10
19
## Collaboration Rules
11
20
12
21
Do not treat runtime readiness as a pure checklist exercise. Inspect the repository first, then ask only for the operational context the codebase cannot answer confidently.
@@ -57,7 +66,7 @@ Check whether the application dependencies can be installed autonomously:
57
66
58
67
## Step 2: Evaluate Environment and Configuration Handoff
59
68
60
-
Cross-reference `autonomy--env-auditor` findings if that report exists.
69
+
Cross-reference `autonomy-env-auditor` findings if that report exists.
61
70
62
71
-[ ] The runtime depends on a documented env loading path
63
72
-[ ] Required local or development-safe values are available
Ensure `.gitignore` ignores generated report contents while preserving the directories with their `.gitkeep` files.
136
145
137
-
Write the report to `.agents/reports/autonomy--runtime-auditor-audit.md`:
146
+
Write the report to `.agents/reports/autonomy-staging-auditor-audit.md`:
138
147
139
148
```markdown
140
149
# Runtime Audit Report
@@ -189,10 +198,18 @@ Write the report to `.agents/reports/autonomy--runtime-auditor-audit.md`:
189
198
-**Current State:**[what exists]
190
199
-**Required State:**[what should exist]
191
200
-**Recommended Action:**[specific step]
192
-
-**Next Skill / Step:**[for example, run `autonomy--runtime-creator`]
201
+
-**Next Skill / Step:**[for example, run `autonomy-staging-creator`]
193
202
194
203
## Next Steps
195
-
Run `autonomy--runtime-creator` to remediate findings.
204
+
Run `autonomy-staging-creator` to remediate findings.
205
+
206
+
## Calibration
207
+
**Depth:**[quick / standard / deep]
208
+
**Confidence:**[High / Medium / Low] — [one-sentence reason]
209
+
**Not checked:**
210
+
-[specific area + reason]
211
+
**To raise confidence:**
212
+
-[specific next step]
196
213
```
197
214
198
215
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.
Copy file name to clipboardExpand all lines: .agents/skills/autonomy-staging-creator/SKILL.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
1
---
2
-
name: autonomy--runtime-creator
3
-
description: Builds the scripts, setup flow, and runtime documentation needed for an agent to install dependencies, start local services, boot the app, and run smoke checks from a clean checkout. Use when a runtime audit report exists and runtime readiness needs improvement. Do not use when no audit report exists (run autonomy--runtime-auditor first) or when the main gap is test coverage depth (use autonomy--test-readiness-creator).
2
+
name: autonomy-staging-creator
3
+
description: Builds the scripts, setup flow, and runtime documentation needed for an agent to install dependencies, start local services, boot the app, and run smoke checks from a clean checkout. Use when a runtime audit report exists and runtime readiness needs improvement. Do not use when no audit report exists (run autonomy-staging-auditor first) or when the main gap is test coverage depth (use autonomy-testing-creator).
4
4
---
5
5
6
6
# Runtime Creator
7
7
8
-
Build out a repository's runtime readiness so that an agent can go from a clean checkout to a runnable application or local runtime equivalent. Base all work on `autonomy--runtime-auditor`.
8
+
Build out a repository's runtime readiness so that an agent can go from a clean checkout to a runnable application or local runtime equivalent. Base all work on `autonomy-staging-auditor`.
9
9
10
10
## Prerequisites
11
11
12
-
Read `.agents/reports/autonomy--runtime-auditor-audit.md`. If no report exists, instruct the user to run `autonomy--runtime-auditor` first.
12
+
Read `.agents/reports/autonomy-staging-auditor-audit.md`. If no report exists, instruct the user to run `autonomy-staging-auditor` first.
13
13
14
14
## Collaboration Rules
15
15
@@ -26,7 +26,7 @@ When needed, ask the developer:
26
26
- "Which local substitutions are acceptable compared with production?"
27
27
- "Which runtime steps are safe to automate, and which must stay manual?"
28
28
29
-
For smoke-test patterns and safety boundaries, see [../autonomy--runtime-auditor/references/smoke-test-guide.md](../autonomy--runtime-auditor/references/smoke-test-guide.md). The guide lives with the auditor skill intentionally so runtime audit and remediation share one canonical document (`docs/skill-development.md` documents this cross-skill link pattern).
29
+
For smoke-test patterns and safety boundaries, see [../autonomy-staging-auditor/references/smoke-test-guide.md](../autonomy-staging-auditor/references/smoke-test-guide.md). The guide lives with the auditor skill intentionally so runtime audit and remediation share one canonical document (`docs/skill-development.md` documents this cross-skill link pattern).
30
30
31
31
## Step 1: Extract the Handoff Contract
32
32
@@ -123,5 +123,5 @@ If any step still depends on human approval or real cloud setup, document that b
123
123
124
124
## Step 7: Archive
125
125
126
-
1. Archive the audit report to `.agents/reports/completed/autonomy--runtime-auditor-audit-{YYYY-MM-DD}.md`
126
+
1. Archive the audit report to `.agents/reports/completed/autonomy-staging-auditor-audit-{YYYY-MM-DD}.md`
127
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.
0 commit comments