You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(cli): /agents opens the engine's native agent view when it has one
`/agents <engine>` (and `moshcode agents <engine>`) previously always ran the
engine's autonomous-session bypass flag — so `/agents claude` dropped you into a
`claude --dangerously-skip-permissions` session, never your agent list.
Engines can now declare an `agentsView` (the exact argv that opens their native
agent list). Agent-mode launches use it when present, else fall back to the
autonomous bypass flags as before:
claude -> claude agents --dangerously-skip-permissions (agent view)
opencode -> opencode agent list (agent view)
codex -> codex --dangerously-bypass-approvals-and-sandbox (autonomous)
gemini -> gemini --approval-mode=yolo (autonomous)
aider -> aider --yes-always (autonomous)
Only engines whose CLI actually has an agents subcommand get a view; codex has
bypass flags but no agents subcommand, so it (and gemini/aider) keep the old
autonomous behavior. Updated the agent-mode banner + README + engine tests.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
0 commit comments