@rallycry/conveyor-agent 6.4.1 → 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-VDLO4YL6.js → chunk-XHJ2Z4AD.js} +119 -56
- package/dist/chunk-XHJ2Z4AD.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-VDLO4YL6.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;
|
package/dist/index.js
CHANGED