fix(docs): correct AGENTS.md push/status exit code (4, not 3)#147
Open
ivanmkc wants to merge 1 commit into
Open
fix(docs): correct AGENTS.md push/status exit code (4, not 3)#147ivanmkc wants to merge 1 commit into
ivanmkc wants to merge 1 commit into
Conversation
When TERMCHART_VIEWER_URL/TOKEN are unset, push and status return EXIT_NO_VIEWER=4 (packages/cli/src/viewer-detect.ts:15), and the message is '…are not set: no termchart viewer configured.' AGENTS.md claimed exit 3 with a non-matching hint, which can mislead an agent into a wrong retry path.
This was referenced Jun 7, 2026
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
AGENTS.mdtold agents thatpush/statusexit 3 when the viewer env vars are unset. The code actually returnsEXIT_NO_VIEWER = 4(packages/cli/src/viewer-detect.ts:15, used inpush.ts:36andstatus.ts:81), with the message…are not set: no termchart viewer configured.A wrong exit code in the always-loaded guide can send an agent down an incorrect retry/branch path (wasted tokens). This aligns the doc with the code (the skills/commands already say 4).
This is fix T5 from the latency/token experiment plan. Refs #142.
Change
AGENTS.md:exit 3→exit 4, and the hint text now matchesmissingConfigMessage().