MCPcopy Create free account
hub / github.com/Louisym/MiniCC / AgentManifest

Class AgentManifest

mini_claude_code/multi_agent.py:35–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33# ============================================================
34
35class AgentManifest(BaseModel):
36 agent_id: str
37 name: str
38 description: str
39 subagent_type: str
40 status: str = "running" # running → completed / failed
41 output_file: str = ""
42 manifest_file: str = ""
43 created_at: str = ""
44 started_at: Optional[str] = None
45 completed_at: Optional[str] = None
46 error: Optional[str] = None
47
48
49# ============================================================

Callers 1

spawn_agentMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected