- Coordinator agent accepts complex tasks and decomposes into subtasks - Delegates to specialized worker agents via A2A v0.3 JSON-RPC - Handles x402 payment flows (paid skills return payment-required) - Free skills execute end-to-end through delegation chain - Web dashboard with real-time swarm monitoring - 14 tests passing - Worker agents: screenshot, PDF, HTML (via A2A gateway) - Event log tracks all delegations and completions
14 lines
383 B
JSON
14 lines
383 B
JSON
{
|
|
"name": "@opspawn/agent-swarm",
|
|
"version": "1.0.0",
|
|
"description": "Multi-agent task decomposition and delegation system using A2A protocol and x402 payments",
|
|
"type": "module",
|
|
"main": "server.mjs",
|
|
"scripts": {
|
|
"start": "node server.mjs",
|
|
"test": "node test.mjs"
|
|
},
|
|
"keywords": ["a2a", "x402", "multi-agent", "orchestration", "mcp"],
|
|
"license": "MIT"
|
|
}
|