humanish 0.42.0 → 0.44.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/cli.js +4 -0
- package/dist/cli.js.map +1 -1
- package/dist/observer-app.html +48 -0
- package/dist/observer.d.ts +10 -0
- package/dist/observer.js +156 -25
- package/dist/observer.js.map +1 -1
- package/dist/run.d.ts +5 -0
- package/dist/run.js.map +1 -1
- package/docs/architecture/observer.md +17 -0
- package/docs/contracts/schemas.md +1 -1
- package/docs/goals/current.md +1 -1
- package/docs/ramp/README.md +1 -1
- package/package.json +2 -2
- package/dist/observer-assets.d.ts +0 -2
- package/dist/observer-assets.js +0 -2952
- package/dist/observer-assets.js.map +0 -1
|
@@ -159,3 +159,20 @@ Intentionally still adapter work:
|
|
|
159
159
|
- Codex TUI live follow after workspace trust bootstrap;
|
|
160
160
|
- richer screenshot/trace galleries across multi-step product journeys;
|
|
161
161
|
- reviewer acceptance gates over real product behavior.
|
|
162
|
+
|
|
163
|
+
## The rendering layer (#426, cut over 2026-08-16)
|
|
164
|
+
|
|
165
|
+
The renderer is the `observer/` workspace: a Vite single-file build on the
|
|
166
|
+
`@humanish` registry tokens, frozen against `humanish.observer-data.v1`
|
|
167
|
+
(`tests/observer-data-contract.test.ts`). The root build copies the workspace
|
|
168
|
+
artifact to `dist/observer-app.html`; in a repo checkout a missing or stale
|
|
169
|
+
artifact auto-builds, and an unconditional preflight at CLI startup makes a
|
|
170
|
+
broken artifact cost seconds, never a completed session. `renderObserverHtml`
|
|
171
|
+
— the one choke point every surface (observe, watch, serve, labs) funnels
|
|
172
|
+
through — injects the run's snapshot into the artifact
|
|
173
|
+
(`tests/observer-artifact.test.ts` pins the path, cold, so CI exercises the
|
|
174
|
+
auto-build every run). The legacy string-concat renderer
|
|
175
|
+
(`src/observer-assets.ts`) was deleted at cutover; there is no flag and no
|
|
176
|
+
fallback — rollback is a version pin. The workspace's own tests pin the
|
|
177
|
+
durability constraints (self-contained single file, fonts inlined, no network
|
|
178
|
+
references).
|
|
@@ -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.44.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.44.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.44.0` (2026-08-16). 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "humanish",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.44.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": [
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
|
-
"build": "tsc -p tsconfig.build.json && node --eval \"import('node:fs').then(({ chmodSync }) => chmodSync('dist/cli.js', 0o755))\"",
|
|
52
|
+
"build": "tsc -p tsconfig.build.json && pnpm --filter humanish-observer build && node --eval \"import('node:fs').then(({ chmodSync, copyFileSync }) => { chmodSync('dist/cli.js', 0o755); copyFileSync('observer/dist/index.html', 'dist/observer-app.html'); })\"",
|
|
53
53
|
"check": "pnpm typecheck && pnpm test && pnpm build",
|
|
54
54
|
"humanish": "tsx src/cli.ts",
|
|
55
55
|
"pack:dry-run": "npm pack --dry-run",
|