- Add harness/ directory to SF repo (specs/, evals/, graders/ with AGENTS.md) and seed harness/specs/bootstrap.md (agent-legibility verification) - Extend agentic-docs-scaffold.ts: new repos get harness/ + ADR-TEMPLATE.md and just adr / just spec / just harness-spec recipes via justfile - Sync SF_RUNTIME_PATTERNS (gitignore.ts canonical) → git-service.ts and worktree-manager.ts: add audit/, exec/, model-benchmarks/, reports/, notifications.jsonl, routing-history.json, self-feedback.jsonl, repo-meta.json, and milestone continue-marker patterns - Inject ARCHITECTURE.md into system prompt via loadArchitectureBlock() in system-context.ts (capped at 8 000 chars, after KNOWLEDGE block) - Write real ARCHITECTURE.md for this repo (system map, .sf/ layout, key flows) - Add ADR-TEMPLATE.md to docs/design-docs/ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
756 B
Markdown
20 lines
756 B
Markdown
# Bootstrap Spec: Agent Legibility
|
|
|
|
Verifies that the SF repo is minimally agent-legible.
|
|
|
|
## Criteria
|
|
|
|
- [ ] `AGENTS.md` exists at repo root and is non-empty.
|
|
- [ ] `ARCHITECTURE.md` exists at repo root and describes the system.
|
|
- [ ] `docs/exec-plans/active/index.md` exists.
|
|
- [ ] `docs/exec-plans/tech-debt-tracker.md` exists.
|
|
- [ ] `docs/design-docs/ADR-TEMPLATE.md` exists.
|
|
- [ ] `harness/specs/` exists with at least this file.
|
|
|
|
## Verification command
|
|
|
|
```bash
|
|
for f in AGENTS.md ARCHITECTURE.md docs/exec-plans/active/index.md docs/exec-plans/tech-debt-tracker.md docs/design-docs/ADR-TEMPLATE.md harness/specs/bootstrap.md; do [ -s "$f" ] && echo "OK: $f" || echo "MISSING: $f"; done
|
|
```
|
|
|
|
All lines should start with `OK:` for this spec to pass.
|