ADR 0089: Agent omnibus naming (get_ide_state) and IDE Health channel (instead of Workspace Health)
Status: Accepted
Date: 2026-04-23
Related ADRs
| ADR | Role |
|---|---|
| 0002 | debugging parity - separate solution; this ADR doesn't change the semantics of DAP/snapshot, only the names and term boundaries |
| 0036 | channel → CDS → composer → surface; conveyor same |
| 0008 | contracts, tests |
| 0052 | agent contract snapshots |
Outside ADR
| Document | Role |
|----------|------|
| MCP-PROTOCOL.md | MCP PROTOCOL |
Summary: remove confusion between workspace = directory/repo and IDE snapshot for agent; remove confusion between Workspace Health (observability strip) and “workspace on disk”. Solution: rename MCP omnibus get_workspace_state → get_ide_state; rename the product and in the code channel Workspace Health → IDE Health (specific identifiers are by repo agreement, e.g. IdeHealth*).
1. Context
- Today
get_workspace_stateactually gives shot of the IDE handle (solution, editor, breakpoints,debug, build, panels,cockpit_surface...), and not “just the folder path”. The name is misleading when discussed with agents and in documentation. - Workspace Health in the cockpit - about building / tests / debugging / git in the strip; the word workspace again carries the meaning of “project directory”, although we are talking about a development environment in an IDE.
- The implementation of a single debug-snapshot (0002) is orthogonal to this ADR: first or in parallel, you can enter
DebugSnapshot, reading it under the old omnibus name, until this ADR renames the tool.
2. Solution
- MCP /
IdeCommands: public name of the tool andcommand_id-get_ide_state, MCP tool -ide_get_ide_state(see MCP-PROTOCOL.md, 0030); internal method -IIdeMcpActions.GetIdeStateAsync. - Health channel: rename Workspace Health → IDE Health: namespaces
Cockpit/Channels/…, typesIWorkspaceHealthChannel→IIdeHealthChannel(or other uniform name), provider, composer, UI strings, links in ADR/README. The semantics of channel → CDS → compositor from 0036 does not change. - Documentation and tests: MCP-PROTOCOL.md, architecture-migration.md with a link to the tool, golden/approved JSON from 0052, if necessary - one line in architecture-policy.md.
3. UI: what's included and what's not
- Included (minimal): anything the user reads as "Workspace Health" or the old omnibus name in tooltips/docs - replace wording with IDE Health /
get_ide_state(ResX, lines inCockpit, stripe captions, etc.). This is the same control/composition, different name (terminological correction, not a feature). - Not included: new layout, change of PFD/MFD slots, new “design” of the health bar, debugging scripts in the UI - these are other ADRs (including 0002 for debugging parity: glyphs, panel, snapshot binding - not from 0089).
4. Boundaries (other things not included here)
- Do not duplicate 0002: do not describe DAP,
DebugSnapshot, removeshow_debug_*here - only naming and readability boundaries of "IDE vs workspace on disk". - Do not change CDS and topology of regions; only signatures/names, where this is purely terminology.
5. Consequences
- Breaking change for external MCP clients that called
ide_get_workspace_state/get_workspace_state: update toide_get_ide_state/get_ide_state; there are no aliases. - Large, but mechanical refactoring in
Cockpit/Channelsand lines - if possible separate logical commits (MCP omnibus vs channel renaming vs docks).
6. Rejected alternatives
- Keep
get_workspace_statewithout the "IDE" synonym - rejected: accumulated confusion in CIDE discussions. - Rename only omnibus without health channel - let's say as phase 1; complete alignment of terms is the goal of ADR.