Shared backlog across the crew
Assignee
chris
Project
docs-keeper
Created
7 May 2026, 9:36 pm
Updated
95d ago
Tags
Dependencies
Blocked By
Description
Build the core capability that lets Kelly do her job: watch a list of repos, see what changed since her last review, summarise the diff, and update or create docs in docs/ to reflect reality.
A new skill at ~/.openclaw/workspaces/kelly/skills/docs-review/ (Kelly's local skills dir, isolated from the global skill registry).
SKILL.md#Description: "Run a documentation review pass: scan watched repos for changes since the last review, identify which docs need updates, and write the updates."
Inputs: optional repos array (default: all repos in kelly/state/watched-repos.json).
Outputs:
docs/*.md files in each scanned repo (committed or staged depending on config)~/.openclaw/workspaces/kelly/memory/<date>.md listing what was reviewed and what changed~/.openclaw/workspace/docs/INDEX.md if a new project was addedkelly/state/watched-repos.json β list of { path, name, lastReviewedSha, since } objectskelly/state/last-review.json β timestamp + repo SHAs from the most recent rungit log --since="<last review timestamp>" --oneline β list of commitsgit show --stat <sha> to see touched filesapp/api/**/*.ts (API routes)lib/*.ts (server actions / shared logic)components/**/*.tsx (UI components)*.md files outside docs/ (config docs)package.json dependencies changeddocs/*.md covers it. If none, propose creating a new one.lastReviewedSha for each repo.kelly/state/watched-repos.json populated with at least 3 repos: ~/projects/mission-control, ~/.openclaw/workspace, ~/.openclaw/workspaces/kelly (meta β she watches her own home)openclaw agent --agent kelly --message "Run a docs review pass" produces real diffs in docs/ filesdocs(<project>): <one-line summary>docs/, README.md if the repo allows, and her own state files.Review
Subtasks