-
Notifications
You must be signed in to change notification settings - Fork 477
feat(cli): default output to JSON for coding agents #5532
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jgoux
merged 8 commits into
develop
from
pamela/growth-913-cli-auto-switch-default-output-to-json-for-agents-on
Jun 10, 2026
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
3339179
feat(cli): default output to JSON for coding agents
pamelachia 5c57f3e
fix(cli): keep explicit -o output authoritative over agent JSON default
pamelachia 6c907b6
fix(cli): apply agent output format to parse errors
jgoux 310090e
test(cli): harden agent output e2e parsing
jgoux c2f5e4c
refactor(cli): remove agent output override flag
jgoux 47eb743
test(stack): remove port allocator race
jgoux a4b4b3a
fix(cli): preserve legacy agent output controls
jgoux e940eac
fix(cli): scope root version text detection
jgoux File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| import { Option } from "effect"; | ||
| import type { OutputFormat } from "../output/types.ts"; | ||
|
|
||
| export function resolveAgentOutputFormat( | ||
| explicit: Option.Option<OutputFormat>, | ||
| isCodingAgent: boolean, | ||
| ): OutputFormat { | ||
| return Option.getOrElse(explicit, () => (isCodingAgent ? "json" : "text")); | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| import { Option } from "effect"; | ||
| import { describe, expect, it } from "vitest"; | ||
| import { resolveAgentOutputFormat } from "./agent-output.ts"; | ||
|
|
||
| describe("resolveAgentOutputFormat", () => { | ||
| it("defaults a coding agent to json", () => { | ||
| expect(resolveAgentOutputFormat(Option.none(), true)).toBe("json"); | ||
| }); | ||
|
|
||
| it("defaults a non-agent to text", () => { | ||
| expect(resolveAgentOutputFormat(Option.none(), false)).toBe("text"); | ||
| }); | ||
|
|
||
| it("honors an explicit format over agent detection", () => { | ||
| expect(resolveAgentOutputFormat(Option.some("text"), true)).toBe("text"); | ||
| expect(resolveAgentOutputFormat(Option.some("stream-json"), false)).toBe("stream-json"); | ||
| expect(resolveAgentOutputFormat(Option.some("json"), true)).toBe("json"); | ||
| }); | ||
| }); |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,8 @@ | ||
| import { Flag, GlobalFlag } from "effect/unstable/cli"; | ||
| import type { OutputFormat } from "../output/types.ts"; | ||
|
|
||
| export const OutputFormatFlag = GlobalFlag.setting("output-format")({ | ||
| flag: Flag.choice("output-format", ["text", "json", "stream-json"]).pipe( | ||
| Flag.withDescription("Output format: text (default), json, or stream-json (NDJSON)"), | ||
| Flag.withDefault("text" as OutputFormat), | ||
| Flag.optional, | ||
| ), | ||
| }); |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.