humanish 0.82.1 → 0.83.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.
- package/dist/actor-contract.d.ts +1 -0
- package/dist/computer-use-actor.js +3 -0
- package/dist/computer-use-actor.js.map +1 -1
- package/dist/computer-use.d.ts +1 -0
- package/dist/computer-use.js +9 -4
- package/dist/computer-use.js.map +1 -1
- package/dist/concurrent-shared-world-lab.js +6 -3
- package/dist/concurrent-shared-world-lab.js.map +1 -1
- package/dist/cua-actor-lab.d.ts +4 -0
- package/dist/cua-actor-lab.js +87 -20
- package/dist/cua-actor-lab.js.map +1 -1
- package/dist/e2b-terminal-lab.d.ts +2 -2
- package/dist/e2b-terminal-lab.js +19 -5
- package/dist/e2b-terminal-lab.js.map +1 -1
- package/dist/lab-config.d.ts +6 -0
- package/dist/lab-config.js +39 -0
- package/dist/lab-config.js.map +1 -1
- package/dist/openai-responses-cu.d.ts +3 -0
- package/dist/openai-responses-cu.js +9 -2
- package/dist/openai-responses-cu.js.map +1 -1
- package/dist/output-token-limit.d.ts +2 -0
- package/dist/output-token-limit.js +5 -0
- package/dist/output-token-limit.js.map +1 -0
- package/dist/run.d.ts +2 -1
- package/dist/run.js +20 -3
- package/dist/run.js.map +1 -1
- package/dist/shared-world-lab.d.ts +3 -0
- package/dist/shared-world-lab.js +15 -4
- package/dist/shared-world-lab.js.map +1 -1
- package/docs/architecture/terminal-product-lane.md +8 -0
- package/docs/contracts/run-bundle.md +10 -1
- package/docs/contracts/schemas.md +41 -20
- package/docs/goals/current.md +68 -23
- package/docs/ramp/README.md +4 -3
- package/package.json +3 -2
package/docs/ramp/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Status: public-safe contributor and agent ramp.
|
|
4
4
|
|
|
5
|
-
Package/source version in this tree: `0.
|
|
5
|
+
Package/source version in this tree: `0.83.1` (2026-09-06). The Observer is phone-usable as a stated requirement (observer/AGENTS.md); interactive primitives start from Base UI. The Observer renderer is the observer/ workspace artifact only; the legacy string-concat renderer was deleted at cutover (#426), and rollback is a version pin to 0.42.0. The containment boundary introduced in
|
|
6
6
|
`0.15.1` remains in force: managed run and output paths bind to validated
|
|
7
7
|
physical filesystem identities, and stored provider IDs are evidence, not
|
|
8
8
|
cleanup authority. The bundled OSS meta-lab is dry-run only until
|
|
@@ -77,9 +77,10 @@ Implemented:
|
|
|
77
77
|
drives a lab-owner loopback app in a hosted desktop, and `subject.source:
|
|
78
78
|
clone` + `serve` clones, installs, and serves a real app in-sandbox from
|
|
79
79
|
config before the actor drives it (`src/cua-actor-lab.ts`);
|
|
80
|
-
-
|
|
80
|
+
- seven declared subject sources: `this-repo` (dry-run-only), `clone`, `app-url`,
|
|
81
81
|
`local-app` (library-assisted, in-process, no desktop), `terminal-product`,
|
|
82
|
-
|
|
82
|
+
`desktop-cli` (computer-use participant at a terminal), and `local-tree`;
|
|
83
|
+
each route fails closed on unsupported combinations;
|
|
83
84
|
- bounded per-lane-world fan-out (`actors[0].count`, `lanes[]`, or `roster[]`),
|
|
84
85
|
backed by deterministic and kept live proof;
|
|
85
86
|
- sequential/concurrent single-origin shared-world execution: sequential has
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "humanish",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.83.1",
|
|
4
4
|
"description": "Open-source-safe CLI for persona simulation, observer review, and public-safe feedback drafts.",
|
|
5
5
|
"author": "Daniel G Wilson <daniel@danielgwilson.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsc -p tsconfig.build.json && pnpm --filter humanish-observer build && pnpm --filter humanish-tui build && node scripts/finish-build.mjs",
|
|
53
|
-
"check": "pnpm typecheck && pnpm test && pnpm tui:test && pnpm build && pnpm tui:smoke",
|
|
53
|
+
"check": "pnpm typecheck && pnpm test && pnpm tui:test && pnpm build && pnpm cli:startup:test && pnpm tui:smoke",
|
|
54
|
+
"cli:startup:test": "node scripts/terminal-startup-exit-proof.mjs",
|
|
54
55
|
"humanish": "tsx src/cli.ts",
|
|
55
56
|
"pack:dry-run": "npm pack --dry-run",
|
|
56
57
|
"prepack": "pnpm build",
|