humanish 0.62.0 → 0.63.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 +106 -109
- package/dist/e2b-terminal-lab.d.ts +5 -1
- package/dist/e2b-terminal-lab.js +40 -8
- package/dist/e2b-terminal-lab.js.map +1 -1
- package/dist/program.js +4 -1
- package/dist/program.js.map +1 -1
- package/dist/run.js +5 -1
- package/dist/run.js.map +1 -1
- package/dist/telemetry.d.ts +10 -0
- package/dist/telemetry.js +44 -1
- package/dist/telemetry.js.map +1 -1
- package/dist/terminal-token-usage.d.ts +14 -0
- package/dist/terminal-token-usage.js +93 -0
- package/dist/terminal-token-usage.js.map +1 -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 +1 -1
package/dist/run.js
CHANGED
|
@@ -1744,7 +1744,11 @@ function buildSyntheticObserverFixtures(args) {
|
|
|
1744
1744
|
label: "CLI actor",
|
|
1745
1745
|
currentStep: "Command transcript contract captured",
|
|
1746
1746
|
summary: "CLI lane reserved for command-by-command persona runs with stdout/stderr and artifact links.",
|
|
1747
|
-
|
|
1747
|
+
// Every command in a shipped sample tail must be one the CLI actually accepts. This one
|
|
1748
|
+
// advertised a `--scenario` flag on `run` for months. That flag has never existed, and a
|
|
1749
|
+
// computer-use participant hit it in the first Observer it ever saw (#516).
|
|
1750
|
+
// tests/shipped-command-strings.test.ts now checks this against the real command table.
|
|
1751
|
+
tail: "$ humanish doctor\nok target cwd\nok humanish source\n$ humanish run first-run\ncontract proof emitted",
|
|
1748
1752
|
viewport: undefined
|
|
1749
1753
|
},
|
|
1750
1754
|
{
|