@rallycry/conveyor-agent 6.4.0 → 6.4.2
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-WBBX5AIX.js → chunk-XHJ2Z4AD.js} +243 -64
- package/dist/chunk-XHJ2Z4AD.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +23 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-WBBX5AIX.js.map +0 -1
package/dist/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -77,6 +77,13 @@ declare class AgentRunner {
|
|
|
77
77
|
start(): Promise<void>;
|
|
78
78
|
private tryInitWorktree;
|
|
79
79
|
private fetchAndInitContext;
|
|
80
|
+
/**
|
|
81
|
+
* For auto-mode tasks, bypass planning if the task is already past Planning
|
|
82
|
+
* or if it's still in Planning but has all required properties set (e.g. from
|
|
83
|
+
* a prior PM discovery session).
|
|
84
|
+
*/
|
|
85
|
+
private tryAutoModeBypass;
|
|
86
|
+
private transitionToBuilding;
|
|
80
87
|
private tryPostContextWorktree;
|
|
81
88
|
private startPreviewTunnel;
|
|
82
89
|
private activateWorktree;
|
|
@@ -263,6 +270,22 @@ declare class ConveyorConnection {
|
|
|
263
270
|
severity?: string;
|
|
264
271
|
pageSize?: number;
|
|
265
272
|
}): Promise<QueryGcpLogsResponse>;
|
|
273
|
+
createSuggestion(title: string, description?: string, tagNames?: string[]): Promise<{
|
|
274
|
+
id: string;
|
|
275
|
+
merged: boolean;
|
|
276
|
+
mergedIntoId?: string;
|
|
277
|
+
}>;
|
|
278
|
+
voteSuggestion(suggestionId: string, value: 1 | -1): Promise<{
|
|
279
|
+
score: number;
|
|
280
|
+
}>;
|
|
281
|
+
getSuggestions(status?: string, limit?: number): Promise<Array<{
|
|
282
|
+
id: string;
|
|
283
|
+
title: string;
|
|
284
|
+
description: string | null;
|
|
285
|
+
score: number;
|
|
286
|
+
status: string;
|
|
287
|
+
tags: string[];
|
|
288
|
+
}>>;
|
|
266
289
|
disconnect(): void;
|
|
267
290
|
}
|
|
268
291
|
|
package/dist/index.js
CHANGED