feat(brief): generate .custodian-brief.md per repo for offline worker orientation
Adds _write_custodian_brief() to consistency_check.py. After every fix_repo() run, a .custodian-brief.md is written to the repo root with: domain, last-synced timestamp, current repo goal, active workstreams with progress (done/total), and the first 7 open tasks per workstream (blocked → in_progress → todo order) with task IDs. The file is git-committed when content changes so remote workers (e.g. CoulombCore) can pull it and orient without a live MCP connection. Session protocol template and CLAUDE.md updated: read .custodian-brief.md first, then call get_domain_summary() as an enhancement (skip if MCP unreachable). This eliminates false "State hub is offline" alarms in subagents and remote workers. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -84,9 +84,11 @@ sudo service docker start
|
||||
Every Claude Code session in this repository must follow this ritual:
|
||||
|
||||
**On session start:**
|
||||
1. Call `get_state_summary()` via the `state-hub` MCP tool for orientation
|
||||
2. Check the agent inbox: `get_messages(to_agent="hub", unread_only=True)` — mark read and act on any messages
|
||||
3. Note any blocking decisions or blocked tasks before starting work
|
||||
1. Read `.custodian-brief.md` if it exists — offline-safe orientation that works without MCP
|
||||
2. Call `get_state_summary()` via the `state-hub` MCP tool for richer cross-domain context
|
||||
(if the MCP call fails, the brief is sufficient to begin work)
|
||||
3. Check the agent inbox: `get_messages(to_agent="hub", unread_only=True)` — mark read and act on any messages
|
||||
4. Note any blocking decisions or blocked tasks before starting work
|
||||
|
||||
**On session close (before ending):**
|
||||
1. Call `add_progress_event()` to log what was done, decided, or discovered
|
||||
|
||||
Reference in New Issue
Block a user