@xdevops/issue-auto-finish 1.0.77 → 1.0.79
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/{analyze-IZFTWCNR.js → analyze-MIYHVC2A.js} +2 -2
- package/dist/{braindump-SXLAURR4.js → braindump-JNET2EEP.js} +2 -2
- package/dist/{chunk-KWOM6URK.js → chunk-IPPYFU3R.js} +26 -4
- package/dist/chunk-IPPYFU3R.js.map +1 -0
- package/dist/{chunk-OOJNTGB5.js → chunk-PNTEPUOH.js} +2 -2
- package/dist/chunk-PNTEPUOH.js.map +1 -0
- package/dist/{chunk-NBX5LNCU.js → chunk-PRGM6ELE.js} +3 -3
- package/dist/{chunk-JL6ALTPS.js → chunk-RJUOVI3J.js} +5 -5
- package/dist/{chunk-VYNKAT4P.js → chunk-UAINLCSR.js} +2 -2
- package/dist/{chunk-MC7YPVJG.js → chunk-UWLXEZSL.js} +39 -17
- package/dist/{chunk-MC7YPVJG.js.map → chunk-UWLXEZSL.js.map} +1 -1
- package/dist/cli.js +6 -6
- package/dist/{config-LLOHFS6J.js → config-E7XKQUSH.js} +2 -2
- package/dist/deploy/DevServerManager.d.ts +2 -0
- package/dist/deploy/DevServerManager.d.ts.map +1 -1
- package/dist/index.js +5 -5
- package/dist/{init-EQWSE5FX.js → init-E4KZDZE2.js} +4 -4
- package/dist/lib.js +2 -2
- package/dist/orchestrator/steps/FailureHandler.d.ts.map +1 -1
- package/dist/{restart-24AKNL74.js → restart-P5N2UBPL.js} +4 -4
- package/dist/run.js +5 -5
- package/dist/{start-YUT6GSVS.js → start-HWPRQPH7.js} +4 -4
- package/package.json +1 -1
- package/dist/chunk-KWOM6URK.js.map +0 -1
- package/dist/chunk-OOJNTGB5.js.map +0 -1
- /package/dist/{analyze-IZFTWCNR.js.map → analyze-MIYHVC2A.js.map} +0 -0
- /package/dist/{braindump-SXLAURR4.js.map → braindump-JNET2EEP.js.map} +0 -0
- /package/dist/{chunk-NBX5LNCU.js.map → chunk-PRGM6ELE.js.map} +0 -0
- /package/dist/{chunk-JL6ALTPS.js.map → chunk-RJUOVI3J.js.map} +0 -0
- /package/dist/{chunk-VYNKAT4P.js.map → chunk-UAINLCSR.js.map} +0 -0
- /package/dist/{config-LLOHFS6J.js.map → config-E7XKQUSH.js.map} +0 -0
- /package/dist/{init-EQWSE5FX.js.map → init-E4KZDZE2.js.map} +0 -0
- /package/dist/{restart-24AKNL74.js.map → restart-P5N2UBPL.js.map} +0 -0
- /package/dist/{start-YUT6GSVS.js.map → start-HWPRQPH7.js.map} +0 -0
package/dist/cli.js
CHANGED
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
} from "./chunk-B7XUZJOK.js";
|
|
13
13
|
import {
|
|
14
14
|
resolveConfigFilePath
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-PNTEPUOH.js";
|
|
16
16
|
import {
|
|
17
17
|
resolveDisplayHost
|
|
18
18
|
} from "./chunk-AKXDQH25.js";
|
|
@@ -87,11 +87,11 @@ var defaults = getCliDefaults();
|
|
|
87
87
|
var program = new Command();
|
|
88
88
|
program.name("issue-auto-finish").description("Issue Auto-Finish: AI-powered issue resolution daemon").version(pkg.version, "-v, --version");
|
|
89
89
|
program.command("init").description("Launch the interactive web setup wizard").option("-p, --port <port>", "Port for the setup wizard", "3456").option("-c, --config <path>", "Config file path to generate").action(async (opts) => {
|
|
90
|
-
const { initCommand } = await import("./init-
|
|
90
|
+
const { initCommand } = await import("./init-E4KZDZE2.js");
|
|
91
91
|
await initCommand({ port: parseInt(opts.port, 10), config: opts.config });
|
|
92
92
|
});
|
|
93
93
|
program.command("start").description("Start the issue-auto-finish daemon service").option("-c, --config <path>", "Path to .env config file").option("-d, --daemon", "Run as a background daemon").action(async (opts) => {
|
|
94
|
-
const { startCommand } = await import("./start-
|
|
94
|
+
const { startCommand } = await import("./start-HWPRQPH7.js");
|
|
95
95
|
await startCommand({ config: opts.config, daemon: opts.daemon });
|
|
96
96
|
});
|
|
97
97
|
program.command("stop").description("Stop the running service").option("-p, --port <port>", "Web UI port", defaults.port).option("-H, --host <host>", "Service host", defaults.host).option("-f, --force", "Force kill via SIGKILL").action(async (opts) => {
|
|
@@ -103,7 +103,7 @@ program.command("stop").description("Stop the running service").option("-p, --po
|
|
|
103
103
|
});
|
|
104
104
|
});
|
|
105
105
|
program.command("restart").description("Restart the service (stop + start)").option("-c, --config <path>", "Path to .env config file").option("-p, --port <port>", "Web UI port", defaults.port).option("-H, --host <host>", "Service host", defaults.host).option("-d, --daemon", "Restart as a background daemon").action(async (opts) => {
|
|
106
|
-
const { restartCommand } = await import("./restart-
|
|
106
|
+
const { restartCommand } = await import("./restart-P5N2UBPL.js");
|
|
107
107
|
await restartCommand({
|
|
108
108
|
config: opts.config,
|
|
109
109
|
host: opts.host,
|
|
@@ -116,7 +116,7 @@ program.command("doctor").description("Check environment dependencies").action(a
|
|
|
116
116
|
await doctorCommand();
|
|
117
117
|
});
|
|
118
118
|
program.command("analyze").description("Analyze target repository and generate knowledge.json").option("-d, --dir <path>", "Project directory to analyze (defaults to PROJECT_WORK_DIR)").option("-o, --output <path>", "Output path for knowledge.json").option("-f, --force", "Overwrite existing knowledge.json").action(async (opts) => {
|
|
119
|
-
const { analyzeCommand } = await import("./analyze-
|
|
119
|
+
const { analyzeCommand } = await import("./analyze-MIYHVC2A.js");
|
|
120
120
|
await analyzeCommand({ dir: opts.dir, output: opts.output, force: opts.force });
|
|
121
121
|
});
|
|
122
122
|
program.command("status").description("Show service status").option("-p, --port <port>", "Web UI port to query", defaults.port).option("-H, --host <host>", "Service host to query", defaults.host).option("--json", "Output raw JSON").action(async (opts) => {
|
|
@@ -249,7 +249,7 @@ program.command("issues").description("List tracked issues").option("-p, --port
|
|
|
249
249
|
});
|
|
250
250
|
});
|
|
251
251
|
program.command("braindump").description("Batch braindump: split ideas into tasks and execute in parallel").option("-f, --file <path>", "Read input from file").option("-t, --target <branch>", "Target branch for merging").option("-c, --concurrency <n>", "Max concurrent tasks").option("--runner <mode>", "Default AI runner mode (claude-internal, cursor-agent, codebuddy)").option("--auto", "Skip confirmation and execute immediately").option("-p, --port <port>", "Service port (proxy to running daemon)", defaults.port).option("-H, --host <host>", "Service host", defaults.host).action(async (opts) => {
|
|
252
|
-
const { braindumpCommand } = await import("./braindump-
|
|
252
|
+
const { braindumpCommand } = await import("./braindump-JNET2EEP.js");
|
|
253
253
|
await braindumpCommand({
|
|
254
254
|
file: opts.file,
|
|
255
255
|
target: opts.target,
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
reloadConfig,
|
|
5
5
|
resetDotenvCache,
|
|
6
6
|
resolveConfigFilePath
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-PNTEPUOH.js";
|
|
8
8
|
import "./chunk-AKXDQH25.js";
|
|
9
9
|
import "./chunk-TN2SYADO.js";
|
|
10
10
|
import "./chunk-66OK4LG3.js";
|
|
@@ -16,4 +16,4 @@ export {
|
|
|
16
16
|
resetDotenvCache,
|
|
17
17
|
resolveConfigFilePath
|
|
18
18
|
};
|
|
19
|
-
//# sourceMappingURL=config-
|
|
19
|
+
//# sourceMappingURL=config-E7XKQUSH.js.map
|
|
@@ -15,7 +15,9 @@ export interface DevServerManagerOptions {
|
|
|
15
15
|
export declare class DevServerManager {
|
|
16
16
|
private servers;
|
|
17
17
|
private options;
|
|
18
|
+
private logDir;
|
|
18
19
|
constructor(options?: Partial<DevServerManagerOptions>);
|
|
20
|
+
getLogPath(issueIid: number, type: 'backend' | 'frontend'): string | null;
|
|
19
21
|
startServers(wtCtx: WorktreeContext, ports: PortPair): Promise<void>;
|
|
20
22
|
stopServers(issueIid: number): void;
|
|
21
23
|
stopAll(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DevServerManager.d.ts","sourceRoot":"","sources":["../../src/deploy/DevServerManager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DevServerManager.d.ts","sourceRoot":"","sources":["../../src/deploy/DevServerManager.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAgBjE,MAAM,WAAW,uBAAuB;IACtC,oBAAoB,EAAE,MAAM,CAAC;IAC7B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,cAAc,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC;IACjD,eAAe,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC;CACnD;AA6CD,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,OAAO,CAAgC;IAC/C,OAAO,CAAC,OAAO,CAA0B;IACzC,OAAO,CAAC,MAAM,CAAS;gBAEX,OAAO,CAAC,EAAE,OAAO,CAAC,uBAAuB,CAAC;IAQtD,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,GAAG,UAAU,GAAG,MAAM,GAAG,IAAI;IAKnE,YAAY,CAAC,KAAK,EAAE,eAAe,EAAE,KAAK,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IA2G1E,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAcnC,OAAO,IAAI,IAAI;IAMf,SAAS,CAAC,QAAQ,EAAE,MAAM,GAAG;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,KAAK,CAAC,EAAE,QAAQ,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE;IAUvF,gBAAgB,IAAI,MAAM,EAAE;CAG7B"}
|
package/dist/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
main
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-IPPYFU3R.js";
|
|
4
4
|
import "./chunk-URE5IBQE.js";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-RJUOVI3J.js";
|
|
6
6
|
import "./chunk-NZ7K73B7.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-UAINLCSR.js";
|
|
8
8
|
import "./chunk-3V3GQCB7.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-UWLXEZSL.js";
|
|
10
10
|
import "./chunk-6S7ERGQ7.js";
|
|
11
11
|
import "./chunk-ACVOOHAR.js";
|
|
12
12
|
import "./chunk-KWODU7HB.js";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-PNTEPUOH.js";
|
|
14
14
|
import "./chunk-AKXDQH25.js";
|
|
15
15
|
import "./chunk-B7TVVODN.js";
|
|
16
16
|
import "./chunk-TN2SYADO.js";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createSetupRouter
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-RJUOVI3J.js";
|
|
4
|
+
import "./chunk-UAINLCSR.js";
|
|
5
5
|
import "./chunk-3V3GQCB7.js";
|
|
6
6
|
import "./chunk-ACVOOHAR.js";
|
|
7
7
|
import "./chunk-KWODU7HB.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-PNTEPUOH.js";
|
|
9
9
|
import {
|
|
10
10
|
getLocalIP
|
|
11
11
|
} from "./chunk-AKXDQH25.js";
|
|
@@ -86,4 +86,4 @@ async function initCommand(options) {
|
|
|
86
86
|
export {
|
|
87
87
|
initCommand
|
|
88
88
|
};
|
|
89
|
-
//# sourceMappingURL=init-
|
|
89
|
+
//# sourceMappingURL=init-E4KZDZE2.js.map
|
package/dist/lib.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
registerPhase,
|
|
14
14
|
registerPipeline,
|
|
15
15
|
resolvePipelineMode
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-UWLXEZSL.js";
|
|
17
17
|
import {
|
|
18
18
|
AsyncMutex,
|
|
19
19
|
GitOperations,
|
|
@@ -24,7 +24,7 @@ import "./chunk-KWODU7HB.js";
|
|
|
24
24
|
import {
|
|
25
25
|
ConfigValidationError,
|
|
26
26
|
loadConfig
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-PNTEPUOH.js";
|
|
28
28
|
import "./chunk-AKXDQH25.js";
|
|
29
29
|
import "./chunk-B7TVVODN.js";
|
|
30
30
|
import "./chunk-TN2SYADO.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FailureHandler.d.ts","sourceRoot":"","sources":["../../../src/orchestrator/steps/FailureHandler.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAEpE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAOrE,wBAAsB,aAAa,CACjC,GAAG,EAAE,OAAO,EACZ,KAAK,EAAE,aAAa,EACpB,KAAK,EAAE,eAAe,EACtB,IAAI,EAAE,gBAAgB,GACrB,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"FailureHandler.d.ts","sourceRoot":"","sources":["../../../src/orchestrator/steps/FailureHandler.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAEpE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAOrE,wBAAsB,aAAa,CACjC,GAAG,EAAE,OAAO,EACZ,KAAK,EAAE,aAAa,EACpB,KAAK,EAAE,eAAe,EACtB,IAAI,EAAE,gBAAgB,GACrB,OAAO,CAAC,IAAI,CAAC,CAsDf"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
startCommand
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-PRGM6ELE.js";
|
|
4
4
|
import {
|
|
5
5
|
stopCommand
|
|
6
6
|
} from "./chunk-WIEUIU6L.js";
|
|
@@ -8,8 +8,8 @@ import {
|
|
|
8
8
|
dim,
|
|
9
9
|
yellow
|
|
10
10
|
} from "./chunk-B7XUZJOK.js";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-UAINLCSR.js";
|
|
12
|
+
import "./chunk-PNTEPUOH.js";
|
|
13
13
|
import "./chunk-AKXDQH25.js";
|
|
14
14
|
import "./chunk-TN2SYADO.js";
|
|
15
15
|
import "./chunk-66OK4LG3.js";
|
|
@@ -43,4 +43,4 @@ async function restartCommand(options) {
|
|
|
43
43
|
export {
|
|
44
44
|
restartCommand
|
|
45
45
|
};
|
|
46
|
-
//# sourceMappingURL=restart-
|
|
46
|
+
//# sourceMappingURL=restart-P5N2UBPL.js.map
|
package/dist/run.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
main
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-IPPYFU3R.js";
|
|
4
4
|
import "./chunk-URE5IBQE.js";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-RJUOVI3J.js";
|
|
6
6
|
import "./chunk-NZ7K73B7.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-UAINLCSR.js";
|
|
8
8
|
import "./chunk-3V3GQCB7.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-UWLXEZSL.js";
|
|
10
10
|
import "./chunk-6S7ERGQ7.js";
|
|
11
11
|
import "./chunk-ACVOOHAR.js";
|
|
12
12
|
import "./chunk-KWODU7HB.js";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-PNTEPUOH.js";
|
|
14
14
|
import "./chunk-AKXDQH25.js";
|
|
15
15
|
import "./chunk-B7TVVODN.js";
|
|
16
16
|
import "./chunk-TN2SYADO.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
startCommand
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-PRGM6ELE.js";
|
|
4
4
|
import "./chunk-B7XUZJOK.js";
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-UAINLCSR.js";
|
|
6
|
+
import "./chunk-PNTEPUOH.js";
|
|
7
7
|
import "./chunk-AKXDQH25.js";
|
|
8
8
|
import "./chunk-TN2SYADO.js";
|
|
9
9
|
import "./chunk-66OK4LG3.js";
|
|
@@ -11,4 +11,4 @@ import "./chunk-GF2RRYHB.js";
|
|
|
11
11
|
export {
|
|
12
12
|
startCommand
|
|
13
13
|
};
|
|
14
|
-
//# sourceMappingURL=start-
|
|
14
|
+
//# sourceMappingURL=start-HWPRQPH7.js.map
|