humanish 0.56.0 → 0.57.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/dist/agent-session.d.ts +11 -0
- package/dist/agent-session.js +43 -0
- package/dist/agent-session.js.map +1 -0
- package/dist/cua-actor-lab.d.ts +10 -0
- package/dist/cua-actor-lab.js +145 -21
- package/dist/cua-actor-lab.js.map +1 -1
- package/dist/e2b-terminal-lab.js +36 -1
- package/dist/e2b-terminal-lab.js.map +1 -1
- package/dist/lab-config.d.ts +23 -1
- package/dist/lab-config.js +47 -8
- package/dist/lab-config.js.map +1 -1
- package/dist/lab-engine.js +6 -0
- package/dist/lab-engine.js.map +1 -1
- package/dist/program.d.ts +2 -0
- package/dist/program.js +36 -3
- package/dist/program.js.map +1 -1
- package/dist/run.d.ts +9 -0
- package/dist/run.js +7 -7
- package/dist/run.js.map +1 -1
- package/dist/terminal-encoding.d.ts +17 -0
- package/dist/terminal-encoding.js +80 -0
- package/dist/terminal-encoding.js.map +1 -0
- package/dist/tui-app.js +80 -80
- package/docs/contracts/schemas.md +9 -2
- package/docs/goals/current.md +1 -1
- package/docs/ramp/README.md +1 -1
- package/package.json +1 -1
|
@@ -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.57.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.
|
|
@@ -955,7 +955,14 @@ only because it is asked for the one run being watched.
|
|
|
955
955
|
|
|
956
956
|
`humanish.tui-result.v1` — what `humanish tui` emits when it refuses:
|
|
957
957
|
`{ schema, ok: false, error: { code, message } }` with `HUMANISH_TUI_REQUIRES_TTY`,
|
|
958
|
-
`HUMANISH_TUI_UNSUPPORTED_NODE`, or
|
|
958
|
+
`HUMANISH_TUI_AGENT_SESSION`, `HUMANISH_TUI_UNSUPPORTED_NODE`, or
|
|
959
|
+
`HUMANISH_TUI_BUNDLE_MISSING`. `HUMANISH_TUI_AGENT_SESSION` is the one a TTY
|
|
960
|
+
check could not catch: `codex exec` allocates a PTY for the commands it runs, so
|
|
961
|
+
both streams are terminals and the surface used to open — a study watched an
|
|
962
|
+
agent navigate the labs list and start a run it did not mean to start
|
|
963
|
+
(labs/handed-a-human-surface.yaml). The refusal names the environment variable
|
|
964
|
+
that identified the runner, so the reader can check the claim, and `--force` is
|
|
965
|
+
the escape for a person who really is at that keyboard. Every other
|
|
959
966
|
command is built for an agent to drive; this one takes the screen and waits for
|
|
960
967
|
a person, so a non-interactive stdin or stdout fails closed naming the commands
|
|
961
968
|
that DO answer the question rather than rendering escape codes into a pipe.
|
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.57.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.57.0` (2026-08-22). 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
|
package/package.json
CHANGED