humanish 0.20.4 → 0.21.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/comms-email-catch.d.ts +53 -0
- package/dist/comms-email-catch.js +209 -0
- package/dist/comms-email-catch.js.map +1 -0
- package/dist/comms-faux-inbox.d.ts +37 -0
- package/dist/comms-faux-inbox.js +157 -0
- package/dist/comms-faux-inbox.js.map +1 -0
- package/dist/comms-types.d.ts +63 -0
- package/dist/comms-types.js +10 -0
- package/dist/comms-types.js.map +1 -0
- package/dist/concurrent-shared-world-lab.js +9 -2
- package/dist/concurrent-shared-world-lab.js.map +1 -1
- package/dist/cua-actor-lab.d.ts +14 -0
- package/dist/cua-actor-lab.js +24 -2
- package/dist/cua-actor-lab.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/init-templates.js +7 -4
- package/dist/init-templates.js.map +1 -1
- package/dist/run.d.ts +15 -0
- package/dist/run.js +9 -0
- package/dist/run.js.map +1 -1
- package/docs/architecture/external-public-shared-world.md +8 -5
- package/docs/contracts/run-bundle.md +7 -1
- package/docs/contracts/schemas.md +1 -1
- package/docs/goals/current.md +1 -1
- package/docs/product/cineguessr-3player-external-public.md +14 -5
- package/docs/ramp/README.md +1 -1
- package/package.json +1 -1
|
@@ -102,11 +102,14 @@ e2b-URL / host-digest redaction discipline.
|
|
|
102
102
|
## Mobile fidelity caveat
|
|
103
103
|
|
|
104
104
|
The example roster runs mobile-LAYOUT seats (`device: mobile` 414×896, `small-mobile` 360×740). On the
|
|
105
|
-
E2B-desktop route
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
105
|
+
E2B-desktop route the rendered WIDTH is floored to `MIN_DESKTOP_RENDER_WIDTH` (500) because Chrome
|
|
106
|
+
refuses a narrower window and a narrower X screen clipped the page (0.20.3, #304), so both presets
|
|
107
|
+
render at 500 wide and are identical in layout; only HEIGHT renders as declared.
|
|
108
|
+
`desktopGeometry.screen.verified` compares the floored number with itself, so it does not attest the
|
|
109
|
+
preset width. There is NO touch input, and `isMobile`/DPR are prompt-signal + metadata (DPR renders
|
|
110
|
+
only via the CDP geometry path). "3 mobile personas" = 3 mobile-LAYOUT desktop-Chromium seats, not
|
|
111
|
+
touch devices. Do not over-read the results as true mobile-device coverage. True sub-500 rendering is
|
|
112
|
+
the #221 upgrade.
|
|
110
113
|
|
|
111
114
|
## Watch-from-phone
|
|
112
115
|
|
|
@@ -81,11 +81,17 @@ responses, but durable run bundles use the public-safe `[target-cwd]` marker.
|
|
|
81
81
|
|
|
82
82
|
## Hosted Desktop Geometry
|
|
83
83
|
|
|
84
|
-
Hosted browser streams may carry additive `desktopGeometry` evidence. Its fields keep
|
|
84
|
+
Hosted browser streams may carry additive `desktopGeometry` evidence. Its fields keep five
|
|
85
85
|
different facts separate:
|
|
86
86
|
|
|
87
87
|
- `screen.requested`: the E2B/X screen size requested by config;
|
|
88
88
|
- `screen.verified`: the screen size measured in-sandbox with `xdpyinfo`;
|
|
89
|
+
- `screen.declared`: the device preset the lab ASKED for, present only when it differs from
|
|
90
|
+
`screen.requested` because the rendered width was floored to Chrome's ~500px window minimum.
|
|
91
|
+
`verified` compares the floored number with itself and reports a match, so a matching
|
|
92
|
+
`verified` block is NOT evidence that the preset width rendered. When `declared` is present,
|
|
93
|
+
it did not: a `mobile` (414) and a `small-mobile` (360) seat both render at 500 and are
|
|
94
|
+
indistinguishable by rendered width;
|
|
89
95
|
- `browserWindow`: outer browser bounds measured after the window-fill attempt;
|
|
90
96
|
- `viewport`: the page's CSS layout viewport and device-pixel ratio measured through CDP on
|
|
91
97
|
Chromium-family hosted browsers.
|
|
@@ -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.21.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
|
@@ -16,7 +16,7 @@ Humanish should be the open-source CLI that lets a maintainer ask:
|
|
|
16
16
|
The answer should be observable, verifiable, public-safe, and easy to turn into
|
|
17
17
|
actionable feedback.
|
|
18
18
|
|
|
19
|
-
## Current Program Truth (source `0.
|
|
19
|
+
## Current Program Truth (source `0.21.0`)
|
|
20
20
|
|
|
21
21
|
The package source and repository implementation in this tree agree on these
|
|
22
22
|
points:
|
|
@@ -18,11 +18,20 @@ a public deployment YOU own/operate.
|
|
|
18
18
|
## Mobile fidelity caveat (read before over-reading the results)
|
|
19
19
|
|
|
20
20
|
The seats are `device: mobile` (414×896) and `device: small-mobile` (360×740). On the E2B-desktop
|
|
21
|
-
route
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
route the rendered WIDTH is floored to `MIN_DESKTOP_RENDER_WIDTH` (500): Chrome refuses a window
|
|
22
|
+
narrower than ~500 CSS px, and a narrower X screen let the window overflow and clip the page
|
|
23
|
+
(0.20.3, #304). So both presets render at **500 wide**, `mobile` and `small-mobile` are identical in
|
|
24
|
+
layout on this route, and this example does NOT currently exercise two different mobile widths. Only
|
|
25
|
+
the HEIGHT renders as declared (896 and 740).
|
|
26
|
+
|
|
27
|
+
Note that `desktopGeometry.screen.verified` checks the FLOORED number against itself, so a matching
|
|
28
|
+
`verified` block is not evidence that the preset width rendered. Read `requested` against the preset
|
|
29
|
+
in `device-presets.ts` if you need to know.
|
|
30
|
+
|
|
31
|
+
There is NO touch input, and isMobile/DPR are prompt-signal + metadata (DPR renders only via the CDP
|
|
32
|
+
geometry path). So "3 mobile personas" means 3 mobile-LAYOUT desktop-Chromium seats, NOT touch
|
|
33
|
+
devices. If a flow needs true touch/tap semantics, these seats will not exercise it. True sub-500
|
|
34
|
+
CSS-viewport rendering is the #221 CDP-device-emulation upgrade.
|
|
26
35
|
|
|
27
36
|
## Run it
|
|
28
37
|
|
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.21.0` (2026-08-04). 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