@parall/parall 1.61.0 → 1.62.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 +5 -2
- package/dist/index.bundle.mjs +3313 -1729
- package/package.json +3 -3
- package/skills/parall-clip-authoring/SKILL.md +9 -6
- package/skills/parall-clips/SKILL.md +19 -16
- package/skills/parall-platform/SKILL.md +5 -5
- package/skills/{parall-external-triggers → parall-triggers}/SKILL.md +27 -27
- package/src/gateway.ts +5 -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,
|
|
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,CA0MtE,CAAC"}
|
package/dist/gateway.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ParallAgentGateway, capabilityBinDir, dispatchLaneContextDir, parseShutdownDeadlineMs, parseForkDeadlineMs, parseDispatchDeadlineMs, identityFromMe, initAgentTelemetry, resolveServiceVersion, createOtelLogger, } from '@parall/agent-core';
|
|
1
|
+
import { ParallAgentGateway, capabilityBinDir, dispatchLaneContextDir, parseShutdownDeadlineMs, parseForkDeadlineMs, parseDispatchDeadlineMs, identityFromMe, initAgentTelemetry, resolveServiceVersion, createOtelLogger, traceContextHeaders, } from '@parall/agent-core';
|
|
2
2
|
import { appendPreparedLocalAttachmentRefs, ensureLocalAttachmentGitExclude, pinLocalAttachmentPaths, } from '@parall/agent-core/internal/attachment-input';
|
|
3
3
|
import { ApiError, ParallClient, ParallWs } from '@parall/sdk';
|
|
4
4
|
import * as crypto from 'node:crypto';
|
|
@@ -357,15 +357,17 @@ export const parallGateway = {
|
|
|
357
357
|
baseUrl: config.parall_url,
|
|
358
358
|
token: config.api_key,
|
|
359
359
|
swimlaneName: process.env.PRLL_SWIMLANE_NAME,
|
|
360
|
+
getRequestHeaders: traceContextHeaders,
|
|
360
361
|
});
|
|
361
362
|
const me = await getAgentMeWithLegacyFallback(client, config.org_id);
|
|
362
363
|
const agentUserId = me.id;
|
|
363
364
|
setAgentIdentity(identityFromMe(me));
|
|
364
365
|
log?.info(`parall[${ctx.accountId}]: authenticated as ${me.display_name} (${agentUserId})`);
|
|
366
|
+
const serviceVersion = resolveServiceVersion(import.meta.url);
|
|
365
367
|
const telemetry = await initAgentTelemetry('parall-openclaw-agent', 'openclaw', {
|
|
366
368
|
apiUrl: process.env.PRLL_API_URL,
|
|
367
369
|
apiKey: process.env.PRLL_API_KEY,
|
|
368
|
-
serviceVersion
|
|
370
|
+
serviceVersion,
|
|
369
371
|
});
|
|
370
372
|
const otelLog = createOtelLogger('agent', 'openclaw-agent');
|
|
371
373
|
try {
|
|
@@ -440,6 +442,7 @@ export const parallGateway = {
|
|
|
440
442
|
},
|
|
441
443
|
agentUserId,
|
|
442
444
|
runtimeType: 'openclaw',
|
|
445
|
+
runtimeVersion: serviceVersion,
|
|
443
446
|
runtimeKey: orchestratorKey,
|
|
444
447
|
runtimeRef: { hostname: os.hostname(), pid: process.pid },
|
|
445
448
|
dispatchAdapter,
|