@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/{chunk-WPQXAPVA.js → chunk-LBEAK2VJ.js} +169 -55
- package/dist/chunk-LBEAK2VJ.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-WPQXAPVA.js.map +0 -1
package/dist/cli.js
CHANGED
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rallycry/conveyor-agent",
|
|
3
|
-
"version": "5.
|
|
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.
|
|
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"
|