Add work-system statusline segment#33
Merged
Merged
Conversation
New /work-system:statusline skill renders a compact [ws ○… ●… ◇… ✓…]
task-backlog segment in Claude Code's status line, mirroring the
knowledge-system /statusline pattern.
- scripts/ws-statusline.sh — self-contained renderer. Counts tasks/*.md by
state with muted single-width glyphs (zero columns dropped): ○ not-started,
● active (worktree), ◇ in review (open PR), ✓ merged (ready to /close).
Precedence PR → worktree → not-started. Silent outside a repo with a
tasks/ backlog.
- PR state via a short-TTL cache in .git/ (never dirties the tree) refreshed
by a detached background `gh` call — render never blocks on the network.
- scripts/ws-statusline-install.sh — installer cloned from the knowledge-system
statusline-install.sh: own marker segment (# {{ws}}), coexists with the
{{cks}} block; atomic + restorable install/enable/disable/uninstall/status.
- skills/statusline/SKILL.md — thin wrapper over the installer.
- Bump work-system 1.6.0 → 1.7.0 (minor: new skill); update READMEs + CLAUDE.md.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BXcDFmjmST5nvVi7hfmk7w
gering
force-pushed
the
task/add-work-system-statusline
branch
from
July 15, 2026 22:00
e4da145 to
5f6f213
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/work-system:statuslineskill renders a compact[ws ○… ●… ◇… ✓…]task-backlog segment in Claude Code's status line, mirroring the knowledge-system/statuslinepattern.tasks/*.mdby state — ○ not-started, ● active (worktree), ◇ in review (open PR), ✓ merged (ready to/close) — with muted single-width glyphs; zero columns dropped..git/refreshed by a detached backgroundghcall, so a render never blocks on the network.[cks …]block in one~/.claude/statusline.sh(verified live).Changes
plugins/work-system/scripts/ws-statusline.sh— self-contained renderer (glyph mapping, worktree/PR state, background cache with amkdirlock + stale-lock sweep).plugins/work-system/scripts/ws-statusline-install.sh— installer cloned fromstatusline-install.sh: own# {{ws}}marker, atomic + restorable install/enable/disable/uninstall/status.plugins/work-system/skills/statusline/SKILL.md— thin wrapper over the installer.1.6.0 → 1.7.0; READMEs,CLAUDE.md,CHANGELOG.md, and the statusline knowledge entry updated.Readiness
plugin.json+marketplace.json)statusline-integration.md)check-structure.pygreen (0 errors)Test plan
bash "$HOME/.claude/plugins/.../ws-statusline.sh" <repo-with-tasks>renders[ws …]; silent outside atasks/backlog.installinjects the# {{ws}}block alongside an existing[cks …]block without touching it;uninstallstrips it cleanly.🤖 Generated with Claude Code