@rulemetric/cli 0.2.4 → 0.4.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-JM6BQSRE.js → chunk-2WWGG2A5.js} +11 -11
- package/dist/{chunk-4A7FKR2O.js → chunk-42A3HEEH.js} +50 -3
- package/dist/chunk-42A3HEEH.js.map +7 -0
- package/dist/{chunk-PDURR7O3.js → chunk-46LMTDRE.js} +2 -2
- package/dist/{chunk-ISDA2QFX.js → chunk-4QGATD5Y.js} +209 -2
- package/dist/chunk-4QGATD5Y.js.map +7 -0
- package/dist/{chunk-L674RNKQ.js → chunk-ANOWI23I.js} +51 -1
- package/dist/chunk-ANOWI23I.js.map +7 -0
- package/dist/{chunk-3LHLSY7V.js → chunk-C7SRRSPA.js} +6 -6
- package/dist/{chunk-B3HILODD.js → chunk-CLC7ZFH2.js} +6 -6
- package/dist/{chunk-PIOVE3TN.js → chunk-FUS5C4SB.js} +2 -2
- package/dist/{chunk-PHLMIZKM.js → chunk-JNFIYBFL.js} +30 -5
- package/dist/chunk-JNFIYBFL.js.map +7 -0
- package/dist/{chunk-RDIH4AG2.js → chunk-MTLAIJED.js} +3 -3
- package/dist/{chunk-NIDLJO6F.js → chunk-QSN77T7C.js} +23 -1
- package/dist/{chunk-NIDLJO6F.js.map → chunk-QSN77T7C.js.map} +2 -2
- package/dist/chunk-SO3T35U7.js +80 -0
- package/dist/chunk-SO3T35U7.js.map +7 -0
- package/dist/{chunk-ELL34R3K.js → chunk-XMWHTOCC.js} +3 -3
- package/dist/{chunk-3IU7GFXS.js → chunk-YEBBX4HQ.js} +2 -2
- package/dist/commands/evals/agent.js +12 -14
- package/dist/commands/evals/agent.js.map +2 -2
- package/dist/commands/hooks/emit-instructions.js +25 -0
- package/dist/commands/hooks/emit-instructions.js.map +7 -0
- package/dist/commands/hooks/install.js +18 -24
- package/dist/commands/hooks/install.js.map +2 -2
- package/dist/commands/hooks/uninstall.js +4 -4
- package/dist/commands/hooks/uninstall.js.map +2 -2
- package/dist/commands/research/backfill.js +3 -3
- package/dist/commands/research/tail-transcript.js +3 -3
- package/dist/commands/service/install.js +186 -11
- package/dist/commands/service/install.js.map +2 -2
- package/dist/commands/service/uninstall.js +33 -2
- package/dist/commands/service/uninstall.js.map +2 -2
- package/dist/dashboard/Dashboard.js +12 -12
- package/dist/dashboard/data.js +2 -2
- package/dist/{dist-I6BCOLNG.js → dist-NEECHU47.js} +6 -2
- package/dist/lib/agent-loop.js +12 -12
- package/dist/lib/handlers/process-announcement.js +3 -3
- package/dist/lib/handlers/process-changelog.js +3 -3
- package/dist/lib/handlers/process-launch.js +3 -3
- package/dist/lib/handlers/process-run-cleanup.js +4 -4
- package/dist/lib/handlers/process-session-goal.js +2 -2
- package/dist/lib/hooks-config.js +7 -1
- package/dist/lib/instruction-snapshot.js +8 -0
- package/dist/lib/instruction-snapshot.js.map +7 -0
- package/dist/lib/manual-tasks.js +3 -3
- package/dist/lib/statusline-shim.js +1 -1
- package/dist/lib/worktree.js +2 -2
- package/oclif.manifest.json +1014 -977
- package/package.json +18 -15
- package/dist/chunk-4A7FKR2O.js.map +0 -7
- package/dist/chunk-ISDA2QFX.js.map +0 -7
- package/dist/chunk-L674RNKQ.js.map +0 -7
- package/dist/chunk-PHLMIZKM.js.map +0 -7
- /package/dist/{chunk-JM6BQSRE.js.map → chunk-2WWGG2A5.js.map} +0 -0
- /package/dist/{chunk-PDURR7O3.js.map → chunk-46LMTDRE.js.map} +0 -0
- /package/dist/{chunk-3LHLSY7V.js.map → chunk-C7SRRSPA.js.map} +0 -0
- /package/dist/{chunk-B3HILODD.js.map → chunk-CLC7ZFH2.js.map} +0 -0
- /package/dist/{chunk-PIOVE3TN.js.map → chunk-FUS5C4SB.js.map} +0 -0
- /package/dist/{chunk-RDIH4AG2.js.map → chunk-MTLAIJED.js.map} +0 -0
- /package/dist/{chunk-ELL34R3K.js.map → chunk-XMWHTOCC.js.map} +0 -0
- /package/dist/{chunk-3IU7GFXS.js.map → chunk-YEBBX4HQ.js.map} +0 -0
- /package/dist/{dist-I6BCOLNG.js.map → dist-NEECHU47.js.map} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/commands/service/uninstall.ts"],
|
|
4
|
-
"sourcesContent": ["import { existsSync, unlinkSync } from 'node:fs';\nimport { execSync, execFileSync } from 'node:child_process';\nimport { homedir } from 'node:os';\nimport { join } from 'node:path';\nimport { BaseCommand } from '../../base-command.js';\n\n// Every plist label that `service install` may have written. Keeping these in\n// one ordered list lets uninstall march through them with the same teardown\n// logic; if install ever adds a fifth service, this is the only file that\n// needs to learn about it.\nconst SERVICES: Array<{ label: string; description: string }> = [\n { label: 'com.rulemetric.api', description: 'API' },\n { label: 'com.rulemetric.worker', description: 'Worker' },\n { label: 'com.rulemetric.gateway', description: 'Gateway' },\n { label: 'com.rulemetric.proxy', description: 'Proxy' },\n // Legacy daily worker-restart agent \u2014 install removes any stale copy,\n // but uninstall still cleans it up so a user running uninstall on an\n // older box gets a fully clean state.\n { label: 'com.rulemetric.worker.restart', description: 'Worker restart agent' },\n];\n\nfunction plistPathFor(label: string): string {\n return join(homedir(), 'Library', 'LaunchAgents', `${label}.plist`);\n}\n\nexport default class ServiceUninstall extends BaseCommand {\n static override description = 'Remove
|
|
5
|
-
"mappings": ";;;;;;;;;;;AAAA,SAAS,YAAY,kBAAkB;AACvC,SAAS,UAAU,oBAAoB;AACvC,SAAS,eAAe;AACxB,SAAS,YAAY;AAOrB,IAAM,WAA0D;AAAA,EAC9D,EAAE,OAAO,sBAA0B,aAAa,MAAU;AAAA,EAC1D,EAAE,OAAO,yBAA0B,aAAa,SAAU;AAAA,EAC1D,EAAE,OAAO,0BAA0B,aAAa,UAAU;AAAA,EAC1D,EAAE,OAAO,wBAA0B,aAAa,QAAU;AAAA;AAAA;AAAA;AAAA,EAI1D,EAAE,OAAO,iCAAiC,aAAa,uBAAuB;AAChF;AAEA,SAAS,aAAa,OAAuB;AAC3C,SAAO,KAAK,QAAQ,GAAG,WAAW,gBAAgB,GAAG,KAAK,QAAQ;AACpE;
|
|
4
|
+
"sourcesContent": ["import { existsSync, unlinkSync } from 'node:fs';\nimport { execSync, execFileSync } from 'node:child_process';\nimport { homedir } from 'node:os';\nimport { join } from 'node:path';\nimport { BaseCommand } from '../../base-command.js';\n\n// Every plist label that `service install` may have written. Keeping these in\n// one ordered list lets uninstall march through them with the same teardown\n// logic; if install ever adds a fifth service, this is the only file that\n// needs to learn about it.\nconst SERVICES: Array<{ label: string; description: string }> = [\n { label: 'com.rulemetric.api', description: 'API' },\n { label: 'com.rulemetric.worker', description: 'Worker' },\n { label: 'com.rulemetric.gateway', description: 'Gateway' },\n { label: 'com.rulemetric.proxy', description: 'Proxy' },\n // Legacy daily worker-restart agent \u2014 install removes any stale copy,\n // but uninstall still cleans it up so a user running uninstall on an\n // older box gets a fully clean state.\n { label: 'com.rulemetric.worker.restart', description: 'Worker restart agent' },\n];\n\nfunction plistPathFor(label: string): string {\n return join(homedir(), 'Library', 'LaunchAgents', `${label}.plist`);\n}\n\n// Linux systemd --user unit written by `service install --worker-only`. Kept in\n// sync with the constants in install.ts.\nconst WORKER_SYSTEMD_UNIT = 'rulemetric-worker.service';\nconst WORKER_SYSTEMD_PATH = join(homedir(), '.config', 'systemd', 'user', WORKER_SYSTEMD_UNIT);\n\nexport default class ServiceUninstall extends BaseCommand {\n static override description = 'Remove RuleMetric services (macOS launchd: API/worker/gateway/proxy; Linux: the --worker-only systemd unit)';\n\n async run(): Promise<void> {\n // Linux: only the worker-only systemd unit can exist here.\n if (process.platform === 'linux') {\n this.uninstallLinuxWorker();\n return;\n }\n if (process.platform !== 'darwin') {\n this.error('Service uninstall supports macOS (launchd) and Linux (systemd) only.');\n }\n\n const installed = SERVICES.filter((s) => existsSync(plistPathFor(s.label)));\n if (installed.length === 0) {\n this.log('No RuleMetric services are installed.');\n return;\n }\n\n const uid = execSync('id -u', { encoding: 'utf-8' }).trim();\n\n for (const svc of installed) {\n const path = plistPathFor(svc.label);\n this.stopService(uid, path, svc.label, svc.description);\n this.removePlist(path, svc.description);\n }\n\n this.log('');\n this.log('All RuleMetric services removed. They will no longer start automatically.');\n this.log('Use scripts/start.sh (dev) or `rulemetric service install` (always-on) to bring them back.');\n }\n\n private stopService(uid: string, plistPath: string, label: string, description: string): void {\n try {\n execFileSync('launchctl', ['bootout', `gui/${uid}`, plistPath], { encoding: 'utf-8' });\n this.log(`[OK] ${description} stopped`);\n return;\n } catch {\n // Fall through to legacy unload\n }\n try {\n execFileSync('launchctl', ['unload', plistPath], { encoding: 'utf-8' });\n this.log(`[OK] ${description} stopped (legacy)`);\n return;\n } catch {\n // Verify whether it's actually running. launchctl list returns the\n // current state; if there's no PID, the service wasn't running and\n // both bootout/unload no-op'd legitimately.\n try {\n const output = execSync(`launchctl list ${label} 2>&1`, { encoding: 'utf-8' });\n if (output.includes('PID')) {\n this.warn(`${description} appears to still be running. Try manually:`);\n this.warn(` launchctl bootout gui/${uid} \"${plistPath}\"`);\n } else {\n this.log(`[OK] ${description} was not running`);\n }\n } catch {\n this.log(`[OK] ${description} was not running`);\n }\n }\n }\n\n private removePlist(plistPath: string, description: string): void {\n try {\n unlinkSync(plistPath);\n this.log(`[OK] Removed ${plistPath}`);\n } catch (err) {\n this.warn(`Could not remove ${description} plist: ${(err as Error).message}. Try: rm \"${plistPath}\"`);\n }\n }\n\n private uninstallLinuxWorker(): void {\n if (!existsSync(WORKER_SYSTEMD_PATH)) {\n this.log('No RuleMetric worker is installed (no systemd unit found).');\n return;\n }\n try {\n execFileSync('systemctl', ['--user', 'disable', '--now', WORKER_SYSTEMD_UNIT], { encoding: 'utf-8' });\n this.log('[OK] Worker stopped + disabled (systemctl --user)');\n } catch (err) {\n this.warn(`Could not disable the worker unit: ${(err as Error).message}`);\n this.warn(` systemctl --user disable --now ${WORKER_SYSTEMD_UNIT}`);\n }\n try {\n unlinkSync(WORKER_SYSTEMD_PATH);\n this.log(`[OK] Removed ${WORKER_SYSTEMD_PATH}`);\n } catch (err) {\n this.warn(`Could not remove ${WORKER_SYSTEMD_PATH}: ${(err as Error).message}. Try: rm \"${WORKER_SYSTEMD_PATH}\"`);\n }\n try {\n execFileSync('systemctl', ['--user', 'daemon-reload'], { encoding: 'utf-8' });\n } catch {\n // best-effort\n }\n this.log('');\n this.log('RuleMetric worker removed. It will no longer start automatically.');\n }\n}\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;AAAA,SAAS,YAAY,kBAAkB;AACvC,SAAS,UAAU,oBAAoB;AACvC,SAAS,eAAe;AACxB,SAAS,YAAY;AAOrB,IAAM,WAA0D;AAAA,EAC9D,EAAE,OAAO,sBAA0B,aAAa,MAAU;AAAA,EAC1D,EAAE,OAAO,yBAA0B,aAAa,SAAU;AAAA,EAC1D,EAAE,OAAO,0BAA0B,aAAa,UAAU;AAAA,EAC1D,EAAE,OAAO,wBAA0B,aAAa,QAAU;AAAA;AAAA;AAAA;AAAA,EAI1D,EAAE,OAAO,iCAAiC,aAAa,uBAAuB;AAChF;AAEA,SAAS,aAAa,OAAuB;AAC3C,SAAO,KAAK,QAAQ,GAAG,WAAW,gBAAgB,GAAG,KAAK,QAAQ;AACpE;AAIA,IAAM,sBAAsB;AAC5B,IAAM,sBAAsB,KAAK,QAAQ,GAAG,WAAW,WAAW,QAAQ,mBAAmB;AAE7F,IAAqB,mBAArB,cAA8C,YAAY;AAAA,EACxD,OAAgB,cAAc;AAAA,EAE9B,MAAM,MAAqB;AAEzB,QAAI,QAAQ,aAAa,SAAS;AAChC,WAAK,qBAAqB;AAC1B;AAAA,IACF;AACA,QAAI,QAAQ,aAAa,UAAU;AACjC,WAAK,MAAM,sEAAsE;AAAA,IACnF;AAEA,UAAM,YAAY,SAAS,OAAO,CAAC,MAAM,WAAW,aAAa,EAAE,KAAK,CAAC,CAAC;AAC1E,QAAI,UAAU,WAAW,GAAG;AAC1B,WAAK,IAAI,uCAAuC;AAChD;AAAA,IACF;AAEA,UAAM,MAAM,SAAS,SAAS,EAAE,UAAU,QAAQ,CAAC,EAAE,KAAK;AAE1D,eAAW,OAAO,WAAW;AAC3B,YAAM,OAAO,aAAa,IAAI,KAAK;AACnC,WAAK,YAAY,KAAK,MAAM,IAAI,OAAO,IAAI,WAAW;AACtD,WAAK,YAAY,MAAM,IAAI,WAAW;AAAA,IACxC;AAEA,SAAK,IAAI,EAAE;AACX,SAAK,IAAI,2EAA2E;AACpF,SAAK,IAAI,4FAA4F;AAAA,EACvG;AAAA,EAEQ,YAAY,KAAa,WAAmB,OAAe,aAA2B;AAC5F,QAAI;AACF,mBAAa,aAAa,CAAC,WAAW,OAAO,GAAG,IAAI,SAAS,GAAG,EAAE,UAAU,QAAQ,CAAC;AACrF,WAAK,IAAI,QAAQ,WAAW,UAAU;AACtC;AAAA,IACF,QAAQ;AAAA,IAER;AACA,QAAI;AACF,mBAAa,aAAa,CAAC,UAAU,SAAS,GAAG,EAAE,UAAU,QAAQ,CAAC;AACtE,WAAK,IAAI,QAAQ,WAAW,mBAAmB;AAC/C;AAAA,IACF,QAAQ;AAIN,UAAI;AACF,cAAM,SAAS,SAAS,kBAAkB,KAAK,SAAS,EAAE,UAAU,QAAQ,CAAC;AAC7E,YAAI,OAAO,SAAS,KAAK,GAAG;AAC1B,eAAK,KAAK,GAAG,WAAW,6CAA6C;AACrE,eAAK,KAAK,2BAA2B,GAAG,KAAK,SAAS,GAAG;AAAA,QAC3D,OAAO;AACL,eAAK,IAAI,QAAQ,WAAW,kBAAkB;AAAA,QAChD;AAAA,MACF,QAAQ;AACN,aAAK,IAAI,QAAQ,WAAW,kBAAkB;AAAA,MAChD;AAAA,IACF;AAAA,EACF;AAAA,EAEQ,YAAY,WAAmB,aAA2B;AAChE,QAAI;AACF,iBAAW,SAAS;AACpB,WAAK,IAAI,gBAAgB,SAAS,EAAE;AAAA,IACtC,SAAS,KAAK;AACZ,WAAK,KAAK,oBAAoB,WAAW,WAAY,IAAc,OAAO,cAAc,SAAS,GAAG;AAAA,IACtG;AAAA,EACF;AAAA,EAEQ,uBAA6B;AACnC,QAAI,CAAC,WAAW,mBAAmB,GAAG;AACpC,WAAK,IAAI,4DAA4D;AACrE;AAAA,IACF;AACA,QAAI;AACF,mBAAa,aAAa,CAAC,UAAU,WAAW,SAAS,mBAAmB,GAAG,EAAE,UAAU,QAAQ,CAAC;AACpG,WAAK,IAAI,mDAAmD;AAAA,IAC9D,SAAS,KAAK;AACZ,WAAK,KAAK,sCAAuC,IAAc,OAAO,EAAE;AACxE,WAAK,KAAK,oCAAoC,mBAAmB,EAAE;AAAA,IACrE;AACA,QAAI;AACF,iBAAW,mBAAmB;AAC9B,WAAK,IAAI,gBAAgB,mBAAmB,EAAE;AAAA,IAChD,SAAS,KAAK;AACZ,WAAK,KAAK,oBAAoB,mBAAmB,KAAM,IAAc,OAAO,cAAc,mBAAmB,GAAG;AAAA,IAClH;AACA,QAAI;AACF,mBAAa,aAAa,CAAC,UAAU,eAAe,GAAG,EAAE,UAAU,QAAQ,CAAC;AAAA,IAC9E,QAAQ;AAAA,IAER;AACA,SAAK,IAAI,EAAE;AACX,SAAK,IAAI,mEAAmE;AAAA,EAC9E;AACF;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
+
import {
|
|
2
|
+
InstructionsPanel
|
|
3
|
+
} from "../chunk-BT6Z6545.js";
|
|
1
4
|
import {
|
|
2
5
|
OutcomesPanel
|
|
3
6
|
} from "../chunk-BRD5RUGM.js";
|
|
4
7
|
import {
|
|
5
8
|
Overview
|
|
6
9
|
} from "../chunk-IJGF2ETG.js";
|
|
10
|
+
import {
|
|
11
|
+
LauncherOverlay
|
|
12
|
+
} from "../chunk-CROYS75W.js";
|
|
13
|
+
import "../chunk-DTFXCHHI.js";
|
|
14
|
+
import "../chunk-KHJUQFIK.js";
|
|
15
|
+
import "../chunk-N52AHNBH.js";
|
|
7
16
|
import {
|
|
8
17
|
FrictionPanel
|
|
9
18
|
} from "../chunk-XC6M4CSW.js";
|
|
10
19
|
import {
|
|
11
20
|
InsightsPanel
|
|
12
21
|
} from "../chunk-4SCZK7AL.js";
|
|
13
|
-
import {
|
|
14
|
-
InstructionsPanel
|
|
15
|
-
} from "../chunk-BT6Z6545.js";
|
|
16
22
|
import "../chunk-DQ3KELXD.js";
|
|
17
23
|
import {
|
|
18
24
|
loadApiInsights,
|
|
19
25
|
loadLinkedInstructions,
|
|
20
26
|
loadLocalStats
|
|
21
|
-
} from "../chunk-
|
|
22
|
-
import {
|
|
23
|
-
LauncherOverlay
|
|
24
|
-
} from "../chunk-CROYS75W.js";
|
|
25
|
-
import "../chunk-DTFXCHHI.js";
|
|
26
|
-
import "../chunk-KHJUQFIK.js";
|
|
27
|
-
import "../chunk-N52AHNBH.js";
|
|
27
|
+
} from "../chunk-46LMTDRE.js";
|
|
28
28
|
import "../chunk-QD6X4L4L.js";
|
|
29
29
|
import "../chunk-RH7NHVSK.js";
|
|
30
30
|
import {
|
|
@@ -33,7 +33,7 @@ import {
|
|
|
33
33
|
PERIODS,
|
|
34
34
|
PERIOD_LABELS
|
|
35
35
|
} from "../chunk-QJQS6TUN.js";
|
|
36
|
-
import "../chunk-
|
|
36
|
+
import "../chunk-4QGATD5Y.js";
|
|
37
37
|
import {
|
|
38
38
|
readActiveOrg
|
|
39
39
|
} from "../chunk-EKJ2CABV.js";
|
|
@@ -149,7 +149,7 @@ function InteractiveDashboard({ initialLocal, initialApi, initialInstructions, i
|
|
|
149
149
|
return;
|
|
150
150
|
}
|
|
151
151
|
if (input === "n") {
|
|
152
|
-
import("../dist-
|
|
152
|
+
import("../dist-NEECHU47.js").then(({ getLauncher }) => {
|
|
153
153
|
getLauncher("claude_code").launch({ projectPath: process.cwd(), mode: "interactive" });
|
|
154
154
|
});
|
|
155
155
|
return;
|
package/dist/dashboard/data.js
CHANGED
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
loadApiInsights,
|
|
3
3
|
loadLinkedInstructions,
|
|
4
4
|
loadLocalStats
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-46LMTDRE.js";
|
|
6
|
+
import "../chunk-4QGATD5Y.js";
|
|
7
7
|
import "../chunk-NSBPE2FW.js";
|
|
8
8
|
export {
|
|
9
9
|
loadApiInsights,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ClaudeCodeAdapter,
|
|
3
|
+
CodexAdapter,
|
|
3
4
|
CopilotAgentAdapter,
|
|
4
5
|
CursorAdapter,
|
|
5
6
|
RuleMetricMcpAdapter,
|
|
@@ -13,6 +14,7 @@ import {
|
|
|
13
14
|
buildTmuxSendKeysArgs,
|
|
14
15
|
detectTool,
|
|
15
16
|
discoverAllSessions,
|
|
17
|
+
freshCodexState,
|
|
16
18
|
getAdapter,
|
|
17
19
|
getAllProviders,
|
|
18
20
|
getAvailableLaunchers,
|
|
@@ -22,10 +24,11 @@ import {
|
|
|
22
24
|
sanitizeBranch,
|
|
23
25
|
sanitizeTmuxName,
|
|
24
26
|
worktreePathFor
|
|
25
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-4QGATD5Y.js";
|
|
26
28
|
import "./chunk-NSBPE2FW.js";
|
|
27
29
|
export {
|
|
28
30
|
ClaudeCodeAdapter,
|
|
31
|
+
CodexAdapter,
|
|
29
32
|
CopilotAgentAdapter,
|
|
30
33
|
CursorAdapter,
|
|
31
34
|
RuleMetricMcpAdapter,
|
|
@@ -39,6 +42,7 @@ export {
|
|
|
39
42
|
buildTmuxSendKeysArgs,
|
|
40
43
|
detectTool,
|
|
41
44
|
discoverAllSessions,
|
|
45
|
+
freshCodexState,
|
|
42
46
|
getAdapter,
|
|
43
47
|
getAllProviders,
|
|
44
48
|
getAvailableLaunchers,
|
|
@@ -49,4 +53,4 @@ export {
|
|
|
49
53
|
sanitizeTmuxName,
|
|
50
54
|
worktreePathFor
|
|
51
55
|
};
|
|
52
|
-
//# sourceMappingURL=dist-
|
|
56
|
+
//# sourceMappingURL=dist-NEECHU47.js.map
|
package/dist/lib/agent-loop.js
CHANGED
|
@@ -3,30 +3,30 @@ import {
|
|
|
3
3
|
HANDLERS,
|
|
4
4
|
pollForWork,
|
|
5
5
|
runAgentLoop
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-2WWGG2A5.js";
|
|
7
7
|
import "../chunk-JX5UI6RW.js";
|
|
8
|
+
import "../chunk-QJXAULRC.js";
|
|
8
9
|
import "../chunk-EHABPBGH.js";
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
10
|
+
import "../chunk-XMWHTOCC.js";
|
|
11
|
+
import "../chunk-C7SRRSPA.js";
|
|
12
|
+
import "../chunk-FUS5C4SB.js";
|
|
12
13
|
import "../chunk-W53GKIZQ.js";
|
|
13
|
-
import "../chunk-
|
|
14
|
+
import "../chunk-YEBBX4HQ.js";
|
|
14
15
|
import "../chunk-XZXS2W24.js";
|
|
15
16
|
import "../chunk-RQ2TMLKG.js";
|
|
16
17
|
import "../chunk-YBNW7ARH.js";
|
|
17
18
|
import "../chunk-FZKLLNDS.js";
|
|
18
|
-
import "../chunk-
|
|
19
|
+
import "../chunk-CLC7ZFH2.js";
|
|
20
|
+
import "../chunk-DGHWRQXL.js";
|
|
19
21
|
import "../chunk-K3BFZ7KG.js";
|
|
20
|
-
import "../chunk-
|
|
21
|
-
import "../chunk-
|
|
22
|
+
import "../chunk-QSN77T7C.js";
|
|
23
|
+
import "../chunk-42A3HEEH.js";
|
|
22
24
|
import "../chunk-BD7CY42U.js";
|
|
23
|
-
import "../chunk-
|
|
24
|
-
import "../chunk-DGHWRQXL.js";
|
|
25
|
+
import "../chunk-IWYCRLEK.js";
|
|
25
26
|
import "../chunk-J7N3DLH6.js";
|
|
26
27
|
import "../chunk-52WIYRZH.js";
|
|
27
|
-
import "../chunk-IWYCRLEK.js";
|
|
28
28
|
import "../chunk-EKP32DLN.js";
|
|
29
|
-
import "../chunk-
|
|
29
|
+
import "../chunk-4QGATD5Y.js";
|
|
30
30
|
import "../chunk-OQSQC7VB.js";
|
|
31
31
|
import "../chunk-KRBQLMOP.js";
|
|
32
32
|
import "../chunk-3TIMQ3O6.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
processAnnouncement
|
|
3
|
-
} from "../../chunk-
|
|
4
|
-
import "../../chunk-NIDLJO6F.js";
|
|
5
|
-
import "../../chunk-4A7FKR2O.js";
|
|
3
|
+
} from "../../chunk-CLC7ZFH2.js";
|
|
6
4
|
import "../../chunk-DGHWRQXL.js";
|
|
5
|
+
import "../../chunk-QSN77T7C.js";
|
|
6
|
+
import "../../chunk-42A3HEEH.js";
|
|
7
7
|
import "../../chunk-NSBPE2FW.js";
|
|
8
8
|
export {
|
|
9
9
|
processAnnouncement
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
processChangelog
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-MTLAIJED.js";
|
|
4
4
|
import "../../chunk-K3BFZ7KG.js";
|
|
5
|
-
import "../../chunk-
|
|
6
|
-
import "../../chunk-
|
|
5
|
+
import "../../chunk-QSN77T7C.js";
|
|
6
|
+
import "../../chunk-42A3HEEH.js";
|
|
7
7
|
import "../../chunk-NSBPE2FW.js";
|
|
8
8
|
export {
|
|
9
9
|
processChangelog
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
processLaunch,
|
|
3
3
|
resolveWorktreeForLaunch
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-XMWHTOCC.js";
|
|
5
|
+
import "../../chunk-FUS5C4SB.js";
|
|
6
6
|
import "../../chunk-DGHWRQXL.js";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-4QGATD5Y.js";
|
|
8
8
|
import "../../chunk-KRBQLMOP.js";
|
|
9
9
|
import "../../chunk-EJOI2ZGU.js";
|
|
10
10
|
import "../../chunk-KZRFUXGF.js";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
processRunCleanup
|
|
3
|
-
} from "../../chunk-
|
|
4
|
-
import "../../chunk-
|
|
5
|
-
import "../../chunk-4A7FKR2O.js";
|
|
3
|
+
} from "../../chunk-C7SRRSPA.js";
|
|
4
|
+
import "../../chunk-FUS5C4SB.js";
|
|
6
5
|
import "../../chunk-DGHWRQXL.js";
|
|
7
|
-
import "../../chunk-
|
|
6
|
+
import "../../chunk-42A3HEEH.js";
|
|
7
|
+
import "../../chunk-4QGATD5Y.js";
|
|
8
8
|
import "../../chunk-KRBQLMOP.js";
|
|
9
9
|
import "../../chunk-NSBPE2FW.js";
|
|
10
10
|
export {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
processSessionGoal
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-YEBBX4HQ.js";
|
|
4
4
|
import "../../chunk-FZKLLNDS.js";
|
|
5
|
-
import "../../chunk-
|
|
5
|
+
import "../../chunk-42A3HEEH.js";
|
|
6
6
|
import "../../chunk-KRBQLMOP.js";
|
|
7
7
|
import "../../chunk-NSBPE2FW.js";
|
|
8
8
|
export {
|
package/dist/lib/hooks-config.js
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
detectInstalledTools,
|
|
3
3
|
generateAntigravityHooksConfig,
|
|
4
|
+
generateClaudeCodeHooksConfig,
|
|
4
5
|
generateCopilotHooksConfig,
|
|
5
6
|
generateCursorHooksConfig,
|
|
6
7
|
installMacOSProxyEnv,
|
|
8
|
+
mergeClaudeCodeHooks,
|
|
7
9
|
removeAntigravityHooks,
|
|
8
10
|
removeAntigravityUserHooks,
|
|
11
|
+
removeClaudeCodeHooks,
|
|
9
12
|
removeCopilotHooks,
|
|
10
13
|
removeCursorHooks,
|
|
11
14
|
removeCursorUserHooks,
|
|
@@ -22,16 +25,19 @@ import {
|
|
|
22
25
|
writeCursorUserProxyConfig,
|
|
23
26
|
writeVSCodeProxyConfig,
|
|
24
27
|
writeVSCodeUserProxyConfig
|
|
25
|
-
} from "../chunk-
|
|
28
|
+
} from "../chunk-ANOWI23I.js";
|
|
26
29
|
import "../chunk-NSBPE2FW.js";
|
|
27
30
|
export {
|
|
28
31
|
detectInstalledTools,
|
|
29
32
|
generateAntigravityHooksConfig,
|
|
33
|
+
generateClaudeCodeHooksConfig,
|
|
30
34
|
generateCopilotHooksConfig,
|
|
31
35
|
generateCursorHooksConfig,
|
|
32
36
|
installMacOSProxyEnv,
|
|
37
|
+
mergeClaudeCodeHooks,
|
|
33
38
|
removeAntigravityHooks,
|
|
34
39
|
removeAntigravityUserHooks,
|
|
40
|
+
removeClaudeCodeHooks,
|
|
35
41
|
removeCopilotHooks,
|
|
36
42
|
removeCursorHooks,
|
|
37
43
|
removeCursorUserHooks,
|
package/dist/lib/manual-tasks.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
processChangelog
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-MTLAIJED.js";
|
|
4
4
|
import {
|
|
5
5
|
cronRefreshSkills
|
|
6
6
|
} from "../chunk-RQ2TMLKG.js";
|
|
@@ -9,8 +9,8 @@ import {
|
|
|
9
9
|
} from "../chunk-YBNW7ARH.js";
|
|
10
10
|
import "../chunk-FZKLLNDS.js";
|
|
11
11
|
import "../chunk-K3BFZ7KG.js";
|
|
12
|
-
import "../chunk-
|
|
13
|
-
import "../chunk-
|
|
12
|
+
import "../chunk-QSN77T7C.js";
|
|
13
|
+
import "../chunk-42A3HEEH.js";
|
|
14
14
|
import "../chunk-EKP32DLN.js";
|
|
15
15
|
import "../chunk-OQSQC7VB.js";
|
|
16
16
|
import "../chunk-KRBQLMOP.js";
|
package/dist/lib/worktree.js
CHANGED
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
ensureWorktree,
|
|
3
3
|
removeWorktree,
|
|
4
4
|
runGit
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-FUS5C4SB.js";
|
|
6
6
|
import {
|
|
7
7
|
sanitizeBranch
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-4QGATD5Y.js";
|
|
9
9
|
import "../chunk-KRBQLMOP.js";
|
|
10
10
|
import "../chunk-NSBPE2FW.js";
|
|
11
11
|
export {
|