Skip to content

sudokku/gsd-watch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

176 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

gsd-watch

Live GSD project status sidebar for Claude Code β€” in your terminal, always visible.

Platform License Built with Go

gsd-watch demo

Demo is sped up and has some minutes cut for convenience. Recorded on a real micro-ffmpeg project session.

A read-only tmux/cmux sidebar that renders your GSD project tree live β€” phases, plans, status icons, and lifecycle badges β€” updating within a second of any file change. Sits alongside Claude Code so you always know where you are without switching context.


Requirements

OS / Arch tmux cmux
macOS arm64 βœ“ βœ“
macOS amd64 βœ“ βœ“
Linux arm64 βœ“ βœ—
Linux amd64 βœ“ βœ—

cmux is macOS-only; Linux users use tmux.

  • tmux or cmux β€” one must be running
  • Claude Code running inside a tmux or cmux session
  • GSD v1 project with a .planning/ directory

Installation

Option A β€” Download binary (recommended, no Go required):

# Apple Silicon (M1/M2/M3/M4)
curl -L https://github.com/sudokku/gsd-watch/releases/latest/download/gsd-watch-darwin-arm64 \
  -o ~/.local/bin/gsd-watch && chmod +x ~/.local/bin/gsd-watch

# Intel Mac
curl -L https://github.com/sudokku/gsd-watch/releases/latest/download/gsd-watch-darwin-amd64 \
  -o ~/.local/bin/gsd-watch && chmod +x ~/.local/bin/gsd-watch

Linux:

# Linux arm64
curl -L https://github.com/sudokku/gsd-watch/releases/latest/download/gsd-watch-linux-arm64 \
  -o ~/.local/bin/gsd-watch && chmod +x ~/.local/bin/gsd-watch

# Linux amd64
curl -L https://github.com/sudokku/gsd-watch/releases/latest/download/gsd-watch-linux-amd64 \
  -o ~/.local/bin/gsd-watch && chmod +x ~/.local/bin/gsd-watch

Make sure ~/.local/bin is on your $PATH. Add this to your shell profile if needed:

export PATH="$HOME/.local/bin:$PATH"

Then install the /gsd-watch slash command into Claude Code:

mkdir -p ~/.claude/commands
curl -L https://raw.githubusercontent.com/sudokku/gsd-watch/main/commands/gsd-watch.md \
  -o ~/.claude/commands/gsd-watch.md

Option B β€” Build from source:

git clone https://github.com/sudokku/gsd-watch.git
cd gsd-watch
make all   # builds macOS binaries + installs to ~/.local/bin/gsd-watch

Then install the /gsd-watch slash command into Claude Code:

make plugin-install-global   # available in all projects (recommended)
make plugin-install-local    # available in current project only

Usage

Inside a Claude Code session running in tmux, run:

/gsd-watch

This opens a 35%-width right-side pane running gsd-watch for your current project. Focus stays on the Claude Code pane. The sidebar updates automatically as GSD phases progress β€” no manual refresh needed.

Keyboard shortcuts

Key Action
j / ↓ Move down
k / ↑ Move up
l / β†’ Expand phase
h / ← Collapse phase
e Expand all
w Collapse all
? Help overlay
qq / Esc Esc Quit
Ctrl+C Force quit

Phase lifecycle badges

Badges appear under each phase when the corresponding GSD lifecycle file exists in the phase directory:

Badge Stage File
πŸ’¬ Discussed NN-CONTEXT.md
πŸ”Ž Researched NN-RESEARCH.md
🎨 UI Spec NN-UI-SPEC.md
πŸ“‹ Planned NN-01-PLAN.md
πŸš€ Executed NN-01-SUMMARY.md
βœ… Verified NN-VERIFICATION.md
πŸ§ͺ UAT NN-HUMAN-UAT.md

How it works

gsd-watch watches .planning/ with fsnotify (recursive, debounced at 300ms) and re-renders on any file change β€” so the tree is always current without polling.


Building

make build-darwin  # build/gsd-watch-darwin-arm64 + build/gsd-watch-darwin-amd64
make build-linux   # build/gsd-watch-linux-arm64 + build/gsd-watch-linux-amd64
make build-all     # all four binaries (darwin + linux)
make install       # copy arch-appropriate binary to ~/.local/bin
make clean         # remove build/

Static binary, no CGO, no runtime dependencies except tmux or cmux. Built with Bubble Tea.

macOS Sequoia note: Darwin binaries must be signed or macOS will kill them at launch. make build-darwin handles this automatically via codesign. Linux binaries require no signing. Binaries downloaded from GitHub releases are pre-signed.


Contributing

Bugs, feature ideas, and workflow suggestions are all welcome β€” open a GitHub issue. Especially interested in hearing how other GSD users are using it and what would make it more useful day-to-day.


MIT License

About

🧠 Real-time dashboard for GSD + Claude Code workflows β€” track phases, tasks and progress across tmux-powered multi-agent sessions.

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors