Roo-Code/src/shared/globalFileNames.ts
Roo Code 5c1123a9bf feat: add A2A (Agent-to-Agent) protocol support - Phase 1
Implements Phase 1 of A2A protocol support as discussed in #12007:
- A2A types (agent config, task, message, artifact types)
- A2aHub service for managing agent connections
- delegate_to_agent tool for delegating tasks to external agents
- Manual configuration via a2a_settings.json (global/project)
- Configurable headers for authentication (JSON key-value pairs)
- Integration with system prompt, tool parser, and ClineProvider
- A2A tool group added to code mode
- Tests for A2aHub service
2026-03-26 23:08:10 +00:00

10 lines
333 B
TypeScript

export const GlobalFileNames = {
apiConversationHistory: "api_conversation_history.json",
uiMessages: "ui_messages.json",
mcpSettings: "mcp_settings.json",
a2aSettings: "a2a_settings.json",
customModes: "custom_modes.yaml",
taskMetadata: "task_metadata.json",
historyItem: "history_item.json",
historyIndex: "_index.json",
}