feat(session): default config, inline overrides, consistent lingo (v0.8.0)#39
Merged
Conversation
start: config source is now optional (server runs the default config); the prompt can be positional; add --model/--system/--repo/--cpu/--memory/--timeout/--budget sugar flags merged into one config override. attach modes: --detach (default), --watch (live), --watch --quiet (block, exit code = outcome), --connect. Retire --wait. connect: add --no-input (read-only, for non-interactive callers); rename --no-backlog to --no-steps. lingo: --config is the saved-config id everywhere (was --config-id / --agent); reserve 'transcript' for the raw JSONL and 'steps' for rendered activity; 'prompt' for free-text. Bump version to 0.8.0.
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.
What
Makes
agent session startusable with zero config, adds inline overrides, and cleans up inconsistent flag/term naming across thesessioncommand group.session start--config/--config-file/--template, the server runs the platform default config and the prompt is the sole instruction. (Requires the backend change that relaxesPOST /v1/sessions.)agent session start "triage the failing CI"==-p "...". Passing both errors.config_override(deep-merged under the raw--config-override, flags win):--model,--system,--repo(repeatable,owner/nameor barename),--cpu,--memory,--timeout,--budget.Attach modes (collapsed)
-d, --detach(default) fire-and-forget;-w, --watchblocks until terminal streaming live;--watch --quietblocks without streaming and exits with a code matching the outcome;--connectinteractive.--waitretired in favor of--watch --quiet.--quietalso added toget/replay.session connect--no-input— follow read-only (never open the composer), for non-interactive callers.--no-backlogrenamed to--no-steps.Naming consistency
--config <id>is the saved-config id onstart/list/replay/search(was a mix of--config/--config-id/--agent)..jsonlartifact (thetranscriptcommand); rendered activity is "steps" everywhere; free-text is "prompt".Version
Bumps
package.jsonto 0.8.0 (minor: new features + breaking flag renames). The release tagv0.8.0cuts the actual release on merge.Tests / checks
bun run typecheck,bun run test(197 pass, incl. newbuildStartOverride+watchSessionexit-code coverage), andbun run buildall green locally.Ordering
The backend companion PR (relaxing
POST /v1/sessions+ pinningELLIPSIS_CLI_VERSION = 0.8.0) should merge/deploy afterv0.8.0is released, since the sandbox image downloads that tag.🤖 Generated with Claude Code