Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Standup (Branch-Agent Facilitator)

Convenes your git worktrees and open PRs as chat agents, runs the discussion in rounds, and lands on one consolidation plan.

Dev & CodingAdvanced90,1397,846AI score 7/10Last updated: Aug 9, 2026

What it does

When your work is scattered across worktrees, branches and PRs, Claude becomes the facilitator: every branch (and any PR you pick) joins a shared markdown room at ~/.claude-mem/STANDUP.md as its own agent. Round 1 is introductions — each agent reports its real state via git log, git status and git diff --stat. Then the facilitator surfaces overlaps, conflicts and competing implementations and re-spawns only the agents involved, up to about four resolution rounds.

The room is strictly read-only: nobody commits or merges inside it. The output is a decision — target worktree, merge order, conflict resolutions — written as a SUMMATION, then translated into plain prose for the human. Actual merging happens afterwards through /do.

Who it's for

  • Developers running several git worktrees in parallel
  • Teams with a pile of open PRs whose overlaps are unclear
  • Anyone collapsing experiment branches back into one line of work
  • Existing claude-mem plugin users

Examples

  1. "Standup the last 4 hours" — it lists worktrees with a commit or uncommitted edit in that window, opens the room, and tells you which branch actually has code versus docs-only or empty.
  2. PR conflict triage — pick three open PRs; the agents compare diffs and hand back concrete questions like "PR #12's or PR #15's implementation wins?" via AskUserQuestion.
  3. Merge-order planning — you get a one-sentence plan ("build on worktree A, layer B then C, drop D") that you can pass straight to /do.

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the plugin/skills/standup folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/standup/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/thedotmack/claude-mem.git /tmp/claude-mem && mkdir -p ~/.claude/skills && cp -r /tmp/claude-mem/plugin/skills/standup ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/thedotmack/claude-mem.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r claude-mem/plugin/skills/standup ~/.claude/skills/
  5. Confirm standup.mjs and agent-brief.md are inside the copied folder — both are required.
  6. Check Node.js is available: node -v
  7. For PR support, install the GitHub CLI and sign in: gh auth login (worktree-only mode works without it).
  8. Restart Claude Code and ask something like "run a standup across my recent worktrees" to trigger the skill.
View source on GitHubLicense: Apache-2.0