claude-settings: set fleet-wide outputStyle to Concise

This commit is contained in:
damocles 2026-09-13 20:15:55 +02:00 committed by mara
commit 1dc097be15
2 changed files with 7 additions and 1 deletions

View file

@ -92,7 +92,12 @@ disable automemory and dynamic workflows (the `/workflows` feature):
that burn usage on the harness's autonomous turns. Claude's own native that burn usage on the harness's autonomous turns. Claude's own native
autocompact is **on**, at the widest window claude-code allows — see autocompact is **on**, at the widest window claude-code allows — see
[Compaction](#compaction) below for why (it's a safety net, not the [Compaction](#compaction) below for why (it's a safety net, not the
primary mechanism; hyperhive still owns that). primary mechanism; hyperhive still owns that). `outputStyle` is fleet-wide
**Concise** — output tokens are real spend on an always-on agent, and the
preamble/recap Concise drops carries no information a turn-loop consumer
needs. Doesn't reach subagents (`hive-subagent-mcp`'s nested sessions run
their own system prompt and don't inherit the parent's output style,
per claude-code's own docs) — expected, not a gap to chase.
**Session reset** is available via `POST /api/new-session` (or **Session reset** is available via `POST /api/new-session` (or
`/new-session` slash command). It does _not_ touch the session inline — `/new-session` slash command). It does _not_ touch the session inline —

View file

@ -3,6 +3,7 @@
"autoCompactWindow": 1000000, "autoCompactWindow": 1000000,
"autoMemoryEnabled": false, "autoMemoryEnabled": false,
"disableWorkflows": true, "disableWorkflows": true,
"outputStyle": "Concise",
"permissions": { "permissions": {
"deny": ["Task", "TodoWrite"] "deny": ["Task", "TodoWrite"]
} }