feat: Improve CLI help and status display for token awareness#338
Open
aronchick wants to merge 1 commit intodlorenc:mainfrom
Open
feat: Improve CLI help and status display for token awareness#338aronchick wants to merge 1 commit intodlorenc:mainfrom
aronchick wants to merge 1 commit intodlorenc:mainfrom
Conversation
- Add LongDescription field to Command struct for detailed help text - Add comprehensive help for 'repo hibernate' explaining token consumption - Show specific active agents in 'multiclaude status' (supervisor, merge-queue, etc.) instead of just 'X core, Y workers' - Add token consumption warning when agents are active - Point users to 'hibernate --all' to stop token usage This makes hibernate more discoverable and helps users understand that running agents continuously consume API tokens. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
Author
|
✅ Merge Queue: READY TO MERGE
This PR is ready for maintainer merge. |
whitmo
added a commit
to whitmo/multiclaude
that referenced
this pull request
Mar 1, 2026
whitmo
added a commit
to whitmo/multiclaude
that referenced
this pull request
Mar 1, 2026
…(context-aware refresh) 13 new tests covering token-aware status display, LongDescription help, handleListRepos enriched response, context-aware refresh path detection, --all flag parsing, and worktree path edge cases. Findings documented at /tmp/swarm-tests-338-339.md including: - PR dlorenc#338 depends on unmerged ForkConfig PR - PR dlorenc#339 symlink handling is correct - Both PRs are independent with no conflicts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2 tasks
whitmo
added a commit
to whitmo/multiclaude
that referenced
this pull request
Mar 1, 2026
…c#333 on pr-triage-b2 Tests from multiclaude workers (silly-otter, lively-otter, clever-bear): - PR dlorenc#338: Token-aware status display, hibernate help, rich list_repos response - PR dlorenc#339: Context-aware refresh, worktree path detection, --all flag parsing - PR dlorenc#337: Categorized help (worker report captured, tests via CLI assertions) - PR dlorenc#333: Enhanced repair (worker report captured, daemon handler tests) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Mar 1, 2026
3 tasks
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
LongDescriptionfield to Command struct for detailed help textrepo hibernateexplaining it stops ALL token consumptionmulticlaude status(supervisor, merge-queue, workspace) instead of just "X core, Y workers"hibernate --allChanges
internal/cli/cli.go:
LongDescriptionfield toCommandstructshowCommandHelp()to displayLongDescriptionwhen presentrepo hibernatecommandsystemStatus()to show individual agent names and typesinternal/daemon/daemon.go:
handleListRepos()to returncore_agents(name + type) andworker_namesarrays instead of just countsTest plan
go build ./cmd/multiclaude- builds successfullygo test ./...- all tests passmulticlaude repo hibernate --helpshows detailed help about token consumptionmulticlaude statusshows specific agents (e.g., "supervisor (supervisor), merge-queue (merge-queue)")🤖 Generated with Claude Code