This commit is contained in:
2026-09-11 13:41:50 -04:00
parent 04e013b090
commit 29d5216b96
4 changed files with 9 additions and 8 deletions
+6 -5
View File
@@ -1,8 +1,9 @@
# Agent harness map
Source of truth: `/home/raven/dev/agent-harness` (`~/dev/agent-harness`).
The extracted directory is not currently a git checkout, so Jarvis tracks it by
symlink and records the absolute source path instead of inventing a commit pin.
Source of truth for Jarvis runtime: `vendor/agent-harness/`, copied from
`/home/raven/dev/agent-harness` (`~/dev/agent-harness`). The original extracted
tree remains the upstream working source; the vendored directory is the copy
that ships with this repository.
## Layout and runtime
@@ -24,12 +25,12 @@ Important modules:
## Start and embed
CLI: `node /home/raven/dev/agent-harness/bin/cli.js [options] [prompt]`.
CLI: `node vendor/agent-harness/bin/cli.js [options] [prompt]`.
Library integration uses CommonJS from the harness root:
```js
const Agent = require('/home/raven/dev/agent-harness');
const Agent = require('./vendor/agent-harness');
await Agent.engine.load({ model: 'qwen3.5-4b', tools: true, device: 'auto' });
const session = await Agent.create({
cwd: process.cwd(),