@linzumi/cli 1.0.185 → 1.0.187

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "1.0.185",
3
+ "version": "1.0.187",
4
4
  "description": "Linzumi CLI \u2014 point a Codex agent at the real code on your laptop, with your team watching and steering from shared threads.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -521,6 +521,7 @@ function handleMintMcpAuthFile(testCase) {
521
521
  kandanUrl: testCase.kandanUrl,
522
522
  token: testCase.token,
523
523
  linzumiAgentMcpToken: testCase.linzumiAgentMcpToken ?? undefined,
524
+ codingJobMcpToken: testCase.codingJobMcpToken ?? undefined,
524
525
  })
525
526
  )
526
527
  );
@@ -157,6 +157,7 @@ async function toolSurface(testCase) {
157
157
  defaultThreadId: testCase.options.defaultThreadId ?? undefined,
158
158
  ownerUsername: testCase.options.ownerUsername ?? undefined,
159
159
  agentSession: testCase.options.agentSession === true,
160
+ multiAgentJobs: testCase.options.multiAgentJobs === true,
160
161
  devServices:
161
162
  testCase.options.devServices === undefined || testCase.options.devServices === null
162
163
  ? undefined
@@ -48,7 +48,6 @@ import {
48
48
  parkedAsOwnTurnQueuedReason,
49
49
  parkedAsOwnTurnReasonDetail,
50
50
  processingReasonForCodexNotification,
51
- queuedBehindCompactionReason,
52
51
  queuedBehindEarlierMessagesReason,
53
52
  queuedBehindRunningTurnReason,
54
53
  queuedBehindReasonPrefix,
@@ -165,7 +164,6 @@ function handle(testCase) {
165
164
  case 'constants':
166
165
  return {
167
166
  compactingConversationHistoryReason,
168
- queuedBehindCompactionReason,
169
167
  resumingAfterStreamStallReason,
170
168
  steeredIntoRunningTurnReason,
171
169
  queuedBehindReasonPrefix,
@@ -575,6 +575,7 @@ async function handleParseWorkerArgs(testCase) {
575
575
  runtimeDefaults: options.runtimeDefaults ?? null,
576
576
  codexModelProvider: options.codexModelProvider ?? null,
577
577
  linzumiAgentMcpToken: options.linzumiAgentMcpToken ?? null,
578
+ codingJobMcpToken: options.codingJobMcpToken ?? null,
578
579
  kandanThreadId: options.threadProcess?.kandanThreadId ?? null,
579
580
  debugTrace: options.debugTrace ?? null,
580
581
  },