@rallycry/conveyor-agent 5.10.2 → 5.11.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/cli.js CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  ProjectRunner,
5
5
  createServiceLogger,
6
6
  errorMeta
7
- } from "./chunk-WPQXAPVA.js";
7
+ } from "./chunk-LBEAK2VJ.js";
8
8
 
9
9
  // src/cli.ts
10
10
  import { readFileSync } from "fs";
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { SDKUserMessage } from '@anthropic-ai/claude-agent-sdk';
2
2
  import * as _project_shared from '@project/shared';
3
- import { AgentRunnerStatus, MultimodalBlock, ProjectEnvironmentStatus, ChatMessageResponse, TaskFileResponse, TaskContext, AgentEvent, AgentQuestion, IncomingMessagePayload, SetModePayload, AgentMode, SubtaskCreatePayload, SubtaskUpdateFields, SubtaskResponse, StartChildCloudBuildResponse, TaskLookupResponse, UpdateTaskPropertiesPayload, IconListItem, GenerateIconResponse, TaskPropertiesResponse, TriggerIdentificationResponse, ModeTransitionPayload, IncidentDTO, TaskIncidentDTO, TagAuditRunnerRequest, TagAuditRunnerResponse } from '@project/shared';
3
+ import { AgentRunnerStatus, MultimodalBlock, ProjectEnvironmentStatus, ChatMessageResponse, TaskFileResponse, TaskContext, AgentEvent, AgentQuestion, IncomingMessagePayload, SetModePayload, AgentMode, SubtaskCreatePayload, SubtaskUpdateFields, SubtaskResponse, StartChildCloudBuildResponse, TaskLookupResponse, UpdateTaskPropertiesPayload, IconListItem, GenerateIconResponse, TaskPropertiesResponse, TriggerIdentificationResponse, ModeTransitionPayload, IncidentDTO, TaskIncidentDTO, TagAuditRunnerRequest, TagAuditRunnerResponse, TagAuditProgressActivity } from '@project/shared';
4
4
  export { AgentEvent, ChatMessage, TaskContext, TaskFileContext } from '@project/shared';
5
5
  import { ChildProcess } from 'node:child_process';
6
6
 
@@ -144,6 +144,7 @@ declare class ConveyorConnection {
144
144
  title: string;
145
145
  body: string;
146
146
  baseBranch?: string;
147
+ branch?: string;
147
148
  }): Promise<{
148
149
  url: string;
149
150
  number: number;
@@ -288,6 +289,10 @@ declare class ProjectConnection {
288
289
  }, cb: SwitchBranchCallback) => void) | null;
289
290
  onSyncEnvironment: ((cb: SyncEnvironmentCallback) => void) | null;
290
291
  onGetEnvStatus: ((cb: GetEnvStatusCallback) => void) | null;
292
+ onRestartStartCommand: ((cb: (res: {
293
+ ok: boolean;
294
+ error?: string;
295
+ }) => void) => void) | null;
291
296
  constructor(config: ProjectConnectionConfig);
292
297
  connect(): Promise<void>;
293
298
  onTaskAssignment(callback: (assignment: TaskAssignment) => void): void;
@@ -298,6 +303,10 @@ declare class ProjectConnection {
298
303
  onChatMessage(callback: (msg: IncomingChatMessage) => void): void;
299
304
  onAuditRequest(callback: (request: TagAuditRunnerRequest) => void): void;
300
305
  emitAuditResult(data: TagAuditRunnerResponse): void;
306
+ emitAuditProgress(data: {
307
+ requestId: string;
308
+ activity: TagAuditProgressActivity;
309
+ }): void;
301
310
  sendHeartbeat(): void;
302
311
  emitTaskStarted(taskId: string): void;
303
312
  emitTaskStopped(taskId: string, reason: string): void;
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  removeWorktree,
10
10
  runSetupCommand,
11
11
  runStartCommand
12
- } from "./chunk-WPQXAPVA.js";
12
+ } from "./chunk-LBEAK2VJ.js";
13
13
  export {
14
14
  AgentRunner,
15
15
  ConveyorConnection,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rallycry/conveyor-agent",
3
- "version": "5.10.2",
3
+ "version": "5.11.0",
4
4
  "description": "Conveyor cloud build agent runner - executes task plans inside GitHub Codespaces",
5
5
  "keywords": [
6
6
  "agent",
@@ -33,7 +33,7 @@
33
33
  "typecheck": "tsgo --noEmit"
34
34
  },
35
35
  "dependencies": {
36
- "@anthropic-ai/claude-agent-sdk": "^0.2.71",
36
+ "@anthropic-ai/claude-agent-sdk": "^0.2.89",
37
37
  "socket.io-client": "^4.7.4",
38
38
  "winston": "^3.11.0",
39
39
  "zod": "^3.25.76"