@wrongstack/cli 0.300.0 → 0.301.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/{acp-IDNS2YVE.js → acp-DATHHPNT.js} +34 -15
- package/dist/acp-server-agent.d.ts +1 -1
- package/dist/{audit-2ZSFGNIF.js → audit-QRCLEHHW.js} +5 -1
- package/dist/{auth-6T6ZOT2R.js → auth-JASC4K3F.js} +150 -37
- package/dist/boot/launch-menu.d.ts +2 -4
- package/dist/boot/tool-registry.d.ts +3 -0
- package/dist/chimera-reviewer-policy.d.ts +10 -3
- package/dist/chimera-work-registry.d.ts +19 -0
- package/dist/{chronicle-QQEQFSSE.js → chronicle-63MFCZN6.js} +26 -5
- package/dist/{chunk-YWUPHRGB.js → chunk-263G3FMB.js} +33 -10
- package/dist/{chunk-GYDQABMA.js → chunk-2KDOFTTM.js} +44 -32
- package/dist/chunk-CSAPOCBP.js +24 -0
- package/dist/{chunk-N7ULWBO5.js → chunk-ETOEGL3V.js} +3 -7
- package/dist/{chunk-3MWUZMOL.js → chunk-GUHQQG63.js} +14 -3
- package/dist/chunk-KE7E7DPX.js +38 -0
- package/dist/{chunk-PEMN4T5O.js → chunk-MHF2IJDE.js} +21 -4
- package/dist/{chunk-V76R7DC5.js → chunk-O7XNGCRT.js} +311 -309
- package/dist/{chunk-DPJZQCVP.js → chunk-YMXXOOFN.js} +1 -1
- package/dist/{chunk-4WJKVQJY.js → chunk-ZECLGUTF.js} +15 -3
- package/dist/{cli-main-7B3G2YSG.js → cli-main-XWC57MGE.js} +333 -98
- package/dist/{execution-SHGM7BVC.js → execution-LHMSMDHB.js} +126 -52
- package/dist/execution-chimera-cascade.d.ts +3 -4
- package/dist/execution-chimera-review.d.ts +2 -3
- package/dist/execution-cleanup.d.ts +3 -2
- package/dist/execution.d.ts +1 -1
- package/dist/{export-TPORYVRZ.js → export-DOBGPY23.js} +12 -1
- package/dist/fleet/host-context.d.ts +1 -1
- package/dist/fleet/host-helpers.d.ts +14 -0
- package/dist/fleet/status-broadcast.d.ts +1 -1
- package/dist/{hq-DVDD4XPV.js → hq-LN5CJHCM.js} +2 -2
- package/dist/hq-server/routes.d.ts +10 -1
- package/dist/hq-server/ws.d.ts +17 -6
- package/dist/{hq-server-DQHLNHDL.js → hq-server-S7HZG3PA.js} +3 -2
- package/dist/index.js +63 -98
- package/dist/live-settings-input.d.ts +5 -0
- package/dist/{mcp-CYLPUEHC.js → mcp-OHPJH73U.js} +6 -2
- package/dist/{modeldiag-YOQZHBQV.js → modeldiag-3DOK4BWW.js} +2 -2
- package/dist/{plugin-usage-EOG4ET4S.js → plugin-usage-YEVLOR33.js} +7 -3
- package/dist/{plugins-56CMWMPR.js → plugins-K3BAUP4D.js} +3 -3
- package/dist/profile-config-path.d.ts +0 -2
- package/dist/provider-helpers.d.ts +0 -5
- package/dist/{providers-models-K6RT7ABI.js → providers-models-WEZ4EGLL.js} +6 -5
- package/dist/{replay-KCTXNMZQ.js → replay-FCBNHW3K.js} +5 -1
- package/dist/{rewind-EJMVFVLS.js → rewind-AOD3JIYX.js} +5 -1
- package/dist/{sessions-config-NLCMK3BY.js → sessions-config-XXN7267N.js} +8 -3
- package/dist/subcommands/flags.d.ts +23 -0
- package/dist/terminal-format.d.ts +15 -0
- package/dist/{webui-server-G3EKFXLL.js → webui-server-DD35QFNO.js} +5 -13
- package/dist/wiring/brain-and-orchestration.d.ts +1 -1
- package/dist/wiring/mailbox-bridge-bootstrap.d.ts +3 -1
- package/dist/wiring/management-tools.d.ts +9 -1
- package/dist/wiring/pipeline.d.ts +5 -5
- package/dist/wiring/plugins.d.ts +2 -3
- package/dist/wiring/provider-utility-tools.d.ts +1 -0
- package/dist/wiring/tools.d.ts +4 -5
- package/package.json +23 -23
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
PLUGIN_AUDIT_ENTRIES
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-GUHQQG63.js";
|
|
4
4
|
import {
|
|
5
5
|
patchConfig
|
|
6
6
|
} from "./chunk-TYO2OVAD.js";
|
|
@@ -67,6 +67,10 @@ var BUILTIN_PLUGIN_FACTORIES = [
|
|
|
67
67
|
const { createSyncPlugin } = await import("@wrongstack/core/plugin");
|
|
68
68
|
return createSyncPlugin();
|
|
69
69
|
},
|
|
70
|
+
async () => {
|
|
71
|
+
const { createCloudConfigSyncPlugin } = await import("@wrongstack/core/plugin");
|
|
72
|
+
return createCloudConfigSyncPlugin();
|
|
73
|
+
},
|
|
70
74
|
async () => {
|
|
71
75
|
const { createChimeraPlugin } = await import("@wrongstack/core/plugin");
|
|
72
76
|
return createChimeraPlugin();
|
|
@@ -143,8 +147,16 @@ async function setupPlugins(params) {
|
|
|
143
147
|
const userPlugins = [];
|
|
144
148
|
if (config.features?.plugins !== false) {
|
|
145
149
|
for (const p of config.plugins ?? []) {
|
|
146
|
-
if (typeof p === "object" && p.enabled === false) continue;
|
|
147
150
|
const spec = typeof p === "string" ? p : p.name;
|
|
151
|
+
const { enabled } = resolvePluginEnablement({
|
|
152
|
+
name: pluginNameFromSpec(spec) ?? spec,
|
|
153
|
+
aliases: [spec],
|
|
154
|
+
defaultState: "active",
|
|
155
|
+
config,
|
|
156
|
+
// The resolver already extracts an entry's name before calling this.
|
|
157
|
+
matches: (configuredName) => configuredName === spec
|
|
158
|
+
});
|
|
159
|
+
if (!enabled) continue;
|
|
148
160
|
const bareName = pluginNameFromSpec(spec);
|
|
149
161
|
if (bareName && warnIfDeprecatedPluginName(bareName, log)) {
|
|
150
162
|
continue;
|
|
@@ -250,4 +262,4 @@ export {
|
|
|
250
262
|
BUILTIN_PLUGIN_FACTORIES,
|
|
251
263
|
setupPlugins
|
|
252
264
|
};
|
|
253
|
-
//# sourceMappingURL=chunk-
|
|
265
|
+
//# sourceMappingURL=chunk-ZECLGUTF.js.map
|