@wrongstack/tools 1.0.0 → 1.0.2
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/auto-proceed-loop-guard.d.ts +1 -1
- package/dist/auto-proceed-loop-guard.js +1 -1
- package/dist/bash.js +1 -1
- package/dist/builtin.js +15 -15
- package/dist/{chunk-VVZPQPTY.js → chunk-3AU6CZWL.js} +4 -2
- package/dist/{chunk-N3K2SFEI.js → chunk-52UXXQMP.js} +1408 -200
- package/dist/{chunk-NN2SNP2R.js → chunk-6H4ERJP7.js} +137 -21
- package/dist/{chunk-DK4J2WMH.js → chunk-7XUEPBNT.js} +2 -2
- package/dist/{chunk-IYH4OHBP.js → chunk-DKHMPKDG.js} +2 -2
- package/dist/{chunk-NU2IZ72J.js → chunk-DL2ARI4S.js} +7 -5
- package/dist/{chunk-M6UV67BH.js → chunk-EL2NJXSK.js} +2 -2
- package/dist/{chunk-YEISRT4S.js → chunk-HWXIRVKH.js} +1408 -235
- package/dist/{chunk-GKSG5CPH.js → chunk-KVTEIUND.js} +2 -2
- package/dist/{chunk-GDDXX27P.js → chunk-MBR5VAB5.js} +2 -2
- package/dist/{chunk-KDEXUQY7.js → chunk-MGPR7VG3.js} +261 -258
- package/dist/{chunk-YULVUTK5.js → chunk-NFX2IUQA.js} +3 -3
- package/dist/{chunk-37QKUQ2Z.js → chunk-NL2S2CXD.js} +1 -1
- package/dist/{chunk-ZTCJCYLN.js → chunk-TI5COGLY.js} +49 -6
- package/dist/{chunk-CGXTR34H.js → chunk-TU5MTW2S.js} +2 -2
- package/dist/{chunk-AB2CAUOP.js → chunk-UCXFTCAI.js} +186 -36
- package/dist/{chunk-MK2JK35J.js → chunk-UOYRAS4J.js} +3 -3
- package/dist/{chunk-UCYQTZ7F.js → chunk-ZKC5UNGD.js} +56 -2
- package/dist/codebase-index/atlas-brief.d.ts +90 -0
- package/dist/codebase-index/atlas-export.d.ts +38 -0
- package/dist/codebase-index/atlas-projection.d.ts +114 -0
- package/dist/codebase-index/atlas-types.d.ts +90 -0
- package/dist/codebase-index/background-indexer.d.ts +15 -4
- package/dist/codebase-index/codebase-context-tool.d.ts +54 -0
- package/dist/codebase-index/concept-enrichment.d.ts +154 -0
- package/dist/codebase-index/context-retrieval.d.ts +91 -0
- package/dist/codebase-index/embedding-pass.d.ts +95 -0
- package/dist/codebase-index/graph-adjacency-cache.d.ts +36 -0
- package/dist/codebase-index/graph-rank-pass.d.ts +46 -0
- package/dist/codebase-index/graph-rank.d.ts +198 -0
- package/dist/codebase-index/index-service.d.ts +15 -1
- package/dist/codebase-index/index.d.ts +34 -19
- package/dist/codebase-index/index.js +126 -9
- package/dist/codebase-index/parser-worker-script.js +3 -3
- package/dist/codebase-index/perf-metrics.d.ts +19 -0
- package/dist/codebase-index/project-server-protocol.d.ts +2 -0
- package/dist/codebase-index/project-server-query-cache.d.ts +4 -0
- package/dist/codebase-index/project-server.js +54 -7
- package/dist/codebase-index/repo-map-fallback.d.ts +18 -0
- package/dist/codebase-index/repo-map-render.d.ts +42 -0
- package/dist/codebase-index/repo-map-types.d.ts +21 -0
- package/dist/codebase-index/repo-map.d.ts +28 -16
- package/dist/codebase-index/schema.d.ts +20 -0
- package/dist/codebase-index/worker-protocol.d.ts +47 -1
- package/dist/codebase-index/worker.js +11 -5
- package/dist/codebase-index/writer-concepts.d.ts +84 -0
- package/dist/codebase-index/writer-graph-decorate.d.ts +30 -0
- package/dist/codebase-index/writer-graph-reader.d.ts +22 -0
- package/dist/codebase-index/writer-rank.d.ts +78 -0
- package/dist/codebase-index/writer-schema.d.ts +51 -0
- package/dist/codebase-index/writer-vectors.d.ts +53 -0
- package/dist/codebase-index/writer.d.ts +59 -0
- package/dist/edit.js +7 -7
- package/dist/exec.js +1 -1
- package/dist/{go-parser-D7ELWQ7F.js → go-parser-QIEXU3P2.js} +4 -2
- package/dist/index.d.ts +48 -48
- package/dist/index.js +43 -19
- package/dist/pack.js +16 -16
- package/dist/{parser-dispatch-BDVCJXTV.js → parser-dispatch-37FT3EXQ.js} +4 -4
- package/dist/patch.js +7 -7
- package/dist/{py-parser-QC6MR4GB.js → py-parser-6GJTGUXK.js} +3 -3
- package/dist/read.js +7 -7
- package/dist/replace.js +7 -7
- package/dist/tool-tier.js +17 -17
- package/dist/write.js +7 -7
- package/package.json +5 -5
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* on every reply — which happens whenever the model's output is stable but
|
|
10
10
|
* autonomy treats the next step as "still actionable" — the loop self-feeds
|
|
11
11
|
* the same instruction 2–3 times in a row before the longer
|
|
12
|
-
* `autoProceedMaxIterations` cap (default
|
|
12
|
+
* `autoProceedMaxIterations` cap (default 0 = unlimited) trips.
|
|
13
13
|
*
|
|
14
14
|
* The user reports the visible symptom: the same response, including the same
|
|
15
15
|
* `<nextsteps>` block, repeats. Manual input from the user is the only thing
|
package/dist/bash.js
CHANGED
package/dist/builtin.js
CHANGED
|
@@ -6,9 +6,9 @@ import {
|
|
|
6
6
|
TIER2_TOOLS,
|
|
7
7
|
TIER3_TOOLS,
|
|
8
8
|
builtinTools
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-UCXFTCAI.js";
|
|
10
10
|
import "./chunk-RV7BVTDG.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-HWXIRVKH.js";
|
|
12
12
|
import "./chunk-XRNN44QY.js";
|
|
13
13
|
import "./chunk-5KS24LTS.js";
|
|
14
14
|
import "./chunk-LQSOU63Z.js";
|
|
@@ -25,7 +25,7 @@ import "./chunk-VU3QBYL4.js";
|
|
|
25
25
|
import "./chunk-CHEK3ASV.js";
|
|
26
26
|
import "./chunk-KLJZ4WV4.js";
|
|
27
27
|
import "./chunk-AQ5YBURX.js";
|
|
28
|
-
import "./chunk-
|
|
28
|
+
import "./chunk-TU5MTW2S.js";
|
|
29
29
|
import "./chunk-VZGPASGD.js";
|
|
30
30
|
import "./chunk-7HL23T3T.js";
|
|
31
31
|
import "./chunk-JDOO4P6Z.js";
|
|
@@ -35,13 +35,13 @@ import "./chunk-4WPBS45A.js";
|
|
|
35
35
|
import "./chunk-T3SMFF5Q.js";
|
|
36
36
|
import "./chunk-7N5U2RAU.js";
|
|
37
37
|
import "./chunk-DRRY6SCM.js";
|
|
38
|
-
import "./chunk-
|
|
38
|
+
import "./chunk-DKHMPKDG.js";
|
|
39
39
|
import "./chunk-ASEXQRA7.js";
|
|
40
40
|
import "./chunk-4ERMPDHV.js";
|
|
41
41
|
import "./chunk-YJTXRH5Y.js";
|
|
42
42
|
import "./chunk-ZBMANLYH.js";
|
|
43
|
-
import "./chunk-
|
|
44
|
-
import "./chunk-
|
|
43
|
+
import "./chunk-6H4ERJP7.js";
|
|
44
|
+
import "./chunk-MGPR7VG3.js";
|
|
45
45
|
import "./chunk-BTSFTGIL.js";
|
|
46
46
|
import "./chunk-PVCB7RUZ.js";
|
|
47
47
|
import "./chunk-SCMRM6NL.js";
|
|
@@ -54,17 +54,17 @@ import "./chunk-FBUP524S.js";
|
|
|
54
54
|
import "./chunk-SMARDKAC.js";
|
|
55
55
|
import "./chunk-X6KXNHUO.js";
|
|
56
56
|
import "./chunk-SOR7OCYP.js";
|
|
57
|
-
import "./chunk-
|
|
58
|
-
import "./chunk-
|
|
59
|
-
import "./chunk-
|
|
57
|
+
import "./chunk-UOYRAS4J.js";
|
|
58
|
+
import "./chunk-KVTEIUND.js";
|
|
59
|
+
import "./chunk-7XUEPBNT.js";
|
|
60
60
|
import "./chunk-MSOAX3GC.js";
|
|
61
|
-
import "./chunk-
|
|
62
|
-
import "./chunk-
|
|
63
|
-
import "./chunk-
|
|
64
|
-
import "./chunk-
|
|
65
|
-
import "./chunk-
|
|
61
|
+
import "./chunk-TI5COGLY.js";
|
|
62
|
+
import "./chunk-MBR5VAB5.js";
|
|
63
|
+
import "./chunk-52UXXQMP.js";
|
|
64
|
+
import "./chunk-DL2ARI4S.js";
|
|
65
|
+
import "./chunk-3AU6CZWL.js";
|
|
66
66
|
import "./chunk-6IEBD27U.js";
|
|
67
|
-
import "./chunk-
|
|
67
|
+
import "./chunk-ZKC5UNGD.js";
|
|
68
68
|
import "./chunk-YOHO4DVT.js";
|
|
69
69
|
import "./chunk-2CTZW6JQ.js";
|
|
70
70
|
import "./chunk-KE7A76VC.js";
|
|
@@ -3,8 +3,9 @@ import {
|
|
|
3
3
|
} from "./chunk-6IEBD27U.js";
|
|
4
4
|
import {
|
|
5
5
|
parseParserOutput,
|
|
6
|
+
recordParserSubprocess,
|
|
6
7
|
withSpawnGate
|
|
7
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-ZKC5UNGD.js";
|
|
8
9
|
import {
|
|
9
10
|
resolveWin32Command
|
|
10
11
|
} from "./chunk-KE7A76VC.js";
|
|
@@ -306,6 +307,7 @@ function commandIsAvailable(command) {
|
|
|
306
307
|
function spawnPyParser(pyBinary, scriptPath, filePath, content) {
|
|
307
308
|
return new Promise((resolve, reject) => {
|
|
308
309
|
let settled = false;
|
|
310
|
+
recordParserSubprocess();
|
|
309
311
|
const proc = spawn(pyBinary, [scriptPath, filePath], {
|
|
310
312
|
stdio: ["pipe", "pipe", "pipe"],
|
|
311
313
|
windowsHide: true
|
|
@@ -382,4 +384,4 @@ export {
|
|
|
382
384
|
parseSymbols,
|
|
383
385
|
resolvePythonBinary
|
|
384
386
|
};
|
|
385
|
-
//# sourceMappingURL=chunk-
|
|
387
|
+
//# sourceMappingURL=chunk-3AU6CZWL.js.map
|