mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 02:01:29 +00:00
The extension system currently only forwards agent_start, agent_end, turn_start, and turn_end events. This means extensions cannot access streaming text (token-by-token), message lifecycle, or tool execution progress — all of which are available to internal subscribers. This adds forwarding for the remaining 6 agent event types: - message_start, message_update, message_end - tool_execution_start, tool_execution_update, tool_execution_end These follow the exact same pattern as the existing forwarded events: new interfaces in types.ts, exports in index.ts, and else-if blocks in _emitExtensionEvent(). The new types are included in ExtensionEvent and automatically flow through RunnerEmitEvent (they're not in the exclusion list). This enables extensions to build real-time UIs, streaming WebSocket bridges, and other integrations that need fine-grained event access. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Mario Zechner <badlogicgames@gmail.com> |
||
|---|---|---|
| .. | ||
| compaction | ||
| export-html | ||
| extensions | ||
| tools | ||
| agent-session.ts | ||
| auth-storage.ts | ||
| bash-executor.ts | ||
| defaults.ts | ||
| diagnostics.ts | ||
| event-bus.ts | ||
| exec.ts | ||
| footer-data-provider.ts | ||
| index.ts | ||
| keybindings.ts | ||
| messages.ts | ||
| model-registry.ts | ||
| model-resolver.ts | ||
| package-manager.ts | ||
| prompt-templates.ts | ||
| resolve-config-value.ts | ||
| resource-loader.ts | ||
| sdk.ts | ||
| session-manager.ts | ||
| settings-manager.ts | ||
| skills.ts | ||
| slash-commands.ts | ||
| system-prompt.ts | ||
| timings.ts | ||