Actually vendor harness

This commit is contained in:
2026-09-11 13:41:22 -04:00
parent 1acd371668
commit 04e013b090
52 changed files with 8550 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"name": "agent-harness",
"version": "0.1.0",
"description": "Standalone grok-class agent loop on QVAC. No BridgeSwarm.",
"license": "MIT",
"type": "commonjs",
"main": "index.js",
"bin": {
"agent-harness": "./bin/cli.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node bin/cli.js",
"test": "node test/test.js",
"chat": "node bin/cli.js"
},
"dependencies": {
"@qvac/sdk": "^0.18.0",
"hyperdispatch": "^1.6.0"
}
}