humanish 0.57.0 → 0.58.0
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 +38 -0
- package/dist/actor-registry.d.ts +6 -2
- package/dist/actor-registry.js +12 -0
- package/dist/actor-registry.js.map +1 -1
- package/dist/cua-actor-lab.d.ts +3 -0
- package/dist/cua-actor-lab.js +75 -4
- package/dist/cua-actor-lab.js.map +1 -1
- package/dist/e2b-terminal-lab.js +44 -2
- package/dist/e2b-terminal-lab.js.map +1 -1
- package/dist/lab-config.d.ts +19 -0
- package/dist/lab-config.js +17 -1
- package/dist/lab-config.js.map +1 -1
- package/dist/local-agent-appserver.d.ts +44 -0
- package/dist/local-agent-appserver.js +267 -0
- package/dist/local-agent-appserver.js.map +1 -0
- package/dist/local-agent-cli.d.ts +104 -0
- package/dist/local-agent-cli.js +337 -0
- package/dist/local-agent-cli.js.map +1 -0
- package/dist/run.js +9 -0
- package/dist/run.js.map +1 -1
- package/docs/contracts/schemas.md +1 -1
- package/docs/goals/current.md +1 -1
- package/docs/ramp/README.md +29 -1
- package/package.json +3 -2
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Date: 2026-06-02 (current-state note updated 2026-07-14)
|
|
4
4
|
|
|
5
5
|
Status: reference map for the major contracts shipped through source version
|
|
6
|
-
`0.
|
|
6
|
+
`0.58.0`; it is not an exhaustive inventory of command/result envelopes. Exported types,
|
|
7
7
|
schema constants, parsers, and validators in `src/` are authoritative. Rows
|
|
8
8
|
marked "reserved" name layering intent only — no code emits or validates them
|
|
9
9
|
yet. Do not emit a reserved schema.
|
package/docs/goals/current.md
CHANGED
|
@@ -29,7 +29,7 @@ study completed, reproduced, and produced a real accessibility finding via a
|
|
|
29
29
|
keyboard-first participant
|
|
30
30
|
([docs/goals/email-gated-signup/receipts/](email-gated-signup/receipts/)).
|
|
31
31
|
|
|
32
|
-
## Current Program Truth (source `0.
|
|
32
|
+
## Current Program Truth (source `0.58.0`)
|
|
33
33
|
|
|
34
34
|
The package source and repository implementation in this tree agree on these
|
|
35
35
|
points:
|
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.58.0` (2026-08-31). 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
|
|
@@ -191,6 +191,7 @@ Do not close a change on narrative alone.
|
|
|
191
191
|
Useful proof includes:
|
|
192
192
|
|
|
193
193
|
- `pnpm release:check`;
|
|
194
|
+
- `pnpm release:dogfood` before a tag — see below;
|
|
194
195
|
- focused unit or contract tests;
|
|
195
196
|
- a generated run bundle under ignored `.humanish/`;
|
|
196
197
|
- Observer screenshots or health output;
|
|
@@ -242,3 +243,30 @@ End substantial work with:
|
|
|
242
243
|
|
|
243
244
|
Future agents should be able to continue from the repo, not from the previous
|
|
244
245
|
chat transcript.
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
## Before you tag: send a participant to meet the build
|
|
249
|
+
|
|
250
|
+
```bash
|
|
251
|
+
pnpm release:dogfood # needs OPENAI_API_KEY + E2B_API_KEY; costs about a dollar
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
`release:check` proves the code is internally consistent. It cannot tell you whether
|
|
255
|
+
someone landing on this build can get anywhere with it, and that gap is not
|
|
256
|
+
theoretical: `0.56.0` passed every check and shipped a regression that hid a run's
|
|
257
|
+
price at exactly the moment a person was deciding whether to set keys up. A
|
|
258
|
+
synthetic participant found it hours later.
|
|
259
|
+
|
|
260
|
+
So the last gate before a tag is the product's own first-contact study, pointed at
|
|
261
|
+
the release candidate. It packs the tarball, uploads it into the sandbox, and has a
|
|
262
|
+
real autonomous agent install THAT — not `humanish@latest`, which would measure the
|
|
263
|
+
last release, the one artifact we already know about.
|
|
264
|
+
|
|
265
|
+
It prints the participant's report and fails the gate if they could not get there.
|
|
266
|
+
**Read the report even when it passes.** The verdict is a marker the participant
|
|
267
|
+
sets; the paragraph underneath it is the finding, and it has twice repeated an
|
|
268
|
+
adoption problem we already knew about in words no test could produce.
|
|
269
|
+
|
|
270
|
+
This spends money and needs keys, so it is deliberately NOT part of `release:check`
|
|
271
|
+
and never runs in CI. The lab's caps hold product spend to `$0`; what it costs is
|
|
272
|
+
the agent's own tokens and a few sandbox-minutes.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "humanish",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.58.0",
|
|
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": [
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
"humanish:lab:oss:smoke": "pnpm humanish -- lab run oss-smoke",
|
|
73
73
|
"tui:typecheck": "pnpm --filter humanish-tui typecheck",
|
|
74
74
|
"tui:smoke": "node scripts/tui-smoke.mjs",
|
|
75
|
-
"tui:test": "pnpm --filter humanish-tui test"
|
|
75
|
+
"tui:test": "pnpm --filter humanish-tui test",
|
|
76
|
+
"release:dogfood": "node scripts/release-dogfood.mjs"
|
|
76
77
|
},
|
|
77
78
|
"repository": {
|
|
78
79
|
"type": "git",
|