Updates
This commit is contained in:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user