@wrongstack/tools 1.0.1 → 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/builtin.js +13 -13
- package/dist/{chunk-VVZPQPTY.js → chunk-3AU6CZWL.js} +4 -2
- package/dist/{chunk-N3K2SFEI.js → chunk-52UXXQMP.js} +1408 -200
- 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-E7JE3UEX.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-7LQCT3LT.js → chunk-NFX2IUQA.js} +3 -3
- package/dist/{chunk-ZTCJCYLN.js → chunk-TI5COGLY.js} +49 -6
- package/dist/{chunk-CGXTR34H.js → chunk-TU5MTW2S.js} +2 -2
- package/dist/{chunk-IAYMTTR2.js → chunk-UCXFTCAI.js} +12 -8
- 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/{go-parser-D7ELWQ7F.js → go-parser-QIEXU3P2.js} +4 -2
- package/dist/index.d.ts +48 -48
- package/dist/index.js +40 -16
- package/dist/pack.js +14 -14
- 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 +15 -15
- package/dist/write.js +7 -7
- package/package.json +5 -5
|
@@ -16,6 +16,57 @@ export declare const LANG_FAMILY_TABLE_SQL = "\n CREATE TABLE IF NOT EXISTS lan
|
|
|
16
16
|
/** Family value that matches every symbol family, used by language-less refs. */
|
|
17
17
|
export declare const LANG_FAMILY_WILDCARD = "*";
|
|
18
18
|
export declare const SYMBOLS_FTS_SQL = "CREATE VIRTUAL TABLE IF NOT EXISTS symbols_fts USING fts5(text, tokenize = 'trigram')";
|
|
19
|
+
/**
|
|
20
|
+
* Graph centrality, computed at index time by `graph-rank.ts` once every ref
|
|
21
|
+
* has its final `to_id` / `to_file`. Two tables rather than columns on
|
|
22
|
+
* `symbols` / `files` so the whole layer is additive: an index written by an
|
|
23
|
+
* older build simply has empty rank tables, and `SCHEMA_VERSION` stays put
|
|
24
|
+
* (a bump drops and rebuilds the entire index — see `initIndexSchema`).
|
|
25
|
+
*
|
|
26
|
+
* `rank` is max-normalised to 1.0 across the run, so scores are comparable
|
|
27
|
+
* within one index but never across two.
|
|
28
|
+
*/
|
|
29
|
+
export declare const RANK_TABLES_SQL = "\n CREATE TABLE IF NOT EXISTS symbol_rank (\n symbol_id INTEGER PRIMARY KEY,\n rank REAL NOT NULL,\n in_deg INTEGER NOT NULL DEFAULT 0,\n out_deg INTEGER NOT NULL DEFAULT 0\n );\n CREATE TABLE IF NOT EXISTS file_rank (\n file TEXT PRIMARY KEY,\n rank REAL NOT NULL,\n in_deg INTEGER NOT NULL DEFAULT 0,\n out_deg INTEGER NOT NULL DEFAULT 0\n );\n";
|
|
30
|
+
export declare const RANK_INDEX_SQL: readonly ['CREATE INDEX IF NOT EXISTS idx_sr_rank ON symbol_rank(rank DESC)', 'CREATE INDEX IF NOT EXISTS idx_fr_rank ON file_rank(rank DESC)'];
|
|
31
|
+
/**
|
|
32
|
+
* Concept layer — plain-English descriptions of what code is *for*, which the
|
|
33
|
+
* structural index cannot express. Symbol names and signatures answer "what is
|
|
34
|
+
* declared"; they cannot answer "where do we back off after a 429".
|
|
35
|
+
*
|
|
36
|
+
* Populated by an optional, explicitly enabled LLM pass. Additive like the rank
|
|
37
|
+
* tables: an index without the pass simply has empty concept tables, and every
|
|
38
|
+
* consumer treats a missing summary as "not described yet" rather than an error.
|
|
39
|
+
*
|
|
40
|
+
* `content_hash` mirrors `files.content_hash`, and is the cache key that keeps
|
|
41
|
+
* the pass affordable — a file whose bytes have not changed is never re-sent to
|
|
42
|
+
* a model. `state` distinguishes a summary that matches the current bytes
|
|
43
|
+
* (`ready`) from one describing an older version (`stale`, still useful as a
|
|
44
|
+
* hint) and one not yet produced (`pending`).
|
|
45
|
+
*
|
|
46
|
+
* `crux_start`/`crux_end` point at the few lines that actually carry the file's
|
|
47
|
+
* meaning. A summary can drift from the truth; a pointer into the source cannot.
|
|
48
|
+
*/
|
|
49
|
+
export declare const CONCEPT_TABLES_SQL = "\n CREATE TABLE IF NOT EXISTS file_concepts (\n file TEXT PRIMARY KEY,\n content_hash TEXT NOT NULL DEFAULT '',\n summary TEXT NOT NULL DEFAULT '',\n crux_start INTEGER,\n crux_end INTEGER,\n state TEXT NOT NULL DEFAULT 'pending',\n model TEXT NOT NULL DEFAULT '',\n updated_at INTEGER NOT NULL DEFAULT 0\n );\n CREATE TABLE IF NOT EXISTS subsystems (\n id TEXT PRIMARY KEY,\n name TEXT NOT NULL,\n summary TEXT NOT NULL DEFAULT '',\n member_files TEXT NOT NULL DEFAULT '[]',\n model TEXT NOT NULL DEFAULT '',\n updated_at INTEGER NOT NULL DEFAULT 0\n );\n CREATE TABLE IF NOT EXISTS concept_edges (\n from_id TEXT NOT NULL,\n to_id TEXT NOT NULL,\n relation TEXT NOT NULL,\n PRIMARY KEY (from_id, to_id, relation)\n );\n";
|
|
50
|
+
/**
|
|
51
|
+
* Semantic embeddings, one per file.
|
|
52
|
+
*
|
|
53
|
+
* **Per file, not per symbol.** Embedding a bare signature — `function
|
|
54
|
+
* resolve(id: string): Widget` — captures almost nothing a lexical index does
|
|
55
|
+
* not already have. What carries meaning is the concept layer's description of
|
|
56
|
+
* what the file is *for*, so that is what gets embedded. It is also eight
|
|
57
|
+
* times cheaper on this repository: 8k files against 66k symbols.
|
|
58
|
+
*
|
|
59
|
+
* `source_hash` is a hash of the exact text that was embedded, so a changed
|
|
60
|
+
* summary re-embeds and an unchanged one never does. `provider` records which
|
|
61
|
+
* model produced the vector; vectors from a different model are not comparable,
|
|
62
|
+
* so a provider change invalidates the whole table rather than silently mixing
|
|
63
|
+
* two vector spaces.
|
|
64
|
+
*
|
|
65
|
+
* Separate from `symbol_vectors`, which stores the older synchronous
|
|
66
|
+
* char-trigram vectors and stays behind its own gate.
|
|
67
|
+
*/
|
|
68
|
+
export declare const FILE_VECTORS_TABLE_SQL = "\n CREATE TABLE IF NOT EXISTS file_vectors (\n file TEXT PRIMARY KEY,\n vector BLOB NOT NULL,\n source_hash TEXT NOT NULL DEFAULT '',\n provider TEXT NOT NULL DEFAULT ''\n );\n";
|
|
69
|
+
export declare const CONCEPT_INDEX_SQL: readonly ['CREATE INDEX IF NOT EXISTS idx_fc_state ON file_concepts(state)', 'CREATE INDEX IF NOT EXISTS idx_ce_from ON concept_edges(from_id)'];
|
|
19
70
|
/**
|
|
20
71
|
* Phase 3: stores 384-dimensional float32 embedding vectors for each symbol.
|
|
21
72
|
* Vectors are computed from the symbol's indexable text (name + signature +
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Persistence for file-level semantic embeddings (`file_vectors`).
|
|
3
|
+
*
|
|
4
|
+
* Vectors from two different models are not comparable — the spaces have
|
|
5
|
+
* nothing to do with each other — so the provider id is stored alongside every
|
|
6
|
+
* row and a provider change wipes the table rather than silently mixing them.
|
|
7
|
+
*/
|
|
8
|
+
import type { DatabaseSync } from 'node:sqlite';
|
|
9
|
+
type Statement = ReturnType<DatabaseSync['prepare']>;
|
|
10
|
+
type PrepareStatement = (sql: string) => Statement;
|
|
11
|
+
/** Metadata key recording which provider produced the stored vectors. */
|
|
12
|
+
export declare const FILE_VECTOR_PROVIDER_KEY = "file_vector_provider";
|
|
13
|
+
export interface FileVectorRow {
|
|
14
|
+
file: string;
|
|
15
|
+
vector: Float32Array;
|
|
16
|
+
/** Hash of the exact text that was embedded. */
|
|
17
|
+
sourceHash: string;
|
|
18
|
+
provider: string;
|
|
19
|
+
}
|
|
20
|
+
/** What is already embedded, so a pass can skip unchanged text. */
|
|
21
|
+
export interface FileVectorState {
|
|
22
|
+
file: string;
|
|
23
|
+
sourceHash: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function getFileVectorStatesWithStatement(stmt: PrepareStatement, provider: string): Map<string, string>;
|
|
26
|
+
export declare function upsertFileVectorsWithStatement(stmt: PrepareStatement, maxSqlVars: number, rows: readonly FileVectorRow[]): void;
|
|
27
|
+
/**
|
|
28
|
+
* Drop every stored vector when the provider changes.
|
|
29
|
+
*
|
|
30
|
+
* Returns true when a wipe happened, so the caller can report that the next
|
|
31
|
+
* pass is a full re-embed rather than an incremental one.
|
|
32
|
+
*/
|
|
33
|
+
export declare function reconcileVectorProviderWithStatement(stmt: PrepareStatement, getMetadata: (key: string) => string | undefined, setMetadata: (key: string, value: string) => void, provider: string): boolean;
|
|
34
|
+
/** Vectors dropped for files no longer indexed. */
|
|
35
|
+
export declare function pruneOrphanFileVectorsWithStatement(stmt: PrepareStatement): number;
|
|
36
|
+
export declare function countFileVectorsWithStatement(stmt: PrepareStatement): number;
|
|
37
|
+
export interface VectorHit {
|
|
38
|
+
file: string;
|
|
39
|
+
/** Cosine similarity in [-1, 1]. */
|
|
40
|
+
score: number;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Rank every stored vector against `query` and return the closest files.
|
|
44
|
+
*
|
|
45
|
+
* A brute-force scan, deliberately: at file granularity this repository has
|
|
46
|
+
* roughly eight thousand vectors of 384 floats, which is about twelve
|
|
47
|
+
* megabytes and a few milliseconds to sweep. An approximate-nearest-neighbour
|
|
48
|
+
* index would add a dependency and an accuracy cliff to save time nobody is
|
|
49
|
+
* waiting on.
|
|
50
|
+
*/
|
|
51
|
+
export declare function searchFileVectorsWithStatement(stmt: PrepareStatement, query: Float32Array, limit: number, minScore: number): VectorHit[];
|
|
52
|
+
export {};
|
|
53
|
+
//# sourceMappingURL=writer-vectors.d.ts.map
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
import type { FileRankRow, SymbolRankRow } from './graph-rank.js';
|
|
1
2
|
import type { CallSite, CodeMapGraph, FileMeta, IndexStats, Symbol as IndexSymbol, Ref, SearchResult, SymbolKind, SymbolLang } from './schema.js';
|
|
2
3
|
import { type IndexSummary } from './writer-admin.js';
|
|
4
|
+
import type { ConceptCoverage, ConceptEdge, FileConcept, Subsystem } from './writer-concepts.js';
|
|
5
|
+
import type { RankedFileRow } from './writer-rank.js';
|
|
3
6
|
import type { WriterSearchFilter } from './writer-search-helpers.js';
|
|
4
7
|
import { StorePool } from './writer-store-pool.js';
|
|
8
|
+
import type { FileVectorRow, VectorHit } from './writer-vectors.js';
|
|
5
9
|
export { codebaseIndexDirOverride, resolveIndexDir } from './writer-helpers.js';
|
|
6
10
|
export { StorePool } from './writer-store-pool.js';
|
|
7
11
|
export declare class IndexStore {
|
|
@@ -171,11 +175,66 @@ export declare class IndexStore {
|
|
|
171
175
|
kind: SymbolKind;
|
|
172
176
|
line: number;
|
|
173
177
|
}>;
|
|
178
|
+
/** Declarations in one file, in source order. */
|
|
179
|
+
getFileSymbols(file: string, limit: number): Array<{
|
|
180
|
+
id: number;
|
|
181
|
+
name: string;
|
|
182
|
+
kind: string;
|
|
183
|
+
line: number;
|
|
184
|
+
signature: string;
|
|
185
|
+
}>;
|
|
186
|
+
/** Declarations behind an arbitrary id list, for the retrieval walk. */
|
|
187
|
+
getSymbolsByIds(ids: readonly number[]): Array<{
|
|
188
|
+
id: number;
|
|
189
|
+
name: string;
|
|
190
|
+
kind: string;
|
|
191
|
+
lang: string;
|
|
192
|
+
file: string;
|
|
193
|
+
line: number;
|
|
194
|
+
signature: string;
|
|
195
|
+
scope: string;
|
|
196
|
+
}>;
|
|
174
197
|
getAllResolvedRefs(): Array<{
|
|
175
198
|
fromId: number;
|
|
176
199
|
toId: number;
|
|
177
200
|
callType: string;
|
|
178
201
|
}>;
|
|
202
|
+
/**
|
|
203
|
+
* Replace both rank tables in one write. Called once per index run, after
|
|
204
|
+
* ref resolution has settled — a rank computed against half-resolved refs
|
|
205
|
+
* would describe a graph that never existed.
|
|
206
|
+
*/
|
|
207
|
+
replaceRanks(symbols: readonly SymbolRankRow[], files: readonly FileRankRow[]): void;
|
|
208
|
+
/** Wipe stored vectors when the embedding model changed. */
|
|
209
|
+
reconcileVectorProvider(provider: string): boolean;
|
|
210
|
+
getFileVectorStates(provider: string): Map<string, string>;
|
|
211
|
+
upsertFileVectors(rows: readonly FileVectorRow[]): void;
|
|
212
|
+
pruneOrphanFileVectors(): number;
|
|
213
|
+
countFileVectors(): number;
|
|
214
|
+
searchFileVectors(query: Float32Array, limit: number, minScore: number): VectorHit[];
|
|
215
|
+
upsertFileConcept(concept: FileConcept): void;
|
|
216
|
+
getFileConcept(file: string): FileConcept | undefined;
|
|
217
|
+
getAllFileConcepts(): FileConcept[];
|
|
218
|
+
getReadyConceptSummaries(): Map<string, string>;
|
|
219
|
+
getConceptCoverage(): ConceptCoverage;
|
|
220
|
+
/** Flag summaries whose file has changed since they were written. */
|
|
221
|
+
markStaleConcepts(): number;
|
|
222
|
+
/** Drop summaries for files that are no longer indexed. */
|
|
223
|
+
pruneOrphanConcepts(): number;
|
|
224
|
+
replaceSubsystems(subsystems: readonly Subsystem[], edges: readonly ConceptEdge[]): void;
|
|
225
|
+
getSubsystems(): Subsystem[];
|
|
226
|
+
getConceptEdges(): ConceptEdge[];
|
|
227
|
+
getPackageFileCounts(): Map<string, number>;
|
|
228
|
+
getRankedFiles(limit: number): RankedFileRow[];
|
|
229
|
+
getTopFileRanks(limit: number): FileRankRow[];
|
|
230
|
+
getTopSymbolRanks(limit: number): SymbolRankRow[];
|
|
231
|
+
getFileRankMap(): Map<string, number>;
|
|
232
|
+
getRankCounts(): {
|
|
233
|
+
symbols: number;
|
|
234
|
+
files: number;
|
|
235
|
+
};
|
|
236
|
+
getSymbolNameCandidates(): Map<number, number>;
|
|
237
|
+
getImportVisibility(): Map<string, Set<string>>;
|
|
179
238
|
getAllImportRefs(): Array<{
|
|
180
239
|
sourceFile: string | null;
|
|
181
240
|
toName: string;
|
package/dist/edit.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
editTool
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-7XUEPBNT.js";
|
|
4
4
|
import "./chunk-MSOAX3GC.js";
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-TI5COGLY.js";
|
|
6
|
+
import "./chunk-MBR5VAB5.js";
|
|
7
|
+
import "./chunk-52UXXQMP.js";
|
|
8
|
+
import "./chunk-DL2ARI4S.js";
|
|
9
|
+
import "./chunk-3AU6CZWL.js";
|
|
10
10
|
import "./chunk-6IEBD27U.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-ZKC5UNGD.js";
|
|
12
12
|
import "./chunk-YOHO4DVT.js";
|
|
13
13
|
import "./chunk-2CTZW6JQ.js";
|
|
14
14
|
import "./chunk-KE7A76VC.js";
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
parseParserOutput,
|
|
3
|
+
recordParserSubprocess,
|
|
3
4
|
withSpawnGate
|
|
4
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-ZKC5UNGD.js";
|
|
5
6
|
import {
|
|
6
7
|
detectLang
|
|
7
8
|
} from "./chunk-YOHO4DVT.js";
|
|
@@ -408,6 +409,7 @@ async function syncGoParse(filePath, content, lang) {
|
|
|
408
409
|
const goResult = await new Promise(
|
|
409
410
|
(resolve, reject) => {
|
|
410
411
|
let settled = false;
|
|
412
|
+
recordParserSubprocess();
|
|
411
413
|
const proc = spawn(goBinary, ["run", scriptPath], {
|
|
412
414
|
stdio: ["pipe", "pipe", "pipe"],
|
|
413
415
|
windowsHide: true
|
|
@@ -466,4 +468,4 @@ export {
|
|
|
466
468
|
detectLang,
|
|
467
469
|
parseSymbols
|
|
468
470
|
};
|
|
469
|
-
//# sourceMappingURL=go-parser-
|
|
471
|
+
//# sourceMappingURL=go-parser-QIEXU3P2.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
|
+
export { mapWithConcurrency } from './_concurrency.js';
|
|
1
2
|
export { type DangerAssessment, type DangerLevel, type DangerRule, detectDanger, } from './_danger-detect.js';
|
|
3
|
+
export { type CompileFail, type CompileResult, capSubject, compileUserRegex, MAX_SUBJECT_LEN, } from './_regex.js';
|
|
2
4
|
export { type EnsureSessionShellOptions, ensureSessionShell, normalizeShell, type ResolveSessionShellDeps, resolveSessionShell, } from './_session-shell.js';
|
|
3
5
|
export type { BashShell } from './_shell-pick.js';
|
|
4
|
-
export {
|
|
6
|
+
export { checkSyntax, type SyntaxCheckResult, } from './_syntax-check.js';
|
|
7
|
+
export { type AuditContext, type AuditInput, type AuditOutput, type AuditVulnerability, auditTool, } from './audit.js';
|
|
5
8
|
export { type AutoProceedLoopGuard, createAutoProceedLoopGuard, GROUNDED_NO_PROGRESS_STEER, type GroundedRepetitionAction, type GroundedRepetitionSignal, type LoopGuardOptions, normalizeForRepetition, type RepetitionSignal, } from './auto-proceed-loop-guard.js';
|
|
6
|
-
export {
|
|
9
|
+
export { type BashInput, type BashOutput, bashTool, } from './bash.js';
|
|
7
10
|
export { checkAndBlockKillCommand, type KillCheckResult, type KillCommand, } from './bash-kill-guard.js';
|
|
8
|
-
export {
|
|
11
|
+
export { type BatchToolUseInput, type BatchToolUseOutput, batchToolUseTool, } from './batch-tool-use.js';
|
|
9
12
|
export * from './browser/index.js';
|
|
10
13
|
export { builtinTools, OFF_ONLY_TOOLS, OPTIONAL_TOOLS, TIER1_TOOLS, TIER2_TOOLS, TIER3_TOOLS, } from './builtin.js';
|
|
11
14
|
export { type BreakerState, CircuitBreaker, type CircuitBreakerConfig, type CircuitBreakerSnapshot, } from './circuit-breaker.js';
|
|
12
|
-
export
|
|
13
|
-
export {
|
|
14
|
-
export { CircuitOpenError, cancelPendingReindexes, checkCodebaseIndexServerHealth, codebaseAstReplaceTool, codebaseImpactAnalysisTool, codebaseIncomingCallsTool, codebaseIndexStats, codebaseIndexTool, codebaseInvariantCheckTool, codebaseOutgoingCallsTool, codebaseRepoMapTool, codebaseSearchTool, codebaseSkeletonTool, codebaseStatsTool, codebaseTargetedTestTool, deadCodeScanTool,
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
15
|
+
export { type ClarifyInput, type ClarifyOutput, type ClarifyQuestionInput, clarifyTool, } from './clarify.js';
|
|
16
|
+
export type { CircuitSnapshot, CircuitState, CodebaseAstReplaceInput, CodebaseAstReplaceOutput, CodebaseImpactAnalysisInput, CodebaseImpactAnalysisOutput, CodebaseIncomingCallsInput, CodebaseIncomingCallsOutput, CodebaseIndexInput, CodebaseIndexOutput, CodebaseInvariantCheckInput, CodebaseInvariantCheckOutput, CodebaseOutgoingCallsInput, CodebaseOutgoingCallsOutput, CodebaseRepoMapInput, CodebaseRepoMapOutput, CodebaseSearchInput, CodebaseSearchOutput, CodebaseSkeletonInput, CodebaseSkeletonOutput, CodebaseStatsInput, CodebaseStatsOutput, CodebaseTargetedTestInput, CodebaseTargetedTestOutput, CodeMapGraph, DeadCodeScanInput, DeadCodeScanOutput, DeadFile, DeadPackage, DeadSymbol, GraphEdge, GraphNode, ImpactAnalysisInput, ImpactAnalysisOutput, ImpactCallSite, IncomingCallsInput, IncomingCallsOutput, OutgoingCallsInput, OutgoingCallsOutput, ProjectIndexDaemonAvailability, ProjectIndexServerActivity, ProjectIndexServerClientHealth, ProjectIndexServerConnectionState, ProjectIndexServerConnectionStatus, ProjectIndexServerHealth, TargetedTestInput, TargetedTestOutput, } from './codebase-index/index.js';
|
|
17
|
+
export { ATLAS_DIR, type AtlasBrief, type AtlasBriefIndexMissing, type AtlasFreshness, type AtlasIndexMissing, buildProjectAtlasBrief, CircuitOpenError, CONCEPT_RELATIONS, type ConceptIndexMissing, type ContextResult, cancelPendingReindexes, checkCodebaseIndexServerHealth, checkProjectAtlasFreshness, codebaseAstReplaceTool, codebaseContextTool, codebaseImpactAnalysisTool, codebaseIncomingCallsTool, codebaseIndexStats, codebaseIndexTool, codebaseInvariantCheckTool, codebaseOutgoingCallsTool, codebaseRepoMapTool, codebaseSearchTool, codebaseSkeletonTool, codebaseStatsTool, codebaseTargetedTestTool, deadCodeScanTool, type EmbeddingPort, type EmbedIndexMissing, type EmbedResult, type EnrichResult, embedProjectFiles, enqueueReindex, enrichProjectConcepts, ensureCodebaseIndexServer, exportProjectAtlasHtml, extractDirectorySkeleton, extractFileSkeleton, type FileSkeletonResult, fileGraphService, generateRepoMap, getIndexState, IndexCircuitBreaker, IndexTimeoutError, indexCircuitBreaker, isIndexableFile, isIndexing, isIndexReady, MAX_CRUX_LINES, MAX_REPORTED_DRIFT, type MutateSymbolOptions, type MutateSymbolResult, onIndexStateChange, packageGraphService, type RepoMapOptions, type RepoMapResult, replaceSymbolInFile, resetIndexCircuitBreaker, resolveProjectIndexDaemonAvailability, runDeadCodeScan, runStartupIndex, type SkeletonOptions, type SkeletonSymbolRange, type SummarizeFileInput, type SummarizeFileResult, type SummarizerPort, type SummarizeSubsystemInput, type SummarizeSubsystemResult, searchCodebaseIndex, setContextQueryEmbedder, shutdownCodebaseIndexHost, shutdownCodebaseIndexServer, symbolGraphService, writeProjectAtlas, } from './codebase-index/index.js';
|
|
18
|
+
export { type DesignInput, type DesignOutput, designTool, } from './design.js';
|
|
19
|
+
export { type DiffInput, type DiffMode, type DiffOutput, diffTool, } from './diff.js';
|
|
20
|
+
export { type DocumentedItem, type DocumentInput, type DocumentOutput, documentTool, } from './document.js';
|
|
18
21
|
export { discoverE2EProjects, type E2EExecutionPlan, type E2EFramework, type E2EPackageManager, type E2EPlanInput, type E2EPlanOutput, type E2EProjectPlan, type E2EServerHint, e2ePlanTool, } from './e2e.js';
|
|
19
|
-
export {
|
|
20
|
-
export { configureDangerBypass, configureExecPolicy,
|
|
22
|
+
export { type EditInput, type EditOutput, editTool, type MatchTier, } from './edit.js';
|
|
23
|
+
export { configureDangerBypass, configureExecPolicy, type ExecInput, type ExecOutput, execTool, getDangerBypass, getExecAllowlist, isExecCommandAllowed, resetDangerBypass, resetExecPolicy, } from './exec.js';
|
|
21
24
|
export { checkExecKillCommand, type ExecKillCheckResult, } from './exec-kill-guard.js';
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
28
|
-
export {
|
|
29
|
-
export {
|
|
25
|
+
export { type FetchFormat, type FetchInput, type FetchOutput, fetchTool, } from './fetch.js';
|
|
26
|
+
export { type FormatContext, type FormatFixer, type FormatInput, type FormatOutput, formatTool, } from './format.js';
|
|
27
|
+
export { type GitInput, type GitOutput, type GitSubcommand, gitTool, } from './git.js';
|
|
28
|
+
export { type GlobInput, type GlobOutput, globTool, } from './glob.js';
|
|
29
|
+
export { type GrepBackend, type GrepEngine, type GrepInput, type GrepOutput, type GrepOutputMode, grepTool, } from './grep.js';
|
|
30
|
+
export { type InstallContext, type InstallInput, type InstallOutput, type InstallSaveType, installTool, } from './install.js';
|
|
31
|
+
export { type JsonAction, type JsonInput, type JsonOutput, jsonTool, } from './json.js';
|
|
32
|
+
export { type KanbanAction, type KanbanContext, type KanbanToolInput, type KanbanToolOutput, kanbanTool, } from './kanban.js';
|
|
30
33
|
export { kanbanEvidenceKey, kanbanEvidencePointer, recordKanbanVerificationEvidence, } from './kanban-evidence-bridge.js';
|
|
31
34
|
export * from './languages/index.js';
|
|
32
|
-
export {
|
|
33
|
-
export {
|
|
34
|
-
export {
|
|
35
|
+
export { type LintContext, type LinterName, type LintInput, type LintOutput, lintTool, } from './lint.js';
|
|
36
|
+
export { type LogEntry, type LogsInput, type LogsOutput, logsTool, } from './logs.js';
|
|
37
|
+
export { type ForgetInput, type ForgetOutput, forgetTool, type RelatedMemoryInput, type RememberInput, type RememberOutput, relatedMemoryTool, rememberTool, type SearchMemoryInput, type SearchMemoryOutput, searchMemoryTool, } from './memory.js';
|
|
35
38
|
export { createModeTool, type ModeFamily, type ModeInput, type ModeOutput, } from './mode.js';
|
|
36
|
-
export {
|
|
37
|
-
export { type
|
|
38
|
-
export {
|
|
39
|
+
export { type ParsedNextStep, type ParseNextStepsOptions, type ParseNextStepsResult, parseNextSteps, stripNextSteps, } from './next-steps.js';
|
|
40
|
+
export { type NextStepsInput, type NextStepsOutput, nextStepsTool, } from './next-steps-tool.js';
|
|
41
|
+
export { type OutdatedContext, type OutdatedInput, type OutdatedOutput, type OutdatedPackage, outdatedTool, } from './outdated.js';
|
|
39
42
|
export { builtinToolsPack } from './pack.js';
|
|
40
|
-
export {
|
|
41
|
-
export {
|
|
43
|
+
export { type PatchInput, type PatchOutput, patchTool, } from './patch.js';
|
|
44
|
+
export { type PlanAction, type PlanInput, type PlanOutput, planTool, } from './plan.js';
|
|
42
45
|
export { getProcessGuardian, type ProcessGuardianConfig, startProcessGuardian, stopProcessGuardian, } from './process-guardian.js';
|
|
43
46
|
export { _resetProcessRegistry, type BreakerCountdown, getProcessRegistry, type KillOpts, type ProcessRegistryImpl, type RegistryStats, type TrackedProcess, } from './process-registry.js';
|
|
44
47
|
export { getPersistentProcessRegistry, type PersistentProcessEntry, type PersistentRegistryData, resetPersistentProcessRegistry, } from './process-registry-persistent.js';
|
|
45
48
|
export { createGlobalPsSlashCommand, formatGlobalStatus, formatInstanceList, formatInstanceSummary, type GlobalProcessStatus, getInstanceCount, type InstanceInfo, type InstanceListOptions, listInstances, } from './ps-slash.js';
|
|
46
|
-
export {
|
|
47
|
-
export {
|
|
48
|
-
export {
|
|
49
|
-
export { BUILT_IN_TEMPLATES,
|
|
50
|
-
export {
|
|
51
|
-
export { analyzeSecurityAndPerformance,
|
|
49
|
+
export { PWSH_TOOL_DESCRIPTION, PWSH_TOOL_USAGE_HINT, type PwshInput, type PwshOutput, pwshTool, } from './pwsh.js';
|
|
50
|
+
export { type ReadInput, type ReadMode, type ReadOutput, readTool, type SymbolEntry, } from './read.js';
|
|
51
|
+
export { type ReplaceInput, type ReplaceOutput, replaceTool, } from './replace.js';
|
|
52
|
+
export { BUILT_IN_TEMPLATES, type ScaffoldInput, type ScaffoldOutput, type ScaffoldTemplate, scaffoldTool, } from './scaffold.js';
|
|
53
|
+
export { type CacheEntry as SearchCacheEntry, type SearchInput, type SearchOutput, type SearchResult, searchTool, } from './search.js';
|
|
54
|
+
export { analyzeSecurityAndPerformance, type SecurityFinding, type SecurityScanInput, type SecurityScanOutput, securityAstScanTool, } from './security-ast-scan-tool.js';
|
|
52
55
|
export { applySessionKanbanBoardToTodos, applySessionKanbanTaskToSource, attachSessionKanbanMirror, ensureSessionKanbanBoard, hydrateSessionKanban, mirrorSessionPlanToKanban, mirrorSessionTasksToKanban, mirrorSessionTodosToKanban, projectSessionPlanToKanban, projectSessionTasksToKanban, projectSessionTodosToKanban, rebindSessionKanbanTask, SESSION_KANBAN_COLUMNS, } from './session-kanban.js';
|
|
53
|
-
export {
|
|
54
|
-
export {
|
|
55
|
-
export {
|
|
56
|
-
export {
|
|
57
|
-
export {
|
|
58
|
-
export {
|
|
56
|
+
export { type SetWorkingDirInput, type SetWorkingDirOutput, setWorkingDirTool, } from './set-working-dir.js';
|
|
57
|
+
export { type LoadedResource, makeSkillTool, type SkillResource, type SkillToolInput, type SkillToolOutput, } from './skill.js';
|
|
58
|
+
export { type TaskAction, type TaskAdditionItem, type TaskInput, type TaskOutput, type TaskReplacementItem, taskTool, } from './task.js';
|
|
59
|
+
export { type TestContext, type TestInput, type TestOutput, type TestRunnerName, testTool, } from './test.js';
|
|
60
|
+
export { type TodoInput, type TodoKanbanBinding, type TodoOutput, todoTool, } from './todo.js';
|
|
61
|
+
export { computeLineDiff, DIFF_MAX_LINES, type DiffRow, type DiffRowKind, diffFromToolInput, type ToolDiff, } from './tool-diff.js';
|
|
62
|
+
export { type ToolHelpInput, type ToolHelpOutput, toolHelpTool, } from './tool-help.js';
|
|
59
63
|
export { FALLBACK_ICON, getToolIcon, TOOL_ICON_CONFIG, TOOL_ICON_MAP, type ToolIconConfig, type ToolIconId, } from './tool-icon-map.js';
|
|
60
|
-
export {
|
|
64
|
+
export { type ToolSearchInput, type ToolSearchOutput, toolSearchTool, } from './tool-search.js';
|
|
61
65
|
export { FALLBACK_HEAD_FIELDS, SUMMARIZE_TOOL_INPUT_BROWSER_SRC, summarizeToolInput, } from './tool-summary.js';
|
|
62
|
-
export { toolSearchTool, type ToolSearchInput, type ToolSearchOutput, } from './tool-search.js';
|
|
63
66
|
export { type RegisterBuiltinToolTierOptions, registerBuiltinToolTier, selectBuiltinToolsForTier, } from './tool-tier.js';
|
|
64
|
-
export {
|
|
65
|
-
export { DEFAULT_MAX_TREE_ENTRIES, MAX_TREE_OUTPUT_BYTES,
|
|
66
|
-
export {
|
|
67
|
-
export {
|
|
68
|
-
export { checkSyntax, type SyntaxCheckResult, } from './_syntax-check.js';
|
|
69
|
-
export { mapWithConcurrency, } from './_concurrency.js';
|
|
70
|
-
export { capSubject, compileUserRegex, MAX_SUBJECT_LEN, type CompileFail, type CompileResult, } from './_regex.js';
|
|
67
|
+
export { type ToolUseInput, type ToolUseOutput, toolUseTool, } from './tool-use.js';
|
|
68
|
+
export { DEFAULT_MAX_TREE_ENTRIES, MAX_TREE_OUTPUT_BYTES, type TreeContext, type TreeInput, type TreeOutput, treeTool, } from './tree.js';
|
|
69
|
+
export { type TypecheckContext, type TypecheckInput, type TypecheckOutput, typecheckTool, } from './typecheck.js';
|
|
70
|
+
export { type WriteInput, type WriteOutput, writeTool, } from './write.js';
|
|
71
71
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -41,10 +41,10 @@ import "./chunk-Z6DAKQ3U.js";
|
|
|
41
41
|
import {
|
|
42
42
|
registerBuiltinToolTier,
|
|
43
43
|
selectBuiltinToolsForTier
|
|
44
|
-
} from "./chunk-
|
|
44
|
+
} from "./chunk-NFX2IUQA.js";
|
|
45
45
|
import {
|
|
46
46
|
builtinToolsPack
|
|
47
|
-
} from "./chunk-
|
|
47
|
+
} from "./chunk-EL2NJXSK.js";
|
|
48
48
|
import {
|
|
49
49
|
OFF_ONLY_TOOLS,
|
|
50
50
|
OPTIONAL_TOOLS,
|
|
@@ -59,13 +59,19 @@ import {
|
|
|
59
59
|
pwshTool,
|
|
60
60
|
securityAstScanTool,
|
|
61
61
|
setWorkingDirTool
|
|
62
|
-
} from "./chunk-
|
|
62
|
+
} from "./chunk-UCXFTCAI.js";
|
|
63
63
|
import {
|
|
64
64
|
discoverE2EProjects,
|
|
65
65
|
e2ePlanTool
|
|
66
66
|
} from "./chunk-RV7BVTDG.js";
|
|
67
67
|
import {
|
|
68
|
+
ATLAS_DIR,
|
|
69
|
+
MAX_CRUX_LINES,
|
|
70
|
+
MAX_REPORTED_DRIFT,
|
|
71
|
+
buildProjectAtlasBrief,
|
|
72
|
+
checkProjectAtlasFreshness,
|
|
68
73
|
codebaseAstReplaceTool,
|
|
74
|
+
codebaseContextTool,
|
|
69
75
|
codebaseImpactAnalysisTool,
|
|
70
76
|
codebaseIncomingCallsTool,
|
|
71
77
|
codebaseIndexTool,
|
|
@@ -77,12 +83,17 @@ import {
|
|
|
77
83
|
codebaseStatsTool,
|
|
78
84
|
codebaseTargetedTestTool,
|
|
79
85
|
deadCodeScanTool,
|
|
86
|
+
embedProjectFiles,
|
|
87
|
+
enrichProjectConcepts,
|
|
88
|
+
exportProjectAtlasHtml,
|
|
80
89
|
extractDirectorySkeleton,
|
|
81
90
|
extractFileSkeleton,
|
|
82
91
|
generateRepoMap,
|
|
83
92
|
replaceSymbolInFile,
|
|
84
|
-
runDeadCodeScan
|
|
85
|
-
|
|
93
|
+
runDeadCodeScan,
|
|
94
|
+
setContextQueryEmbedder,
|
|
95
|
+
writeProjectAtlas
|
|
96
|
+
} from "./chunk-HWXIRVKH.js";
|
|
86
97
|
import "./chunk-XRNN44QY.js";
|
|
87
98
|
import {
|
|
88
99
|
planTool
|
|
@@ -132,7 +143,7 @@ import {
|
|
|
132
143
|
} from "./chunk-AQ5YBURX.js";
|
|
133
144
|
import {
|
|
134
145
|
patchTool
|
|
135
|
-
} from "./chunk-
|
|
146
|
+
} from "./chunk-TU5MTW2S.js";
|
|
136
147
|
import {
|
|
137
148
|
jsonTool
|
|
138
149
|
} from "./chunk-VZGPASGD.js";
|
|
@@ -175,7 +186,7 @@ import {
|
|
|
175
186
|
import "./chunk-DRRY6SCM.js";
|
|
176
187
|
import {
|
|
177
188
|
replaceTool
|
|
178
|
-
} from "./chunk-
|
|
189
|
+
} from "./chunk-DKHMPKDG.js";
|
|
179
190
|
import {
|
|
180
191
|
globTool
|
|
181
192
|
} from "./chunk-ASEXQRA7.js";
|
|
@@ -281,13 +292,13 @@ import {
|
|
|
281
292
|
} from "./chunk-SOR7OCYP.js";
|
|
282
293
|
import {
|
|
283
294
|
readTool
|
|
284
|
-
} from "./chunk-
|
|
295
|
+
} from "./chunk-UOYRAS4J.js";
|
|
285
296
|
import {
|
|
286
297
|
writeTool
|
|
287
|
-
} from "./chunk-
|
|
298
|
+
} from "./chunk-KVTEIUND.js";
|
|
288
299
|
import {
|
|
289
300
|
editTool
|
|
290
|
-
} from "./chunk-
|
|
301
|
+
} from "./chunk-7XUEPBNT.js";
|
|
291
302
|
import {
|
|
292
303
|
checkSyntax
|
|
293
304
|
} from "./chunk-MSOAX3GC.js";
|
|
@@ -310,19 +321,20 @@ import {
|
|
|
310
321
|
shutdownCodebaseIndexHost,
|
|
311
322
|
shutdownCodebaseIndexServer,
|
|
312
323
|
symbolGraphService
|
|
313
|
-
} from "./chunk-
|
|
314
|
-
import "./chunk-
|
|
324
|
+
} from "./chunk-TI5COGLY.js";
|
|
325
|
+
import "./chunk-MBR5VAB5.js";
|
|
315
326
|
import {
|
|
327
|
+
CONCEPT_RELATIONS,
|
|
316
328
|
CircuitOpenError,
|
|
317
329
|
IndexCircuitBreaker,
|
|
318
330
|
IndexTimeoutError,
|
|
319
331
|
indexCircuitBreaker,
|
|
320
332
|
resetIndexCircuitBreaker
|
|
321
|
-
} from "./chunk-
|
|
322
|
-
import "./chunk-
|
|
323
|
-
import "./chunk-
|
|
333
|
+
} from "./chunk-52UXXQMP.js";
|
|
334
|
+
import "./chunk-DL2ARI4S.js";
|
|
335
|
+
import "./chunk-3AU6CZWL.js";
|
|
324
336
|
import "./chunk-6IEBD27U.js";
|
|
325
|
-
import "./chunk-
|
|
337
|
+
import "./chunk-ZKC5UNGD.js";
|
|
326
338
|
import "./chunk-YOHO4DVT.js";
|
|
327
339
|
import "./chunk-2CTZW6JQ.js";
|
|
328
340
|
import {
|
|
@@ -912,10 +924,12 @@ var TOOL_ICON_CONFIG = {
|
|
|
912
924
|
var FALLBACK_ICON = "fallback";
|
|
913
925
|
export {
|
|
914
926
|
ADDITIONAL_LANGUAGE_PROFILES,
|
|
927
|
+
ATLAS_DIR,
|
|
915
928
|
BUILT_IN_TEMPLATES,
|
|
916
929
|
BrowserArtifactStore,
|
|
917
930
|
BrowserNetworkGuardProxy,
|
|
918
931
|
BrowserSessionManager,
|
|
932
|
+
CONCEPT_RELATIONS,
|
|
919
933
|
CircuitBreaker,
|
|
920
934
|
CircuitOpenError,
|
|
921
935
|
DEFAULT_MAX_TREE_ENTRIES,
|
|
@@ -926,6 +940,8 @@ export {
|
|
|
926
940
|
IndexCircuitBreaker,
|
|
927
941
|
IndexTimeoutError,
|
|
928
942
|
LanguageProfileRegistry,
|
|
943
|
+
MAX_CRUX_LINES,
|
|
944
|
+
MAX_REPORTED_DRIFT,
|
|
929
945
|
MAX_SUBJECT_LEN,
|
|
930
946
|
MAX_TREE_OUTPUT_BYTES,
|
|
931
947
|
OFF_ONLY_TOOLS,
|
|
@@ -967,6 +983,7 @@ export {
|
|
|
967
983
|
browserTypeTool,
|
|
968
984
|
browserUploadTool,
|
|
969
985
|
browserWaitTool,
|
|
986
|
+
buildProjectAtlasBrief,
|
|
970
987
|
builtinTools,
|
|
971
988
|
builtinToolsPack,
|
|
972
989
|
cancelPendingReindexes,
|
|
@@ -974,9 +991,11 @@ export {
|
|
|
974
991
|
checkAndBlockKillCommand,
|
|
975
992
|
checkCodebaseIndexServerHealth,
|
|
976
993
|
checkExecKillCommand,
|
|
994
|
+
checkProjectAtlasFreshness,
|
|
977
995
|
checkSyntax,
|
|
978
996
|
clarifyTool,
|
|
979
997
|
codebaseAstReplaceTool,
|
|
998
|
+
codebaseContextTool,
|
|
980
999
|
codebaseImpactAnalysisTool,
|
|
981
1000
|
codebaseIncomingCallsTool,
|
|
982
1001
|
codebaseIndexStats,
|
|
@@ -1006,13 +1025,16 @@ export {
|
|
|
1006
1025
|
documentTool,
|
|
1007
1026
|
e2ePlanTool,
|
|
1008
1027
|
editTool,
|
|
1028
|
+
embedProjectFiles,
|
|
1009
1029
|
enqueueReindex,
|
|
1030
|
+
enrichProjectConcepts,
|
|
1010
1031
|
ensureCodebaseIndexServer,
|
|
1011
1032
|
ensureSessionKanbanBoard,
|
|
1012
1033
|
ensureSessionShell,
|
|
1013
1034
|
execTool,
|
|
1014
1035
|
executeLanguagePlan,
|
|
1015
1036
|
executePackagePlan,
|
|
1037
|
+
exportProjectAtlasHtml,
|
|
1016
1038
|
extractDirectorySkeleton,
|
|
1017
1039
|
extractFileSkeleton,
|
|
1018
1040
|
fetchTool,
|
|
@@ -1099,6 +1121,7 @@ export {
|
|
|
1099
1121
|
searchTool,
|
|
1100
1122
|
securityAstScanTool,
|
|
1101
1123
|
selectBuiltinToolsForTier,
|
|
1124
|
+
setContextQueryEmbedder,
|
|
1102
1125
|
setWorkingDirTool,
|
|
1103
1126
|
shutdownBrowserTools,
|
|
1104
1127
|
shutdownCodebaseIndexHost,
|
|
@@ -1118,6 +1141,7 @@ export {
|
|
|
1118
1141
|
typecheckTool,
|
|
1119
1142
|
validateCommandPlan,
|
|
1120
1143
|
validateLanguageProfile,
|
|
1144
|
+
writeProjectAtlas,
|
|
1121
1145
|
writeTool
|
|
1122
1146
|
};
|
|
1123
1147
|
//# sourceMappingURL=index.js.map
|
package/dist/pack.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
builtinToolsPack
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-EL2NJXSK.js";
|
|
4
|
+
import "./chunk-UCXFTCAI.js";
|
|
5
5
|
import "./chunk-RV7BVTDG.js";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-HWXIRVKH.js";
|
|
7
7
|
import "./chunk-XRNN44QY.js";
|
|
8
8
|
import "./chunk-5KS24LTS.js";
|
|
9
9
|
import "./chunk-LQSOU63Z.js";
|
|
@@ -20,7 +20,7 @@ import "./chunk-VU3QBYL4.js";
|
|
|
20
20
|
import "./chunk-CHEK3ASV.js";
|
|
21
21
|
import "./chunk-KLJZ4WV4.js";
|
|
22
22
|
import "./chunk-AQ5YBURX.js";
|
|
23
|
-
import "./chunk-
|
|
23
|
+
import "./chunk-TU5MTW2S.js";
|
|
24
24
|
import "./chunk-VZGPASGD.js";
|
|
25
25
|
import "./chunk-7HL23T3T.js";
|
|
26
26
|
import "./chunk-JDOO4P6Z.js";
|
|
@@ -30,7 +30,7 @@ import "./chunk-4WPBS45A.js";
|
|
|
30
30
|
import "./chunk-T3SMFF5Q.js";
|
|
31
31
|
import "./chunk-7N5U2RAU.js";
|
|
32
32
|
import "./chunk-DRRY6SCM.js";
|
|
33
|
-
import "./chunk-
|
|
33
|
+
import "./chunk-DKHMPKDG.js";
|
|
34
34
|
import "./chunk-ASEXQRA7.js";
|
|
35
35
|
import "./chunk-4ERMPDHV.js";
|
|
36
36
|
import "./chunk-YJTXRH5Y.js";
|
|
@@ -49,17 +49,17 @@ import "./chunk-FBUP524S.js";
|
|
|
49
49
|
import "./chunk-SMARDKAC.js";
|
|
50
50
|
import "./chunk-X6KXNHUO.js";
|
|
51
51
|
import "./chunk-SOR7OCYP.js";
|
|
52
|
-
import "./chunk-
|
|
53
|
-
import "./chunk-
|
|
54
|
-
import "./chunk-
|
|
52
|
+
import "./chunk-UOYRAS4J.js";
|
|
53
|
+
import "./chunk-KVTEIUND.js";
|
|
54
|
+
import "./chunk-7XUEPBNT.js";
|
|
55
55
|
import "./chunk-MSOAX3GC.js";
|
|
56
|
-
import "./chunk-
|
|
57
|
-
import "./chunk-
|
|
58
|
-
import "./chunk-
|
|
59
|
-
import "./chunk-
|
|
60
|
-
import "./chunk-
|
|
56
|
+
import "./chunk-TI5COGLY.js";
|
|
57
|
+
import "./chunk-MBR5VAB5.js";
|
|
58
|
+
import "./chunk-52UXXQMP.js";
|
|
59
|
+
import "./chunk-DL2ARI4S.js";
|
|
60
|
+
import "./chunk-3AU6CZWL.js";
|
|
61
61
|
import "./chunk-6IEBD27U.js";
|
|
62
|
-
import "./chunk-
|
|
62
|
+
import "./chunk-ZKC5UNGD.js";
|
|
63
63
|
import "./chunk-YOHO4DVT.js";
|
|
64
64
|
import "./chunk-2CTZW6JQ.js";
|
|
65
65
|
import "./chunk-KE7A76VC.js";
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
parseFileContent,
|
|
3
3
|
parseFilesContent
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-DL2ARI4S.js";
|
|
5
|
+
import "./chunk-3AU6CZWL.js";
|
|
6
6
|
import "./chunk-6IEBD27U.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-ZKC5UNGD.js";
|
|
8
8
|
import "./chunk-YOHO4DVT.js";
|
|
9
9
|
import "./chunk-KE7A76VC.js";
|
|
10
10
|
export {
|
|
11
11
|
parseFileContent,
|
|
12
12
|
parseFilesContent
|
|
13
13
|
};
|
|
14
|
-
//# sourceMappingURL=parser-dispatch-
|
|
14
|
+
//# sourceMappingURL=parser-dispatch-37FT3EXQ.js.map
|