confluence_web/agent/package.json
Artur Mukhamadiev 38a8ca67f7 agent: pi runtime track handoff (contract revision 1)
Pinned pi SDK 0.85.1 bridge, Python supervisor, artifact exporter,
scripted backend peer, image checks and boundary checks under agent/**.
Review findings F1-F3 are recorded in docs/implementation/PI_AGENT_REVIEW.md.
2026-09-14 21:57:54 +03:00

25 lines
708 B
JSON

{
"name": "confluence-agent-runtime",
"version": "1.0.0",
"description": "Isolated pi runtime and bridge for Confluence research",
"type": "module",
"scripts": {
"build": "tsc",
"test": "node --import tsx --test tests/*.test.ts",
"start": "python3 supervisor",
"proof": "npm run build && node dist/dev/fake-backend.js",
"test:image": "npm run build && node dist/dev/image-checks.js"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "0.85.1",
"@earendil-works/pi-agent-core": "0.85.1",
"@earendil-works/pi-ai": "0.85.1",
"typebox": "1.3.7"
},
"devDependencies": {
"@types/node": "22.20.2",
"tsx": "4.23.13",
"typescript": "5.9.3"
}
}