@botbotgo/agent-harness 0.0.54 → 0.0.55

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 CHANGED
@@ -18,6 +18,12 @@ That means:
18
18
  - runtime lifecycle stays stable even if backend implementations change
19
19
  - backend internals stay behind adapters
20
20
 
21
+ The repository also keeps two boundary documents current:
22
+
23
+ - `docs/upstream-feature-matrix.md`
24
+ - `docs/product-boundary.md`
25
+ - `docs/feature-checklist.md`
26
+
21
27
  What the runtime provides:
22
28
 
23
29
  - `createAgentHarness(workspaceRoot)`, `run(...)`, `resolveApproval(...)`, `subscribe(...)`, inspection methods, and `stop(...)`
@@ -90,6 +96,14 @@ try {
90
96
  - MCP bridge support for agent-declared MCP servers
91
97
  - MCP server support for exposing harness tools outward
92
98
 
99
+ ## Design Notes
100
+
101
+ - `agent-harness` is not a third agent framework
102
+ - LangChain v1 and DeepAgents own agent execution semantics
103
+ - `agent-harness` owns workspace assembly, runtime lifecycle, approvals, inspection, recovery, and operations
104
+ - when upstream already has the feature, prefer passthrough or light YAML adaptation over a new harness abstraction
105
+ - when a feature can be expressed in YAML, prefer YAML over expanding the public API
106
+
93
107
  ## How To Use
94
108
 
95
109
  ### Create A Runtime
@@ -1 +1 @@
1
- export declare const AGENT_HARNESS_VERSION = "0.0.53";
1
+ export declare const AGENT_HARNESS_VERSION = "0.0.54";
@@ -1 +1 @@
1
- export const AGENT_HARNESS_VERSION = "0.0.53";
1
+ export const AGENT_HARNESS_VERSION = "0.0.54";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botbotgo/agent-harness",
3
- "version": "0.0.54",
3
+ "version": "0.0.55",
4
4
  "description": "Workspace runtime for multi-agent applications",
5
5
  "type": "module",
6
6
  "packageManager": "npm@10.9.2",
@@ -50,7 +50,7 @@
50
50
  "scripts": {
51
51
  "build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json && cp -R config dist/",
52
52
  "check": "tsc -p tsconfig.json --noEmit",
53
- "test": "vitest run test/public-api.test.ts test/resource-optional-provider.test.ts test/resource-isolation.test.ts test/stock-research-app-load-harness.test.ts test/stock-research-app-run.test.ts test/stock-research-app-config.test.ts test/release-workflow.test.ts test/release-version.test.ts test/gitignore.test.ts test/package-lock.test.ts test/readme.test.ts test/runtime-adapter-regressions.test.ts test/runtime-capabilities.test.ts test/runtime-recovery.test.ts test/tool-extension-gaps.test.ts test/checkpoint-maintenance.test.ts test/llamaindex-dependency-compat.test.ts test/skill-standard.test.ts test/routing-config.test.ts test/workspace-compat-regressions.test.ts test/upstream-compat-regressions.test.ts test/yaml-format.test.ts",
53
+ "test": "vitest run test/public-api.test.ts test/resource-optional-provider.test.ts test/resource-isolation.test.ts test/stock-research-app-load-harness.test.ts test/stock-research-app-run.test.ts test/stock-research-app-config.test.ts test/release-workflow.test.ts test/release-version.test.ts test/gitignore.test.ts test/package-lock.test.ts test/readme.test.ts test/product-boundary-docs.test.ts test/runtime-adapter-regressions.test.ts test/runtime-capabilities.test.ts test/runtime-recovery.test.ts test/tool-extension-gaps.test.ts test/checkpoint-maintenance.test.ts test/llamaindex-dependency-compat.test.ts test/skill-standard.test.ts test/routing-config.test.ts test/workspace-compat-regressions.test.ts test/upstream-compat-regressions.test.ts test/yaml-format.test.ts",
54
54
  "test:real-providers": "vitest run test/real-provider-harness.test.ts",
55
55
  "release:prepare": "npm version patch --no-git-tag-version && node ./scripts/sync-example-version.mjs",
56
56
  "release:pack": "npm pack --dry-run",