1
0
Files
breadcrumb-the-shire/.agents
fs 0c78dc4355 chore(setup): track config.php directly, slim README to setup checklist
config/config.php was gitignored and devs had to copy it from
config/config.php.example on every fresh clone. Since the bootstrap
config reads everything from .env via $envString() / $envInt() /
$envBool() defaults, there is nothing developer-specific in the file —
the cp step was dead ceremony.

- Remove config/config.php from .gitignore and track it directly
- Delete config/config.php.example
- Drop the example-existence + per-doc reference checks from
  bin/docs-drift-check.sh; add a legacy-pattern check that flags
  any new mention of the removed example file
- Update ConfigContractsTest to require config.php and forbid the
  example
- Clean stale references in CLAUDE.md, README.md, six docs files,
  and the core-guardrails skill

Same commit slims README down from 294 to 47 lines: one setup
checklist (now 3 commands instead of 4), the seeded login table,
the three quality-gate commands, and pointers to CLAUDE.md and
docs/index.md for everything else.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-29 08:37:45 +02:00
..

.agents/

Centralized home for the 7-role agent workflow system.

Structure

workflow.md         ← Roles, state machine, handover rules (start here)
contracts/          ← JSON schemas for role outputs (7 roles)
templates/          ← Starter JSON payloads per role (7 templates)
prompts/            ← Role-specific prompt baselines (7 prompts)
checks/             ← Guard catalog (27 guards), quality gates (9), checklists
                   ← Enforcement policy + guard enforcement map
skills/             ← Reusable skill packages (guardrails, planner, grid, PHP CI)
runs/               ← Runtime artifacts per workflow run (gitignored)

Roles

# Role Artifact Guards
1 Analyst analysis.json
2 Planner plan.json selects guards
3 Executor execution-report.json provides evidence
4 Code Reviewer review-code.json 17 guards (GR-CORE/TEST/UI)
5 Security Reviewer review-security.json 10 guards (GR-SEC)
6 Acceptance Tester review-acceptance.json SC-* criteria
7 Finalizer finalize.json all reviews + CI
What Where
Workflow & roles workflow.md
Guard catalog (27 guards) checks/guard-catalog.json
Quality gates (9 gates) checks/quality-gates.json
Enforcement policy checks/enforcement-policy.json
Guard enforcement map checks/guard-enforcement-map.json
Code review checklist checks/guard-checklist.md
Acceptance checklist checks/acceptance-checklist.md
Module manifest schema contracts/module-manifest.schema.json

Project Context

See CLAUDE.md (repo root) for tech stack, architecture rules, and conventions.