- Worktree-flow section now describes resolveBranchForJob (sibling reuse), feat/story-<id> naming, deferred cleanup while siblings are active, and the 1-PR-per-story result. - File table corrects the heartbeat description (PR #14 made it self-healing instead of self-terminating). Closes the docs task in story 'Voorkom doublure-PRs' under PBI 'Veilige Claude-agent-workflow'. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
80 lines
3.8 KiB
Markdown
80 lines
3.8 KiB
Markdown
# CLAUDE.md — scrum4me-mcp
|
|
|
|
MCP server that exposes the Scrum4Me dev-flow as native tools for Claude Code.
|
|
|
|
## Agent worktree-flow
|
|
|
|
`wait_for_job` creates an isolated git worktree per job so agent changes never touch the user's main checkout.
|
|
|
|
### How it works
|
|
|
|
1. On successful claim, `wait_for_job` calls `resolveBranchForJob` first:
|
|
- Looks for a sibling job in the same story that already has a branch
|
|
- If found → reuse that branch (`reused_branch: true` in the response)
|
|
- Otherwise → fresh branch `feat/story-<last-8-chars-of-story-id>`
|
|
2. Then `createWorktreeForJob`:
|
|
- Worktree directory: `SCRUM4ME_AGENT_WORKTREE_DIR/<job-id>` (default: `~/.scrum4me-agent-worktrees/<job-id>`)
|
|
- Base: `origin/main` for fresh branches; existing remote tip for reused branches
|
|
- When reusing: any stale sibling worktree still holding the branch is removed first (siblings are sequential)
|
|
3. Tool response includes `worktree_path`, `branch_name`, `reused_branch`.
|
|
4. **Work exclusively in `worktree_path`** — all file edits and commits go there.
|
|
5. On `update_job_status(done|failed)`, `removeWorktreeForJob` runs automatically — but is **deferred** while siblings in the same story are still QUEUED/CLAIMED/RUNNING (next sub-task will reuse the branch). Only the last terminal transition triggers actual cleanup:
|
|
- `keepBranch=true` if `done` and a `branch` was reported (agent pushed)
|
|
- `keepBranch=false` otherwise (branch deleted with worktree)
|
|
|
|
### Branch-per-story result
|
|
|
|
A story with 3 sub-tasks lands as **1 branch** with 3 commits and **1 PR** (assuming `auto_pr=true`). Sibling sub-tasks share the same `pr_url` — `maybeCreateAutoPr` reuses an existing PR from a sibling job instead of opening duplicates. Story-level PR title (`<story-code>: <story-title>`) so the GitHub view reads as one logical change rather than per-task fragments.
|
|
|
|
### Required configuration
|
|
|
|
Set env var per product:
|
|
|
|
```
|
|
SCRUM4ME_REPO_ROOT_<productId>=/absolute/path/to/local/clone
|
|
```
|
|
|
|
Or add to `~/.scrum4me-agent-config.json`:
|
|
|
|
```json
|
|
{
|
|
"repoRoots": {
|
|
"<productId>": "/absolute/path/to/local/clone"
|
|
}
|
|
}
|
|
```
|
|
|
|
If no repo root is found, `wait_for_job` rolls the claim back to QUEUED and returns an error.
|
|
|
|
## Manual worktree cleanup
|
|
|
|
Run `cleanup_my_worktrees` (no arguments) to scan `~/.scrum4me-agent-worktrees/` and remove worktrees for jobs that are in a terminal state (DONE, FAILED, CANCELLED). Worktrees for active jobs (QUEUED, CLAIMED, RUNNING) are left untouched. Returns `{ removed, kept, skipped }`.
|
|
|
|
## Worker presence
|
|
|
|
Server-startup registers a `ClaudeWorker` record + starts a 5 s heartbeat; SIGTERM/SIGINT cleans it up. The Scrum4Me NavBar counts active workers via `last_seen_at < now() - 15s`.
|
|
|
|
| File | Purpose |
|
|
|---|---|
|
|
| `src/presence/worker.ts` | `registerWorker` (upsert + pg_notify worker_connected) + `unregisterWorker` |
|
|
| `src/presence/heartbeat.ts` | `startHeartbeat` — 5 s interval, self-heals by re-registering when record disappears |
|
|
| `src/presence/shutdown.ts` | `registerShutdownHandlers` — SIGTERM/SIGINT → stop heartbeat + unregister |
|
|
| `src/index.ts` | Bootstrap: calls `getAuth` → `registerWorker` → `startHeartbeat` → `registerShutdownHandlers` |
|
|
|
|
## Key source files
|
|
|
|
| File | Purpose |
|
|
|---|---|
|
|
| `src/git/worktree.ts` | `createWorktreeForJob` + `removeWorktreeForJob` |
|
|
| `src/tools/wait-for-job.ts` | `resolveRepoRoot`, `rollbackClaim`, `attachWorktreeToJob` |
|
|
| `src/tools/update-job-status.ts` | `cleanupWorktreeForTerminalStatus` |
|
|
| `src/tools/cleanup-my-worktrees.ts` | `cleanup_my_worktrees` tool — scans + removes stale worktrees |
|
|
|
|
## Testing
|
|
|
|
```bash
|
|
npm test # vitest run
|
|
npm run typecheck # tsc --noEmit
|
|
```
|
|
|
|
All worktree helpers have unit tests under `__tests__/git/worktree.test.ts`, `__tests__/wait-for-job-worktree.test.ts`, and `__tests__/update-job-status-worktree.test.ts`.
|