From b6e744e96e9249a0305ec725b3e15c47270b1694 Mon Sep 17 00:00:00 2001 From: anzzyspeaksgit Date: Thu, 12 Mar 2026 13:59:10 +0000 Subject: [PATCH] docs: Update documentation to use multiclaude/ branch prefix Closes #332 Updated the documentation files to reflect the new branch prefix 'multiclaude/' instead of 'work/'. Also updated worker templates and workflow documentation where the old prefix was still referenced. AI Disclosure: This PR was generated autonomously by anzzyspeaksgit. --- docs/AGENTS.md | 2 +- docs/COMMANDS.md | 2 +- docs/CRASH_RECOVERY.md | 4 ++-- docs/WORKFLOWS.md | 14 +++++++------- docs/extending/STATE_FILE_INTEGRATION.md | 2 +- internal/templates/agent-templates/worker.md | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/AGENTS.md b/docs/AGENTS.md index 4241a10..ba178ea 100644 --- a/docs/AGENTS.md +++ b/docs/AGENTS.md @@ -67,7 +67,7 @@ This is the most complex agent with multiple responsibilities: ### 3. Worker (`internal/templates/agent-templates/worker.md`) **Role**: Execute specific tasks and create PRs -**Worktree**: Isolated branch (`work/`) +**Worktree**: Isolated branch (`multiclaude/`) **Lifecycle**: Ephemeral (cleaned up after completion) Workers are the "muscle" of the system. They: diff --git a/docs/COMMANDS.md b/docs/COMMANDS.md index 1e88606..1d88e9d 100644 --- a/docs/COMMANDS.md +++ b/docs/COMMANDS.md @@ -49,7 +49,7 @@ Workers do the grunt work. Give them a task, they make a PR. ```bash multiclaude worker create "task description" # Spawn a worker multiclaude worker create "task" --branch feature # Start from a specific branch -multiclaude worker create "Fix tests" --branch origin/work/fox --push-to work/fox # Iterate on existing PR +multiclaude worker create "Fix tests" --branch origin/multiclaude/fox --push-to multiclaude/fox # Iterate on existing PR multiclaude worker list # Who's working? multiclaude worker rm # Fire this one ``` diff --git a/docs/CRASH_RECOVERY.md b/docs/CRASH_RECOVERY.md index 261ffcf..075886d 100644 --- a/docs/CRASH_RECOVERY.md +++ b/docs/CRASH_RECOVERY.md @@ -149,7 +149,7 @@ git status # Check for uncommitted work # Option 2: Save work and remove worker cd ~/.multiclaude/wts// git stash # or: git add . && git commit -m "WIP" -git push -u origin work/ +git push -u origin multiclaude/ multiclaude worker rm # Option 3: Force remove (lose uncommitted work) @@ -375,7 +375,7 @@ ls ~/.multiclaude/messages// # Compare with agents in state.json # Orphaned branches -git -C ~/.multiclaude/repos/ branch | grep work/ +git -C ~/.multiclaude/repos/ branch | grep multiclaude/ ``` ### Check Process Status diff --git a/docs/WORKFLOWS.md b/docs/WORKFLOWS.md index 10b089d..3d38065 100644 --- a/docs/WORKFLOWS.md +++ b/docs/WORKFLOWS.md @@ -48,10 +48,10 @@ You're in your workspace. You want stuff done. Spawn workers. │ │ On it. ││ │ │ ││ │ │ > multiclaude worker create "Implement rich list commands per issue #44"││ -│ │ ✓ Worker created: swift-eagle (branch: work/swift-eagle) ││ +│ │ ✓ Worker created: swift-eagle (branch: multiclaude/swift-eagle) ││ │ │ ││ │ │ > multiclaude worker create "Improve error messages per issue #45" ││ -│ │ ✓ Worker created: calm-deer (branch: work/calm-deer) ││ +│ │ ✓ Worker created: calm-deer (branch: multiclaude/calm-deer) ││ │ │ ││ │ │ Two workers deployed. Check on them with: ││ │ │ multiclaude worker list ││ @@ -123,8 +123,8 @@ multiclaude agent attach merge-queue --read-only │ │ [PR Check - 14:45] ││ │ │ ││ │ │ > gh pr list --author @me ││ -│ │ #47 Add rich list commands work/swift-eagle ││ -│ │ #48 Improve error messages work/calm-deer ││ +│ │ #47 Add rich list commands multiclaude/swift-eagle ││ +│ │ #48 Improve error messages multiclaude/calm-deer ││ │ │ ││ │ │ Checking #47... ││ │ │ > gh pr checks 47 ││ @@ -146,7 +146,7 @@ CI fails? Merge queue spawns a fixer: │ │ ││ │ │ Spawning fixup worker... ││ │ │ > multiclaude worker create "Fix test failures in PR #48" \ ││ -│ │ --branch work/calm-deer ││ +│ │ --branch multiclaude/calm-deer ││ │ │ ✓ Worker created: quick-fox ││ │ │ ││ │ │ I'll check back after quick-fox pushes. ││ @@ -158,8 +158,8 @@ Got review comments? Spawn a worker to fix them: ```bash multiclaude worker create "Fix review comments on PR #48" \ - --branch origin/work/calm-deer \ - --push-to work/calm-deer + --branch origin/multiclaude/calm-deer \ + --push-to multiclaude/calm-deer ``` Worker pushes to the existing branch. Same PR. No mess. diff --git a/docs/extending/STATE_FILE_INTEGRATION.md b/docs/extending/STATE_FILE_INTEGRATION.md index a6026d4..2658eb6 100644 --- a/docs/extending/STATE_FILE_INTEGRATION.md +++ b/docs/extending/STATE_FILE_INTEGRATION.md @@ -163,7 +163,7 @@ The daemon persists state to `~/.multiclaude/state.json` and writes it atomicall { "name": "clever-fox", "task": "Add auth", - "branch": "work/clever-fox", + "branch": "multiclaude/clever-fox", "pr_url": "https://github.com/user/my-app/pull/42", "pr_number": 42, "status": "merged", diff --git a/internal/templates/agent-templates/worker.md b/internal/templates/agent-templates/worker.md index 4295bfd..43c6974 100644 --- a/internal/templates/agent-templates/worker.md +++ b/internal/templates/agent-templates/worker.md @@ -29,7 +29,7 @@ multiclaude message send supervisor "Need help: [your question]" ## Branch -Your branch: `work/` +Your branch: `multiclaude/` Push to it, create PR from it. ## Environment Hygiene