feat(#93): implement agent spawn via federation
Implements FED-010: Agent Spawn via Federation feature that enables spawning and managing Claude agents on remote federated Mosaic Stack instances via COMMAND message type. Features: - Federation agent command types (spawn, status, kill) - FederationAgentService for handling agent operations - Integration with orchestrator's agent spawner/lifecycle services - API endpoints for spawning, querying status, and killing agents - Full command routing through federation COMMAND infrastructure - Comprehensive test coverage (12/12 tests passing) Architecture: - Hub → Spoke: Spawn agents on remote instances - Command flow: FederationController → FederationAgentService → CommandService → Remote Orchestrator - Response handling: Remote orchestrator returns agent status/results - Security: Connection validation, signature verification Files created: - apps/api/src/federation/types/federation-agent.types.ts - apps/api/src/federation/federation-agent.service.ts - apps/api/src/federation/federation-agent.service.spec.ts Files modified: - apps/api/src/federation/command.service.ts (agent command routing) - apps/api/src/federation/federation.controller.ts (agent endpoints) - apps/api/src/federation/federation.module.ts (service registration) - apps/orchestrator/src/api/agents/agents.controller.ts (status endpoint) - apps/orchestrator/src/api/agents/agents.module.ts (lifecycle integration) Testing: - 12/12 tests passing for FederationAgentService - All command service tests passing - TypeScript compilation successful - Linting passed Refs #93 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -5,6 +5,7 @@ Technical design documents for major Mosaic Stack features.
|
||||
## Purpose
|
||||
|
||||
Design documents serve as:
|
||||
|
||||
- **Blueprints** for implementation
|
||||
- **Reference** for architectural decisions
|
||||
- **Communication** between team members
|
||||
@@ -32,6 +33,7 @@ Each design document should include:
|
||||
Infrastructure for persistent task management and autonomous agent coordination. Enables long-running background work independent of user sessions.
|
||||
|
||||
**Key Features:**
|
||||
|
||||
- Task queue with priority scheduling
|
||||
- Agent health monitoring and automatic recovery
|
||||
- Checkpoint-based resumption for interrupted work
|
||||
@@ -49,6 +51,7 @@ Infrastructure for persistent task management and autonomous agent coordination.
|
||||
Native knowledge management with wiki-style linking, semantic search, and graph visualization. Enables teams and agents to capture, connect, and query organizational knowledge.
|
||||
|
||||
**Key Features:**
|
||||
|
||||
- Wiki-style `[[links]]` between entries
|
||||
- Full-text and semantic (vector) search
|
||||
- Interactive knowledge graph visualization
|
||||
@@ -79,6 +82,7 @@ When creating a new design document:
|
||||
Multi-instance federation enabling cross-organization collaboration, work/personal separation, and enterprise control with data sovereignty.
|
||||
|
||||
**Key Features:**
|
||||
|
||||
- Peer-to-peer federation (every instance can be master and/or spoke)
|
||||
- Authentik integration for enterprise SSO and RBAC
|
||||
- Agent Federation Protocol for cross-instance queries and commands
|
||||
|
||||
Reference in New Issue
Block a user