feat(cli): add /recap, /login, /logout, /pr_comments parity commands#157
Merged
Conversation
Four Claude-Code slash commands that were missing (🔄 in BEHAVIOR_PARITY):
- /recap — provider-summarized recap of the session so far (ctx.provider
+ ctx.history → runTurn; honest empty/no-provider states)
- /login [key] — show auth status, or store a new DeepSeek API key (applies on
next launch); /logout — clear stored creds + exit
- /pr_comments — `gh pr view` comments for the current branch's PR (graceful
no-gh / no-PR handling); pure formatPrComments renderer
Adds credsStore to SessionContext (REPL-injected) for /login + /logout.
Tests (parity-commands.test.ts, 9 cases): /recap via a mock provider + empty/
no-provider; /login + /logout against a forceFile CredentialsStore under a temp
HOME (never the keychain, never real creds); formatPrComments rendering + the
no-PR/no-gh fallback. Full CLI suite: 133 pass. Verified the real `gh pr view`
JSON shape matches the parser.
Flips the /recap, /login//logout, /pr_comments rows in BEHAVIOR_PARITY → ✅.
(Overlaps the open #154 audit on those rows — see PR note.)
Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
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.
Adds four Claude-Code slash commands that were missing (🔄 in
BEHAVIOR_PARITY.md):/recapctx.provider+ctx.history→runTurn). Honest empty-conversation + no-provider states./login [key]<key>→ store a new DeepSeek API key (applies on next launch)./logout/pr_commentsgh pr viewcomments for the current branch's PR; graceful no-gh(ENOENT) / no-PR handling; pureformatPrCommentsrenderer.SessionContextgains a REPL-injectedcredsStore(backs/login+/logout).Tests —
parity-commands.test.ts(9 cases)/recapvia a mock provider + empty-history + no-provider paths./login+/logoutagainst aforceFileCredentialsStoreunder a temp HOME (never the keychain, never real creds — per the repo's credential-test rule).formatPrCommentsrendering (author/body/date) + the no-PR/no-ghfallback.gh pr view --json number,title,commentsshape matches the parser.Flips the
/recap,/login///logout,/pr_commentsrows inBEHAVIOR_PARITY.md→ ✅.Note
Touches 3 rows of the slash-commands table that the open #154 parity-audit PR also edits. Whichever merges second needs a trivial rebase of those rows (both want them ✅). Commented on #154.
Follow-up (not in scope)
/loginlive key-swap without restart (the agent turn uses theproviderclosure, notctx.provider; would need the REPL to rebuild the provider on a reauth flag).🤖 Generated with Claude Code