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
replace any of those; it surfaces what's expected.
129
+
130
+
### Team-lead path — for a lead establishing shared defaults
131
+
132
+
**Who:** runs a team where some developers use AI tools privately. Wants AI to become a team
133
+
capability with shared prompts, shared knowledge, shared policy.
134
+
135
+
**Success looks like:** every developer can `team connect` against the same manifest and get the
136
+
same generated config, knowledge layer, and policy. New joiners are productive on day one.
137
+
138
+
```bash
139
+
coding-scaffold team init --target . --team platform-api --knowledge-remote <repo-url>
140
+
# Customize .coding-scaffold/team-onboarding.json, then commit it.
141
+
# Each developer runs:
142
+
coding-scaffold team connect --target . --manifest <team-repo>
143
+
coding-scaffold team doctor --target .
144
+
```
145
+
146
+
When the manifest changes, every developer runs `team sync` and reviews the diff before merging
147
+
imports into their working knowledge.
148
+
149
+
## Pilot Metrics
150
+
151
+
These are measurement templates, not features. Track them manually during the pilot. If a number
152
+
moves the wrong way, that's the signal to revisit the scaffold or the policy, not the metric.
153
+
154
+
| Metric | How to measure | Target after 2 weeks |
155
+
| --- | --- | --- |
156
+
| Time to first safe agentic change | From `setup run` to the first merged PR generated via `/agentic-change`. | < 1 day for the beginner path; < 2 hours for AI power users. |
157
+
| Correct-test-command rate | Of agent sessions that ran a test, what fraction ran the project's actual test command (not a guess). | > 80%. Lower means `AGENTS.md` needs more explicit test guidance. |
158
+
| CI pass rate after agentic edits | Of PRs containing `/agentic-change` output, what fraction passed CI on first push. | At least matches non-agentic baseline. Below baseline means policy is too permissive or review is too thin. |
159
+
| Reusable skills captured | Count of skill entries committed to `.coding-scaffold/knowledge/skills/` during the pilot. | Two or more from each persona path. Zero means workflows aren't being abstracted. |
160
+
| Knowledge entries with `last_reviewed`| Of curated wiki pages under `knowledge/wiki/`, what fraction have a `last_reviewed` value within 90 days. | > 90% by end of pilot. Lower means the knowledge layer is decaying. |
161
+
| Reverted agentic changes | Count of merged `/agentic-change` PRs reverted within 7 days. | 0-1. Higher signals the scaffold is letting through changes the team can't validate. |
162
+
163
+
Run a 30-minute retrospective at the end of the pilot. Surface which metric was easiest to gather,
164
+
which was hardest, and whether any persona path under- or over-served the developer.
0 commit comments