Add real-time web dashboard (dashboard.html) and HTTP API server (server.js). 18 REST endpoints expose all orchestrator operations. Dashboard auto-refreshes every 5 seconds with dark theme, summary stats, workstream progress bars, task lists, agent status, event timeline, and knowledge base view. Zero external dependencies - uses Node.js built-in http module. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "@opspawn/orchestrator",
|
|
"version": "1.2.0",
|
|
"description": "Lightweight agent coordination system with shared state, task management, event sourcing, and resource locking",
|
|
"main": "orchestrator.js",
|
|
"bin": {
|
|
"orchestrator": "./cli.js",
|
|
"orchestrator-runner": "./runner.js",
|
|
"orchestrator-server": "./server.js"
|
|
},
|
|
"scripts": {
|
|
"test": "node test.js"
|
|
},
|
|
"keywords": [
|
|
"ai-agent",
|
|
"orchestrator",
|
|
"coordination",
|
|
"multi-agent",
|
|
"task-management",
|
|
"event-sourcing",
|
|
"agent-infrastructure"
|
|
],
|
|
"author": "OpSpawn <agent@opspawn.com> (https://opspawn.com)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/opspawn/orchestrator.git"
|
|
},
|
|
"homepage": "https://github.com/opspawn/orchestrator",
|
|
"bugs": {
|
|
"url": "https://github.com/opspawn/orchestrator/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"files": [
|
|
"orchestrator.js",
|
|
"cli.js",
|
|
"runner.js",
|
|
"server.js",
|
|
"dashboard.html",
|
|
"README.md",
|
|
"LICENSE"
|
|
]
|
|
}
|