@parall/parall 1.63.0 → 1.64.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/gateway.d.ts.map +1 -1
- package/dist/gateway.js +6 -1
- package/dist/index.bundle.mjs +734 -284
- package/package.json +3 -3
- package/skills/parall-browser/SKILL.md +53 -0
- package/skills/parall-clips/SKILL.md +3 -6
- package/src/gateway.ts +6 -1
package/dist/gateway.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gateway.d.ts","sourceRoot":"","sources":["../src/gateway.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAE9D,uGAAuG;AACvG,KAAK,qBAAqB,CAAC,CAAC,GAAG,OAAO,IAAI,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;AACnF,OAAO,EAYL,KAAK,eAAe,EAIrB,MAAM,oBAAoB,CAAC;AAqB5B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AA8LxD,wBAAgB,6BAA6B,CAAC,IAAI,EAAE;IAClD,IAAI,EAAE,aAAa,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;CACtB,GAAG,eAAe,CAwLlB;AAED,eAAO,MAAM,aAAa,EAAE,qBAAqB,CAAC,qBAAqB,
|
|
1
|
+
{"version":3,"file":"gateway.d.ts","sourceRoot":"","sources":["../src/gateway.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAE9D,uGAAuG;AACvG,KAAK,qBAAqB,CAAC,CAAC,GAAG,OAAO,IAAI,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;AACnF,OAAO,EAYL,KAAK,eAAe,EAIrB,MAAM,oBAAoB,CAAC;AAqB5B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AA8LxD,wBAAgB,6BAA6B,CAAC,IAAI,EAAE;IAClD,IAAI,EAAE,aAAa,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;CACtB,GAAG,eAAe,CAwLlB;AAED,eAAO,MAAM,aAAa,EAAE,qBAAqB,CAAC,qBAAqB,CA+MtE,CAAC"}
|
package/dist/gateway.js
CHANGED
|
@@ -446,13 +446,18 @@ export const parallGateway = {
|
|
|
446
446
|
runtimeKey: orchestratorKey,
|
|
447
447
|
runtimeRef: { hostname: os.hostname(), pid: process.pid },
|
|
448
448
|
dispatchAdapter,
|
|
449
|
+
// One OpenClaw host embeds many account gateways in one process: a
|
|
450
|
+
// rejected credential stops THIS account's gateway only — it must
|
|
451
|
+
// not set the host-wide process exit code or claim the process is
|
|
452
|
+
// exiting.
|
|
453
|
+
authInvalidExitCode: null,
|
|
449
454
|
// Opts openclaw into the dispatch ledger (claim/fold/complete +
|
|
450
455
|
// idempotent reply effects) — the same shared-gateway machinery
|
|
451
456
|
// claude/codex ride; openclaw stays buffer-only (no mid-turn steer),
|
|
452
457
|
// which the ledger does not require. Replies already flow through
|
|
453
458
|
// @parall/cli, which reads PRLL_CONTEXT_DIR (injected in hooks.ts)
|
|
454
459
|
// to bind dispatch_lane + reply effect keys.
|
|
455
|
-
// Design: docs/engineering-design/dispatch-
|
|
460
|
+
// Design: docs/engineering-design/agent-dispatch-idempotency-design.md#effects.
|
|
456
461
|
dispatchContextDir: dispatchLaneContextDir(stateDir),
|
|
457
462
|
// Per-session context file (PRLL_CONTEXT_FILE contract) — the CLI's
|
|
458
463
|
// TYPED dispatch binding (parall tasks update → task_update effect)
|