Created
March 5, 2026 20:20
-
-
Save aguestuser/17a7ba6f6472bd0b23b0dc9b3fa8787d to your computer and use it in GitHub Desktop.
Claude Code status line command for tracking active work plans
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Usage: write-workplan.sh <claude-pid> <plan-names...> | |
| # Call as: ~/.claude/write-workplan.sh $PPID plan-name.md | |
| # $PPID is expanded by the calling shell (where it equals the Claude Code PID). | |
| pid="$1"; shift | |
| echo "$*" > "/tmp/claude-workplan-$pid" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment