@wrongstack/core 0.68.0 → 0.77.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/{agent-bridge-D-j6OOBT.d.ts → agent-bridge-EWdqs8v6.d.ts} +1 -1
- package/dist/{agent-subagent-runner-DRZ9-NnR.d.ts → agent-subagent-runner-D8qW8OSC.d.ts} +13 -5
- package/dist/{config--86aHSln.d.ts → config-Dy0CK_o6.d.ts} +44 -1
- package/dist/coordination/index.d.ts +10 -10
- package/dist/coordination/index.js +74 -10
- package/dist/coordination/index.js.map +1 -1
- package/dist/defaults/index.d.ts +17 -17
- package/dist/defaults/index.js +160 -67
- package/dist/defaults/index.js.map +1 -1
- package/dist/{events-CIplI98R.d.ts → events-CYaoLN5_.d.ts} +45 -0
- package/dist/execution/index.d.ts +9 -9
- package/dist/execution/index.js +4 -4
- package/dist/execution/index.js.map +1 -1
- package/dist/extension/index.d.ts +5 -5
- package/dist/{index-b5uhfTSl.d.ts → index-DIxjTOga.d.ts} +6 -6
- package/dist/{index-DKUvyTvV.d.ts → index-Dsda0uCn.d.ts} +4 -4
- package/dist/index.d.ts +108 -33
- package/dist/index.js +388 -58
- package/dist/index.js.map +1 -1
- package/dist/infrastructure/index.d.ts +5 -5
- package/dist/infrastructure/index.js +16 -2
- package/dist/infrastructure/index.js.map +1 -1
- package/dist/kernel/index.d.ts +7 -7
- package/dist/kernel/index.js.map +1 -1
- package/dist/{logger-bOzkF5LL.d.ts → logger-BppKxDqZ.d.ts} +9 -0
- package/dist/{mcp-servers-DwoNBf6r.d.ts → mcp-servers-T0O6UN_w.d.ts} +1 -1
- package/dist/{mode-CV077NjV.d.ts → mode-BO4SEUIv.d.ts} +7 -0
- package/dist/models/index.d.ts +1 -1
- package/dist/models/index.js +18 -9
- package/dist/models/index.js.map +1 -1
- package/dist/{multi-agent-coordinator-CWnH-CiX.d.ts → multi-agent-coordinator-DpbG3wiy.d.ts} +1 -1
- package/dist/{null-fleet-bus-CuN0ObJr.d.ts → null-fleet-bus-u5ys3lW_.d.ts} +28 -9
- package/dist/observability/index.d.ts +1 -1
- package/dist/{parallel-eternal-engine-0UwotoSx.d.ts → parallel-eternal-engine-Dn0P8Pbj.d.ts} +3 -3
- package/dist/{path-resolver-DVkEcIw8.d.ts → path-resolver-B32v2JIq.d.ts} +1 -1
- package/dist/{permission-C1A5whY5.d.ts → permission-V5BLOrY6.d.ts} +0 -4
- package/dist/{permission-policy-B2dK-T5N.d.ts → permission-policy-CBVx-d-8.d.ts} +1 -5
- package/dist/{plan-templates-Bprrzhbu.d.ts → plan-templates-BcUwLlMQ.d.ts} +8 -3
- package/dist/{provider-runner-mXvXGSIw.d.ts → provider-runner-CSi_7l0h.d.ts} +1 -1
- package/dist/sdd/index.d.ts +6 -6
- package/dist/sdd/index.js +3 -3
- package/dist/sdd/index.js.map +1 -1
- package/dist/security/index.d.ts +2 -2
- package/dist/security/index.js +0 -8
- package/dist/security/index.js.map +1 -1
- package/dist/skills/index.js +1 -0
- package/dist/skills/index.js.map +1 -1
- package/dist/storage/index.d.ts +4 -4
- package/dist/storage/index.js +48 -8
- package/dist/storage/index.js.map +1 -1
- package/dist/{system-prompt-b61lOd49.d.ts → system-prompt-CA11g6Jo.d.ts} +1 -1
- package/dist/types/index.d.ts +14 -14
- package/dist/types/index.js +35 -12
- package/dist/types/index.js.map +1 -1
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/index.js +14 -3
- package/dist/utils/index.js.map +1 -1
- package/dist/{wstack-paths-eMXnY1_X.d.ts → wstack-paths-D7evAFWM.d.ts} +8 -1
- package/package.json +1 -1
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { N as TodoItem, M as Message, J as JSONSchema } from '../context-y87Jc5ei.js';
|
|
2
|
-
export { W as WstackPathOptions, a as WstackPaths, p as projectHash, r as resolveWstackPaths } from '../wstack-paths-
|
|
2
|
+
export { W as WstackPathOptions, a as WstackPaths, p as projectHash, b as projectSlug, r as resolveWstackPaths } from '../wstack-paths-D7evAFWM.js';
|
|
3
3
|
import { M as ModelsDevPayload } from '../models-registry-BcYJDKLm.js';
|
|
4
|
-
import { k as CustomModelDefinition } from '../config
|
|
4
|
+
import { k as CustomModelDefinition } from '../config-Dy0CK_o6.js';
|
|
5
5
|
|
|
6
6
|
interface AtomicWriteOptions {
|
|
7
7
|
mode?: number;
|
package/dist/utils/index.js
CHANGED
|
@@ -535,11 +535,20 @@ function unifiedDiff(oldText, newText, opts = {}) {
|
|
|
535
535
|
function projectHash(absRoot) {
|
|
536
536
|
return createHash("sha256").update(path2.resolve(absRoot)).digest("hex").slice(0, 12);
|
|
537
537
|
}
|
|
538
|
+
function projectSlug(absRoot) {
|
|
539
|
+
const base = slugify(path2.basename(absRoot));
|
|
540
|
+
const hash = createHash("sha256").update(path2.resolve(absRoot)).digest("hex").slice(0, 6);
|
|
541
|
+
return `${base}-${hash}`;
|
|
542
|
+
}
|
|
543
|
+
function slugify(name) {
|
|
544
|
+
return name.toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-+|-+$/g, "").slice(0, 40) || "project";
|
|
545
|
+
}
|
|
538
546
|
function resolveWstackPaths(opts) {
|
|
539
547
|
const home = opts.userHome ?? os.homedir();
|
|
540
548
|
const globalRoot = opts.globalRoot ?? path2.join(home, ".wrongstack");
|
|
541
549
|
const hash = projectHash(opts.projectRoot);
|
|
542
|
-
const
|
|
550
|
+
const slug = projectSlug(opts.projectRoot);
|
|
551
|
+
const projectDir = path2.join(globalRoot, "projects", slug);
|
|
543
552
|
return {
|
|
544
553
|
globalRoot,
|
|
545
554
|
configDir: globalRoot,
|
|
@@ -564,6 +573,7 @@ function resolveWstackPaths(opts) {
|
|
|
564
573
|
inProjectSkills: path2.join(opts.projectRoot, ".wrongstack", "skills"),
|
|
565
574
|
inProjectWorktrees: path2.join(opts.projectRoot, ".wrongstack", "worktrees"),
|
|
566
575
|
projectHash: hash,
|
|
576
|
+
projectSlug: slug,
|
|
567
577
|
projectGoal: path2.join(projectDir, "goal.json"),
|
|
568
578
|
projectSpecs: path2.join(projectDir, "specs"),
|
|
569
579
|
projectTaskGraphs: path2.join(projectDir, "task-graphs"),
|
|
@@ -1071,7 +1081,8 @@ function isGlob(p) {
|
|
|
1071
1081
|
return false;
|
|
1072
1082
|
}
|
|
1073
1083
|
function globToRegex(pat) {
|
|
1074
|
-
let i = 0
|
|
1084
|
+
let i = 0;
|
|
1085
|
+
let re = "^";
|
|
1075
1086
|
while (i < pat.length) {
|
|
1076
1087
|
const c = pat[i];
|
|
1077
1088
|
if (c === "*") {
|
|
@@ -1345,6 +1356,6 @@ function mergeCustomModelDefs(providerCustomModels, configModels) {
|
|
|
1345
1356
|
return out;
|
|
1346
1357
|
}
|
|
1347
1358
|
|
|
1348
|
-
export { atomicWrite, buildChildEnv, color, compileGlob, compileUserRegex, completePartialObject, createToolOutputSerializer, detectNewlineStyle, ensureDir, estimateRequestTokens, estimateRequestTokensCalibrated, estimateTextTokens, estimateToolDefTokens, estimateToolInputTokens, estimateToolResultTokens, expandGlob, formatTodosList, getCalibrationState, getTermSize, isInteractive, isStdinTTY, isStdoutTTY, matchAny, matchGlob, mergeCustomModelDefs, mergeModelsPayload, normalizeToLf, onResize, projectHash, recordActualUsage, repairToolUseAdjacency, resetCalibration, resolveWstackPaths, safeParse, safeStringify, sanitizeJsonString, setRawMode, stripAnsi, toStyle, unifiedDiff, validateAgainstSchema, writeErr, writeOut };
|
|
1359
|
+
export { atomicWrite, buildChildEnv, color, compileGlob, compileUserRegex, completePartialObject, createToolOutputSerializer, detectNewlineStyle, ensureDir, estimateRequestTokens, estimateRequestTokensCalibrated, estimateTextTokens, estimateToolDefTokens, estimateToolInputTokens, estimateToolResultTokens, expandGlob, formatTodosList, getCalibrationState, getTermSize, isInteractive, isStdinTTY, isStdoutTTY, matchAny, matchGlob, mergeCustomModelDefs, mergeModelsPayload, normalizeToLf, onResize, projectHash, projectSlug, recordActualUsage, repairToolUseAdjacency, resetCalibration, resolveWstackPaths, safeParse, safeStringify, sanitizeJsonString, setRawMode, stripAnsi, toStyle, unifiedDiff, validateAgainstSchema, writeErr, writeOut };
|
|
1349
1360
|
//# sourceMappingURL=index.js.map
|
|
1350
1361
|
//# sourceMappingURL=index.js.map
|