@h-sandbox/deepagents 0.1.0-rc.0 → 0.1.0-rc.1

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 +15 -20
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,28 +33,22 @@ verifies the original tests and returns a diff after confirmed cleanup.
33
33
 
34
34
  ## Availability
35
35
 
36
- **Unpublished release candidate.** Native tools and an independently verified
37
- model repair have passed; final release checks and npm publication are pending.
38
- Evaluate the adapter archive with the exact published SDK below. Node 20+ is
39
- the consumer target; repository tooling uses Node 22+.
36
+ **Developer preview on npm.** Install `@h-sandbox/deepagents@next` with the exact
37
+ SDK and framework peers below. Native tools and an independently verified model
38
+ repair have passed. Node 20+ is the consumer target; repository tooling uses
39
+ Node 22+. This optional package has its own release cycle, separate from the SDK.
40
40
 
41
41
  ```bash
42
- # In a reviewed Harakiri checkout:
43
- pnpm install --frozen-lockfile
44
- pnpm --filter @h-sandbox/deepagents build
45
- mkdir -p /tmp/harakiri-framework-candidate
46
- pnpm --filter @h-sandbox/deepagents pack --pack-destination /tmp/harakiri-framework-candidate
47
-
48
- # In your server-side application, using the resulting adapter archive path:
49
- npm install --save-exact @h-sandbox/sdk@0.5.0-rc.11 "$DEEPAGENTS_TARBALL" \
42
+ # In your server-side application:
43
+ npm install --save-exact @h-sandbox/deepagents@next @h-sandbox/sdk@0.5.0-rc.11 \
50
44
  deepagents@1.14.0 langchain@1.5.11 @langchain/core@1.2.12 \
51
45
  @langchain/langgraph@1.4.17 langsmith@0.9.0 zod@4.4.3
52
46
  ```
53
47
 
54
48
  The tested peers are **SDK 0.5.0-rc.11 and Deep Agents 1.14.0**, both exact because
55
- these preview contracts are evolving. The reviewed archive identifies this
56
- adapter candidate. Commit your application's lockfile. Other framework or SDK
57
- versions need a fresh compatibility run.
49
+ these preview contracts are evolving. `--save-exact` resolves the moving `next`
50
+ channel to a concrete version; commit your application's lockfile. Other
51
+ framework or SDK versions need a fresh compatibility run.
58
52
 
59
53
  ## Connect an Existing Sandbox
60
54
 
@@ -166,11 +160,12 @@ command exercises remote shell/file operations with scripted decisions. Real
166
160
  model acceptance and publication are separate gates. On September 24, the
167
161
  digest-pinned Qwen3 4B Instruct model completed this repair on an isolated amd64
168
162
  runner: five responses, no truncated responses or invalid tool calls, unchanged
169
- original tests, a verified patch and confirmed cleanup. The overall run then
170
- failed its final operator-key revocation check after the captured browser token
171
- expired. See [the qualification run](https://github.com/nabilblk/h-sandbox/actions/runs/36004058904).
172
- The full suite must pass before publication. This is one small repair, not a
173
- model-quality or production reliability benchmark.
163
+ original tests, a verified patch and confirmed cleanup. The
164
+ [full qualification run](https://github.com/nabilblk/h-sandbox/actions/runs/36007730164)
165
+ passed all 15 gates, including operator-key revocation. This is one small repair,
166
+ not a model-quality or production reliability benchmark. The
167
+ [delivery receipt](https://github.com/nabilblk/h-sandbox/blob/main/docs/release-notes/deepagents-0.1.0-delivery.md)
168
+ distinguishes native qualification from package publication and deployment.
174
169
 
175
170
  ## Boundaries
176
171
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h-sandbox/deepagents",
3
- "version": "0.1.0-rc.0",
3
+ "version": "0.1.0-rc.1",
4
4
  "description": "Deep Agents sandbox backend for the Harakiri control plane.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",