@botbotgo/agent-harness 0.0.19 → 0.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,21 +1,27 @@
|
|
|
1
1
|
# @botbotgo/agent-harness
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Product Overview
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
`@botbotgo/agent-harness` helps developers build complex agent-based applications fast and keep them easy to maintain.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
It helps developers:
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
- define agents in YAML
|
|
10
|
+
- keep workspace behavior in `config/workspace.yaml`
|
|
11
|
+
- keep shared bootstrap context in `config/agent-context.md`
|
|
12
|
+
- discover tools and skills from `resources/`
|
|
13
|
+
- run through either LangChain v1 or DeepAgents with one app-facing API
|
|
10
14
|
|
|
11
|
-
|
|
15
|
+
Why it works:
|
|
12
16
|
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
- workspace
|
|
16
|
-
-
|
|
17
|
+
- it helps developers move from idea to working complex agent application with less setup friction
|
|
18
|
+
- it makes ongoing maintenance lighter, including maintenance flows that can be automated by the application itself
|
|
19
|
+
- one workspace becomes the source of truth for agent topology, models, tools, and operating context
|
|
20
|
+
- one API covers direct agents and orchestration flows
|
|
21
|
+
- local resources stay portable and versionable
|
|
22
|
+
- thread state, approvals, resumability, and maintenance are built in
|
|
17
23
|
|
|
18
|
-
|
|
24
|
+
Core API:
|
|
19
25
|
|
|
20
26
|
- `createAgentHarness(...)`
|
|
21
27
|
- `run(...)`
|
|
@@ -45,6 +51,7 @@ your-workspace/
|
|
|
45
51
|
resources/
|
|
46
52
|
package.json
|
|
47
53
|
tools/
|
|
54
|
+
skills/
|
|
48
55
|
```
|
|
49
56
|
|
|
50
57
|
Minimal usage:
|
|
@@ -68,15 +75,12 @@ try {
|
|
|
68
75
|
|
|
69
76
|
## Feature List
|
|
70
77
|
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
- Persistent thread state, approvals, run history, and resumable execution
|
|
78
|
-
- Store-backed `/memories/*` long-term memory
|
|
79
|
-
- Background checkpoint maintenance for `SqliteSaver`
|
|
78
|
+
- One workspace for agents, models, tools, and runtime behavior
|
|
79
|
+
- One API for both LangChain v1 and DeepAgents
|
|
80
|
+
- Built-in routing for direct and orchestration flows
|
|
81
|
+
- Auto-discovered local tools and skills from `resources/tools/` and `resources/skills/`
|
|
82
|
+
- Built-in thread state, approvals, resumable runs, and long-term memory
|
|
83
|
+
- MCP server helpers plus background checkpoint maintenance
|
|
80
84
|
|
|
81
85
|
## How To Use
|
|
82
86
|
|
|
@@ -192,10 +196,12 @@ Use this file for workspace-wide behavior such as:
|
|
|
192
196
|
|
|
193
197
|
### `config/agent-context.md`
|
|
194
198
|
|
|
195
|
-
Use this file for shared bootstrap context that agents
|
|
199
|
+
Use this file for shared bootstrap context that agents read at construction time.
|
|
196
200
|
|
|
197
201
|
Put stable project context here, not long-term mutable memory.
|
|
198
202
|
|
|
203
|
+
If a runnable app workspace also includes `AGENTS.md`, treat that file as workspace-level operating guidance. It complements `config/agents/*.yaml`: `AGENTS.md` carries durable behavioral rules, while `config/agents/` defines agent topology and runtime configuration.
|
|
204
|
+
|
|
199
205
|
### Agent YAML
|
|
200
206
|
|
|
201
207
|
Use `config/agents/*.yaml` to configure agents. Common fields include:
|