@wrongstack/cli 0.319.0 → 0.319.1
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/{auth-KF5TAD7V.js → auth-ND7J7DTD.js} +2 -2
- package/dist/{chunk-H7GABTGS.js → chunk-635WW3II.js} +3 -13
- package/dist/{chunk-7CECQDNH.js → chunk-D3K4NYQL.js} +1 -1
- package/dist/{chunk-4JRIWVJ4.js → chunk-ERX4BLKP.js} +1 -1
- package/dist/{chunk-42JD25KU.js → chunk-HF5VQWIY.js} +2 -2
- package/dist/{chunk-XHIEA6LG.js → chunk-IMT6PNV5.js} +1 -1
- package/dist/{chunk-G7337TTK.js → chunk-IS2PPBQV.js} +1 -1
- package/dist/{chunk-G3IMKQRH.js → chunk-JHPXJRRI.js} +1 -1
- package/dist/{chunk-OZDE3OWD.js → chunk-KYDJJLJI.js} +10 -10
- package/dist/{chunk-VWCZL4OH.js → chunk-LIWVIEZM.js} +2 -2
- package/dist/{chunk-7JBKXVMK.js → chunk-TALOKMIC.js} +14 -18
- package/dist/{chunk-SYIBTG3X.js → chunk-VOTTENR5.js} +3 -5
- package/dist/chunk-WHOIR577.js +1 -0
- package/dist/{chunk-2ZNBRZ4W.js → chunk-WQZW3RDP.js} +2 -2
- package/dist/{cli-context-LH4QP4W2.js → cli-context-K73EIND5.js} +6 -6
- package/dist/{cli-main-72XUFUCL.js → cli-main-QXSKKANW.js} +42 -57
- package/dist/{diag-doctor-LFCCBPMD.js → diag-doctor-QZVKUAE5.js} +4 -5
- package/dist/{execution-DKJDNPYF.js → execution-7ZFY4FJY.js} +484 -458
- package/dist/{hq-3GWBFLON.js → hq-4QQJO2GN.js} +2 -2
- package/dist/hq-server/routes.d.ts +1 -1
- package/dist/{hq-server-OARPUSQJ.js → hq-server-CVAYICIS.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{modeldiag-5FRMT6FQ.js → modeldiag-ZL4ROTQ5.js} +1 -1
- package/dist/{plugin-usage-CYUORYM6.js → plugin-usage-7WCZW4NP.js} +2 -2
- package/dist/{plugins-RV3OBBND.js → plugins-7N3TF2QF.js} +3 -3
- package/dist/{project-manifest-YFTJ3D5N.js → project-manifest-RV5FXGQI.js} +2 -2
- package/dist/{project-picker-R5TYAE3Q.js → project-picker-CCQR3W4I.js} +3 -3
- package/dist/{proxy-wiring-EQB5X5YH.js → proxy-wiring-QCI7EWQC.js} +3 -3
- package/dist/{sdd-runtime-FLKCSTYV.js → sdd-runtime-R6FAK2G2.js} +2 -2
- package/dist/services/sdd-runtime.d.ts +1 -1
- package/dist/{short-circuit-flags-U6CJAF6J.js → short-circuit-flags-7YUCERBB.js} +2 -2
- package/dist/slash-commands/sdd.d.ts +1 -1
- package/dist/{subcommands-J4JMWC5W.js → subcommands-KE6MEQQP.js} +2 -2
- package/dist/{webui-server-SY4EQCKD.js → webui-server-F7MSRHOF.js} +4 -2
- package/dist/wiring/wrongtrace-gate.d.ts +2 -2
- package/dist/wiring/wrongtrace-hooks.d.ts +1 -1
- package/dist/{wrongtrace-gate-counters-P5BCBXQN.js → wrongtrace-gate-counters-GSVY372D.js} +2 -2
- package/dist/{wrongtrace-telemetry-FNLANZ5I.js → wrongtrace-telemetry-KBBM5NLQ.js} +2 -2
- package/package.json +28 -28
- package/dist/chunk-ALE5KHCA.js +0 -1
|
@@ -51,7 +51,7 @@ var hqCmd = async (args, deps) => {
|
|
|
51
51
|
return 1;
|
|
52
52
|
};
|
|
53
53
|
async function startServer(deps) {
|
|
54
|
-
const { startHqServer } = await import("./hq-server-
|
|
54
|
+
const { startHqServer } = await import("./hq-server-CVAYICIS.js");
|
|
55
55
|
const dataDir = resolveDataDir(deps);
|
|
56
56
|
const flags = deps.flags ?? {};
|
|
57
57
|
const host = typeof flags["host"] === "string" ? flags["host"] : HQ_CLI_DEFAULT_HOST;
|
|
@@ -709,4 +709,4 @@ export {
|
|
|
709
709
|
hqCmd,
|
|
710
710
|
resolveAuditActor
|
|
711
711
|
};
|
|
712
|
-
//# sourceMappingURL=hq-
|
|
712
|
+
//# sourceMappingURL=hq-4QQJO2GN.js.map
|
|
@@ -89,7 +89,7 @@ export interface HqRouterDeps {
|
|
|
89
89
|
bootstrapStore?: import('@wrongstack/core/hq').HqBootstrapCodeStore | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* Applies a freshly-persisted `auth.json` to live server state. Bound to
|
|
92
|
-
|
|
92
|
+
* `HqAuthState.apply` so the in-process mutation routes share one projection
|
|
93
93
|
* — and one WS-010 exposure re-assessment — with the reload watcher.
|
|
94
94
|
*/
|
|
95
95
|
applyAuthFile: ApplyHqAuthFile;
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
readLocalSubagentTranscript,
|
|
11
11
|
sanitizeApiError,
|
|
12
12
|
startHqServer
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-TALOKMIC.js";
|
|
14
14
|
import "./chunk-HXJYHAR4.js";
|
|
15
15
|
import "./chunk-Q5GTM25S.js";
|
|
16
16
|
import "./chunk-7OCVIDC7.js";
|
|
@@ -27,4 +27,4 @@ export {
|
|
|
27
27
|
sanitizeApiError,
|
|
28
28
|
startHqServer
|
|
29
29
|
};
|
|
30
|
-
//# sourceMappingURL=hq-server-
|
|
30
|
+
//# sourceMappingURL=hq-server-CVAYICIS.js.map
|
package/dist/index.js
CHANGED
|
@@ -17,14 +17,14 @@ async function main(argv) {
|
|
|
17
17
|
applySessionShellDefault();
|
|
18
18
|
const earlyFlags = parseArgs(argv).flags;
|
|
19
19
|
if (earlyFlags["help"] === true || earlyFlags["version"] === true) {
|
|
20
|
-
const { handleHelpVersionShortCircuit } = await import("./short-circuit-flags-
|
|
20
|
+
const { handleHelpVersionShortCircuit } = await import("./short-circuit-flags-7YUCERBB.js");
|
|
21
21
|
const earlyExit = await handleHelpVersionShortCircuit(argv);
|
|
22
22
|
if (earlyExit !== null) return earlyExit;
|
|
23
23
|
}
|
|
24
|
-
const { initializeCli } = await import("./cli-context-
|
|
24
|
+
const { initializeCli } = await import("./cli-context-K73EIND5.js");
|
|
25
25
|
const cliCtx = await initializeCli(argv);
|
|
26
26
|
if (typeof cliCtx === "number") return cliCtx;
|
|
27
|
-
const { runInteractive } = await import("./cli-main-
|
|
27
|
+
const { runInteractive } = await import("./cli-main-QXSKKANW.js");
|
|
28
28
|
return runInteractive(cliCtx);
|
|
29
29
|
}
|
|
30
30
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runPluginManagementCommand
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-635WW3II.js";
|
|
4
4
|
import {
|
|
5
5
|
restoreFlags
|
|
6
6
|
} from "./chunk-CSAPOCBP.js";
|
|
@@ -41,4 +41,4 @@ export {
|
|
|
41
41
|
pluginCmd,
|
|
42
42
|
usageCmd
|
|
43
43
|
};
|
|
44
|
-
//# sourceMappingURL=plugin-usage-
|
|
44
|
+
//# sourceMappingURL=plugin-usage-7WCZW4NP.js.map
|
|
@@ -6,9 +6,9 @@ import {
|
|
|
6
6
|
pluginNameFromSpec,
|
|
7
7
|
setupPlugins,
|
|
8
8
|
warnIfDeprecatedPluginName
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-HF5VQWIY.js";
|
|
10
10
|
import "./chunk-TYO2OVAD.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-635WW3II.js";
|
|
12
12
|
import "./chunk-7OCVIDC7.js";
|
|
13
13
|
export {
|
|
14
14
|
BUILTIN_PLUGIN_FACTORIES,
|
|
@@ -19,4 +19,4 @@ export {
|
|
|
19
19
|
setupPlugins,
|
|
20
20
|
warnIfDeprecatedPluginName
|
|
21
21
|
};
|
|
22
|
-
//# sourceMappingURL=plugins-
|
|
22
|
+
//# sourceMappingURL=plugins-7N3TF2QF.js.map
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
loadManifest,
|
|
6
6
|
saveManifest,
|
|
7
7
|
touchProjectInManifest
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-IS2PPBQV.js";
|
|
9
9
|
import "./chunk-7OCVIDC7.js";
|
|
10
10
|
export {
|
|
11
11
|
ensureProjectDataDir,
|
|
@@ -15,4 +15,4 @@ export {
|
|
|
15
15
|
saveManifest,
|
|
16
16
|
touchProjectInManifest
|
|
17
17
|
};
|
|
18
|
-
//# sourceMappingURL=project-manifest-
|
|
18
|
+
//# sourceMappingURL=project-manifest-RV5FXGQI.js.map
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
filterItems,
|
|
5
5
|
runProjectPicker,
|
|
6
6
|
skipDivider
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-WQZW3RDP.js";
|
|
8
|
+
import "./chunk-IS2PPBQV.js";
|
|
9
9
|
import "./chunk-7OCVIDC7.js";
|
|
10
10
|
export {
|
|
11
11
|
buildPickerItems,
|
|
@@ -14,4 +14,4 @@ export {
|
|
|
14
14
|
runProjectPicker,
|
|
15
15
|
skipDivider
|
|
16
16
|
};
|
|
17
|
-
//# sourceMappingURL=project-picker-
|
|
17
|
+
//# sourceMappingURL=project-picker-CCQR3W4I.js.map
|
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
awaitFirstWrongProxyProbe,
|
|
4
4
|
bootstrapWrongProxy,
|
|
5
5
|
shutdownWrongProxy
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-VOTTENR5.js";
|
|
7
|
+
import "./chunk-JHPXJRRI.js";
|
|
8
8
|
import "./chunk-7OCVIDC7.js";
|
|
9
9
|
export {
|
|
10
10
|
applyWrongProxyPrefs,
|
|
@@ -12,4 +12,4 @@ export {
|
|
|
12
12
|
bootstrapWrongProxy,
|
|
13
13
|
shutdownWrongProxy
|
|
14
14
|
};
|
|
15
|
-
//# sourceMappingURL=proxy-wiring-
|
|
15
|
+
//# sourceMappingURL=proxy-wiring-QCI7EWQC.js.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-WHOIR577.js";
|
|
2
2
|
import {
|
|
3
3
|
SDDState,
|
|
4
4
|
advanceToNextTask,
|
|
@@ -49,4 +49,4 @@ export {
|
|
|
49
49
|
trySaveSpecFromAIOutput,
|
|
50
50
|
trySaveTasksFromAIOutput
|
|
51
51
|
};
|
|
52
|
-
//# sourceMappingURL=sdd-runtime-
|
|
52
|
+
//# sourceMappingURL=sdd-runtime-R6FAK2G2.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { findSpec, gatherProjectContext, getActiveBuilder, getActiveSDDContext, getActiveSDDPhase, } from './sdd/project-context.js';
|
|
2
2
|
export { autoDetectTaskCompletion, isExplanatoryText, trySaveImplementationPlan, trySaveSpecFromAIOutput, } from './sdd/spec-detection.js';
|
|
3
3
|
export { getSessionState, SDDState, sddState } from './sdd/state.js';
|
|
4
|
-
export { advanceToNextTask, formatElapsed, getCurrentExecutingContext, getTaskGraphId, getTaskListText, getTaskProgress, getTaskTrackerExport as getTaskTracker, getTaskTrackerExport, markTaskCompleted, renderTaskListWithProgress, trySaveTasksFromAIOutput } from './sdd/task-manager.js';
|
|
4
|
+
export { advanceToNextTask, formatElapsed, getCurrentExecutingContext, getTaskGraphId, getTaskListText, getTaskProgress, getTaskTrackerExport as getTaskTracker, getTaskTrackerExport, markTaskCompleted, renderTaskListWithProgress, trySaveTasksFromAIOutput, } from './sdd/task-manager.js';
|
|
5
5
|
//# sourceMappingURL=sdd-runtime.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
handleHelpVersionShortCircuit
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LIWVIEZM.js";
|
|
4
4
|
import "./chunk-QAC263FZ.js";
|
|
5
5
|
import "./chunk-XJXDOF63.js";
|
|
6
6
|
import "./chunk-GGGUZSAU.js";
|
|
@@ -8,4 +8,4 @@ import "./chunk-7OCVIDC7.js";
|
|
|
8
8
|
export {
|
|
9
9
|
handleHelpVersionShortCircuit
|
|
10
10
|
};
|
|
11
|
-
//# sourceMappingURL=short-circuit-flags-
|
|
11
|
+
//# sourceMappingURL=short-circuit-flags-7YUCERBB.js.map
|
|
@@ -5,7 +5,7 @@ export type { TaskProgress } from '@wrongstack/core/types';
|
|
|
5
5
|
export { findSpec, gatherProjectContext, getActiveBuilder, getActiveSDDContext, getActiveSDDPhase, } from '../services/sdd/project-context.js';
|
|
6
6
|
export { autoDetectTaskCompletion, isExplanatoryText, trySaveImplementationPlan, trySaveSpecFromAIOutput, } from '../services/sdd/spec-detection.js';
|
|
7
7
|
export { SDDState, sddState } from '../services/sdd/state.js';
|
|
8
|
-
export { advanceToNextTask, formatElapsed, getCurrentExecutingContext, getTaskGraphId, getTaskListText, getTaskProgress, getTaskTrackerExport, markTaskCompleted, renderTaskListWithProgress, trySaveTasksFromAIOutput } from '../services/sdd/task-manager.js';
|
|
8
|
+
export { advanceToNextTask, formatElapsed, getCurrentExecutingContext, getTaskGraphId, getTaskListText, getTaskProgress, getTaskTrackerExport, markTaskCompleted, renderTaskListWithProgress, trySaveTasksFromAIOutput, } from '../services/sdd/task-manager.js';
|
|
9
9
|
export { renderProgress };
|
|
10
10
|
export declare function getTaskTracker(): TaskTracker | null;
|
|
11
11
|
/**
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
subcommandNames,
|
|
3
3
|
subcommands
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-KYDJJLJI.js";
|
|
5
5
|
import "./chunk-7OCVIDC7.js";
|
|
6
6
|
export {
|
|
7
7
|
subcommandNames,
|
|
8
8
|
subcommands
|
|
9
9
|
};
|
|
10
|
-
//# sourceMappingURL=subcommands-
|
|
10
|
+
//# sourceMappingURL=subcommands-KE6MEQQP.js.map
|
|
@@ -1303,7 +1303,9 @@ async function runWebUI(opts) {
|
|
|
1303
1303
|
const terminalLogView = startTerminalDashboard({
|
|
1304
1304
|
title: surface === "simpleui" ? "SimpleUI" : "WebUI",
|
|
1305
1305
|
quiet: !envFlag("WEBUI_LOGS"),
|
|
1306
|
-
|
|
1306
|
+
// The dashboard is operator-owned terminal output, so retain the full
|
|
1307
|
+
// authenticated access URL here even though startup logs remain redacted.
|
|
1308
|
+
getUrl: () => accessUrl
|
|
1307
1309
|
});
|
|
1308
1310
|
const strictPort = opts.strictPort ?? isStrictPort();
|
|
1309
1311
|
let httpPort = requestedHttpPort;
|
|
@@ -1910,4 +1912,4 @@ async function runWebUI(opts) {
|
|
|
1910
1912
|
export {
|
|
1911
1913
|
runWebUI
|
|
1912
1914
|
};
|
|
1913
|
-
//# sourceMappingURL=webui-server-
|
|
1915
|
+
//# sourceMappingURL=webui-server-F7MSRHOF.js.map
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
* working unchanged through this shim. NOTE: this is NOT core/utils'
|
|
9
9
|
* `withFileLock` (a local file lock) — same name, different mechanism.
|
|
10
10
|
*/
|
|
11
|
-
export { getWrongTrace, preflightFileEdit, resetWrongTraceGate, withFileLock, } from
|
|
12
|
-
export type { PreflightOptions, PreflightVerdict } from
|
|
11
|
+
export { getWrongTrace, preflightFileEdit, resetWrongTraceGate, withFileLock, } from '@wrongstack/wrongtrace';
|
|
12
|
+
export type { PreflightOptions, PreflightVerdict } from '@wrongstack/wrongtrace';
|
|
13
13
|
//# sourceMappingURL=wrongtrace-gate.d.ts.map
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
* shared by every host process that executes tools.
|
|
5
5
|
*/
|
|
6
6
|
export { createWrongTraceHookPair } from '@wrongstack/wrongtrace';
|
|
7
|
-
export type { WrongTraceGateDecisionEvent, WrongTraceHookInput, WrongTraceHookOptions, WrongTraceHookPair, WrongTracePreToolUseOutcome, } from
|
|
7
|
+
export type { WrongTraceGateDecisionEvent, WrongTraceHookInput, WrongTraceHookOptions, WrongTraceHookPair, WrongTracePreToolUseOutcome, } from '@wrongstack/wrongtrace';
|
|
8
8
|
//# sourceMappingURL=wrongtrace-hooks.d.ts.map
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
recordGateDecision,
|
|
8
8
|
resetGateDecisions,
|
|
9
9
|
snapshotGateDecisions
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-D3K4NYQL.js";
|
|
11
11
|
import "./chunk-7OCVIDC7.js";
|
|
12
12
|
export {
|
|
13
13
|
countersFilePath,
|
|
@@ -19,4 +19,4 @@ export {
|
|
|
19
19
|
resetGateDecisions,
|
|
20
20
|
snapshotGateDecisions
|
|
21
21
|
};
|
|
22
|
-
//# sourceMappingURL=wrongtrace-gate-counters-
|
|
22
|
+
//# sourceMappingURL=wrongtrace-gate-counters-GSVY372D.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getWrongTrace
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-ERX4BLKP.js";
|
|
4
4
|
import "./chunk-7OCVIDC7.js";
|
|
5
5
|
|
|
6
6
|
// src/wiring/wrongtrace-telemetry.ts
|
|
@@ -31,4 +31,4 @@ export {
|
|
|
31
31
|
buildWrongTraceTelemetryReport,
|
|
32
32
|
reportWrongTraceSessionTelemetry
|
|
33
33
|
};
|
|
34
|
-
//# sourceMappingURL=wrongtrace-telemetry-
|
|
34
|
+
//# sourceMappingURL=wrongtrace-telemetry-KBBM5NLQ.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/cli",
|
|
3
|
-
"version": "0.319.
|
|
3
|
+
"version": "0.319.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack CLI — terminal AI coding agent with provider catalog from models.dev. Provides `wrongstack` and `wstack` binaries.",
|
|
6
6
|
"keywords": [
|
|
@@ -41,36 +41,36 @@
|
|
|
41
41
|
"data"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@wrongstack/acp": "0.319.
|
|
45
|
-
"@wrongstack/bench": "0.319.
|
|
46
|
-
"@wrongstack/core": "0.319.
|
|
47
|
-
"@wrongstack/primitives": "0.319.
|
|
48
|
-
"@wrongstack/kanban": "0.319.
|
|
49
|
-
"@wrongstack/mcp": "0.319.
|
|
50
|
-
"@wrongstack/persistence": "0.319.
|
|
51
|
-
"@wrongstack/plug-lsp": "0.319.
|
|
52
|
-
"@wrongstack/plugins": "0.319.
|
|
53
|
-
"@wrongstack/providers": "0.319.
|
|
54
|
-
"@wrongstack/requirement-intake": "0.319.
|
|
55
|
-
"@wrongstack/runtime": "0.319.
|
|
56
|
-
"@wrongstack/sage": "0.319.
|
|
57
|
-
"@wrongstack/sdd": "0.319.
|
|
58
|
-
"@wrongstack/security-scanner": "0.319.
|
|
59
|
-
"@wrongstack/simpleui": "0.319.
|
|
60
|
-
"@wrongstack/techstack": "0.319.
|
|
61
|
-
"@wrongstack/telegram": "0.319.
|
|
62
|
-
"@wrongstack/tools": "0.319.
|
|
63
|
-
"@wrongstack/tui": "0.319.
|
|
64
|
-
"@wrongstack/vector-memory": "0.319.
|
|
65
|
-
"@wrongstack/webui": "0.319.
|
|
66
|
-
"@wrongstack/webui-hq": "0.319.
|
|
67
|
-
"@wrongstack/webui-protocol": "0.319.
|
|
68
|
-
"@wrongstack/wrongtrace": "0.319.
|
|
69
|
-
"@wrongstack/webui-server": "0.319.
|
|
44
|
+
"@wrongstack/acp": "0.319.1",
|
|
45
|
+
"@wrongstack/bench": "0.319.1",
|
|
46
|
+
"@wrongstack/core": "0.319.1",
|
|
47
|
+
"@wrongstack/primitives": "0.319.1",
|
|
48
|
+
"@wrongstack/kanban": "0.319.1",
|
|
49
|
+
"@wrongstack/mcp": "0.319.1",
|
|
50
|
+
"@wrongstack/persistence": "0.319.1",
|
|
51
|
+
"@wrongstack/plug-lsp": "0.319.1",
|
|
52
|
+
"@wrongstack/plugins": "0.319.1",
|
|
53
|
+
"@wrongstack/providers": "0.319.1",
|
|
54
|
+
"@wrongstack/requirement-intake": "0.319.1",
|
|
55
|
+
"@wrongstack/runtime": "0.319.1",
|
|
56
|
+
"@wrongstack/sage": "0.319.1",
|
|
57
|
+
"@wrongstack/sdd": "0.319.1",
|
|
58
|
+
"@wrongstack/security-scanner": "0.319.1",
|
|
59
|
+
"@wrongstack/simpleui": "0.319.1",
|
|
60
|
+
"@wrongstack/techstack": "0.319.1",
|
|
61
|
+
"@wrongstack/telegram": "0.319.1",
|
|
62
|
+
"@wrongstack/tools": "0.319.1",
|
|
63
|
+
"@wrongstack/tui": "0.319.1",
|
|
64
|
+
"@wrongstack/vector-memory": "0.319.1",
|
|
65
|
+
"@wrongstack/webui": "0.319.1",
|
|
66
|
+
"@wrongstack/webui-hq": "0.319.1",
|
|
67
|
+
"@wrongstack/webui-protocol": "0.319.1",
|
|
68
|
+
"@wrongstack/wrongtrace": "0.319.1",
|
|
69
|
+
"@wrongstack/webui-server": "0.319.1",
|
|
70
70
|
"ws": "^8.21.3"
|
|
71
71
|
},
|
|
72
72
|
"optionalDependencies": {
|
|
73
|
-
"@wrongstack/desktop": "0.319.
|
|
73
|
+
"@wrongstack/desktop": "0.319.1"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@types/node": "^26.2.0",
|
package/dist/chunk-ALE5KHCA.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=chunk-ALE5KHCA.js.map
|