mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-15 23:31:04 +00:00
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
10 lines
333 B
TypeScript
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",
|
|
}
|