@botbotgo/agent-harness 0.0.20 → 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.
Files changed (2) hide show
  1. package/README.md +25 -21
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,21 +1,27 @@
1
1
  # @botbotgo/agent-harness
2
2
 
3
- ## Slogan
3
+ ## Product Overview
4
4
 
5
- Declarative agent workspaces for LangChain v1 and DeepAgents.
5
+ `@botbotgo/agent-harness` helps developers build complex agent-based applications fast and keep them easy to maintain.
6
6
 
7
- ## Product Overview
7
+ It helps developers:
8
8
 
9
- `@botbotgo/agent-harness` is a TypeScript framework for loading a local workspace from disk, compiling it into runnable agent bindings, and executing requests through either a LangChain v1 path or a DeepAgent path.
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
- The framework is workspace-first:
15
+ Why it works:
12
16
 
13
- - agents are declared in YAML
14
- - tools and skills are discovered from `resources/`
15
- - workspace-wide behavior is declared in `config/workspace.yaml`
16
- - agent bootstrap context is declared in `config/agent-context.md`
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
- The public API stays intentionally small:
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
- - Declarative `Model`, `EmbeddingModel`, `VectorStore`, `LangChainAgent`, `DeepAgent`, and `Runtime` objects
72
- - Workspace loading from disk with framework defaults and workspace overrides
73
- - LangChain v1 agents for lightweight tool-calling flows
74
- - DeepAgents for planning, filesystem-backed execution, subagents, skills, and long-term memory
75
- - Resource package loading from `resources/tools/` and `resources/skills/`
76
- - Host-agent routing between a direct lane and an orchestration lane
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,11 +196,11 @@ 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 should read at construction time.
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
 
199
- If a runnable app workspace also includes `AGENTS.md`, treat that file as workspace-level operating guidance. It complements `config/agents/*.yaml` rather than replacing it: `AGENTS.md` carries durable behavioral rules, while `config/agents/` defines agent topology and runtime configuration.
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.
200
204
 
201
205
  ### Agent YAML
202
206
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botbotgo/agent-harness",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "description": "Agent Harness framework package",
5
5
  "type": "module",
6
6
  "packageManager": "npm@10.9.2",