humanish 0.67.0 → 0.69.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 +8 -0
- package/dist/actor-contract.d.ts +15 -0
- package/dist/actor-contract.js.map +1 -1
- package/dist/computer-use.d.ts +9 -1
- package/dist/computer-use.js +31 -1
- package/dist/computer-use.js.map +1 -1
- package/dist/cua-actor-lab.d.ts +9 -0
- package/dist/cua-actor-lab.js +32 -2
- package/dist/cua-actor-lab.js.map +1 -1
- package/dist/e2b-terminal-lab.js +4 -0
- package/dist/e2b-terminal-lab.js.map +1 -1
- package/dist/export.d.ts +42 -0
- package/dist/export.js +169 -0
- package/dist/export.js.map +1 -0
- package/dist/local-agent-appserver.js +5 -3
- package/dist/local-agent-appserver.js.map +1 -1
- package/dist/local-agent-claude-session.js +3 -1
- package/dist/local-agent-claude-session.js.map +1 -1
- package/dist/local-agent-cli.d.ts +3 -1
- package/dist/local-agent-cli.js +13 -3
- package/dist/local-agent-cli.js.map +1 -1
- package/dist/program.js +24 -0
- package/dist/program.js.map +1 -1
- package/dist/run.js +4 -1
- 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 +1 -1
- package/package.json +1 -1
package/dist/run.js
CHANGED
|
@@ -146,8 +146,11 @@ export function formatParticipantOutcomes(outcomes) {
|
|
|
146
146
|
parts.push(`${outcomes.abandoned} gave up`);
|
|
147
147
|
if (outcomes.ranOut > 0)
|
|
148
148
|
parts.push(`${outcomes.ranOut} ran out of session`);
|
|
149
|
+
// "blocked" covers an approval the run could not give AND a blocker the participant reported in
|
|
150
|
+
// its own words (#476); the old "on an approval" read wrongly on a keyboard-first participant who
|
|
151
|
+
// wrote "Blocked before diagram creation" about a mouse-only modal.
|
|
149
152
|
if (outcomes.blocked > 0)
|
|
150
|
-
parts.push(`${outcomes.blocked} blocked
|
|
153
|
+
parts.push(`${outcomes.blocked} blocked`);
|
|
151
154
|
if (outcomes.harnessFailed > 0)
|
|
152
155
|
parts.push(`${outcomes.harnessFailed} lost to a harness failure`);
|
|
153
156
|
// Last, and separate, because it cuts across the outcomes rather than partitioning them: someone
|