@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
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
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
GROUNDED_NO_PROGRESS_STEER,
|
|
17
17
|
createAutoProceedLoopGuard,
|
|
18
18
|
normalizeForRepetition
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-NL2S2CXD.js";
|
|
20
20
|
import {
|
|
21
21
|
createGlobalPsSlashCommand,
|
|
22
22
|
formatGlobalStatus,
|
|
@@ -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";
|
|
@@ -193,7 +204,7 @@ import {
|
|
|
193
204
|
import {
|
|
194
205
|
bashTool,
|
|
195
206
|
checkAndBlockKillCommand
|
|
196
|
-
} from "./chunk-
|
|
207
|
+
} from "./chunk-6H4ERJP7.js";
|
|
197
208
|
import {
|
|
198
209
|
checkExecKillCommand,
|
|
199
210
|
configureDangerBypass,
|
|
@@ -205,7 +216,7 @@ import {
|
|
|
205
216
|
isExecCommandAllowed,
|
|
206
217
|
resetDangerBypass,
|
|
207
218
|
resetExecPolicy
|
|
208
|
-
} from "./chunk-
|
|
219
|
+
} from "./chunk-MGPR7VG3.js";
|
|
209
220
|
import "./chunk-BTSFTGIL.js";
|
|
210
221
|
import {
|
|
211
222
|
getPersistentProcessRegistry,
|
|
@@ -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,13 +30,13 @@ 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";
|
|
37
37
|
import "./chunk-ZBMANLYH.js";
|
|
38
|
-
import "./chunk-
|
|
39
|
-
import "./chunk-
|
|
38
|
+
import "./chunk-6H4ERJP7.js";
|
|
39
|
+
import "./chunk-MGPR7VG3.js";
|
|
40
40
|
import "./chunk-BTSFTGIL.js";
|
|
41
41
|
import "./chunk-PVCB7RUZ.js";
|
|
42
42
|
import "./chunk-SCMRM6NL.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
|
package/dist/patch.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
patchTool
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-TU5MTW2S.js";
|
|
4
|
+
import "./chunk-TI5COGLY.js";
|
|
5
|
+
import "./chunk-MBR5VAB5.js";
|
|
6
|
+
import "./chunk-52UXXQMP.js";
|
|
7
|
+
import "./chunk-DL2ARI4S.js";
|
|
8
|
+
import "./chunk-3AU6CZWL.js";
|
|
9
9
|
import "./chunk-6IEBD27U.js";
|
|
10
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-ZKC5UNGD.js";
|
|
11
11
|
import "./chunk-YOHO4DVT.js";
|
|
12
12
|
import "./chunk-2CTZW6JQ.js";
|
|
13
13
|
import "./chunk-KE7A76VC.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
parseSymbols,
|
|
3
3
|
resolvePythonBinary
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-3AU6CZWL.js";
|
|
5
5
|
import "./chunk-6IEBD27U.js";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-ZKC5UNGD.js";
|
|
7
7
|
import {
|
|
8
8
|
detectLang
|
|
9
9
|
} from "./chunk-YOHO4DVT.js";
|
|
@@ -13,4 +13,4 @@ export {
|
|
|
13
13
|
parseSymbols,
|
|
14
14
|
resolvePythonBinary
|
|
15
15
|
};
|
|
16
|
-
//# sourceMappingURL=py-parser-
|
|
16
|
+
//# sourceMappingURL=py-parser-6GJTGUXK.js.map
|
package/dist/read.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
readTool
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-UOYRAS4J.js";
|
|
4
|
+
import "./chunk-TI5COGLY.js";
|
|
5
|
+
import "./chunk-MBR5VAB5.js";
|
|
6
|
+
import "./chunk-52UXXQMP.js";
|
|
7
|
+
import "./chunk-DL2ARI4S.js";
|
|
8
|
+
import "./chunk-3AU6CZWL.js";
|
|
9
9
|
import "./chunk-6IEBD27U.js";
|
|
10
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-ZKC5UNGD.js";
|
|
11
11
|
import "./chunk-YOHO4DVT.js";
|
|
12
12
|
import "./chunk-2CTZW6JQ.js";
|
|
13
13
|
import "./chunk-KE7A76VC.js";
|
package/dist/replace.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__resetRgDetectionForTests,
|
|
3
3
|
replaceTool
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-DKHMPKDG.js";
|
|
5
5
|
import "./chunk-YJTXRH5Y.js";
|
|
6
6
|
import "./chunk-ZBMANLYH.js";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-TI5COGLY.js";
|
|
8
|
+
import "./chunk-MBR5VAB5.js";
|
|
9
|
+
import "./chunk-52UXXQMP.js";
|
|
10
|
+
import "./chunk-DL2ARI4S.js";
|
|
11
|
+
import "./chunk-3AU6CZWL.js";
|
|
12
12
|
import "./chunk-6IEBD27U.js";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-ZKC5UNGD.js";
|
|
14
14
|
import "./chunk-YOHO4DVT.js";
|
|
15
15
|
import "./chunk-2CTZW6JQ.js";
|
|
16
16
|
import "./chunk-KE7A76VC.js";
|
package/dist/tool-tier.js
CHANGED
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
BUILTIN_TIER_COUNTS,
|
|
3
3
|
registerBuiltinToolTier,
|
|
4
4
|
selectBuiltinToolsForTier
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-NFX2IUQA.js";
|
|
6
|
+
import "./chunk-EL2NJXSK.js";
|
|
7
|
+
import "./chunk-UCXFTCAI.js";
|
|
8
8
|
import "./chunk-RV7BVTDG.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-HWXIRVKH.js";
|
|
10
10
|
import "./chunk-XRNN44QY.js";
|
|
11
11
|
import "./chunk-5KS24LTS.js";
|
|
12
12
|
import "./chunk-LQSOU63Z.js";
|
|
@@ -23,7 +23,7 @@ import "./chunk-VU3QBYL4.js";
|
|
|
23
23
|
import "./chunk-CHEK3ASV.js";
|
|
24
24
|
import "./chunk-KLJZ4WV4.js";
|
|
25
25
|
import "./chunk-AQ5YBURX.js";
|
|
26
|
-
import "./chunk-
|
|
26
|
+
import "./chunk-TU5MTW2S.js";
|
|
27
27
|
import "./chunk-VZGPASGD.js";
|
|
28
28
|
import "./chunk-7HL23T3T.js";
|
|
29
29
|
import "./chunk-JDOO4P6Z.js";
|
|
@@ -33,13 +33,13 @@ import "./chunk-4WPBS45A.js";
|
|
|
33
33
|
import "./chunk-T3SMFF5Q.js";
|
|
34
34
|
import "./chunk-7N5U2RAU.js";
|
|
35
35
|
import "./chunk-DRRY6SCM.js";
|
|
36
|
-
import "./chunk-
|
|
36
|
+
import "./chunk-DKHMPKDG.js";
|
|
37
37
|
import "./chunk-ASEXQRA7.js";
|
|
38
38
|
import "./chunk-4ERMPDHV.js";
|
|
39
39
|
import "./chunk-YJTXRH5Y.js";
|
|
40
40
|
import "./chunk-ZBMANLYH.js";
|
|
41
|
-
import "./chunk-
|
|
42
|
-
import "./chunk-
|
|
41
|
+
import "./chunk-6H4ERJP7.js";
|
|
42
|
+
import "./chunk-MGPR7VG3.js";
|
|
43
43
|
import "./chunk-BTSFTGIL.js";
|
|
44
44
|
import "./chunk-PVCB7RUZ.js";
|
|
45
45
|
import "./chunk-SCMRM6NL.js";
|
|
@@ -52,17 +52,17 @@ import "./chunk-FBUP524S.js";
|
|
|
52
52
|
import "./chunk-SMARDKAC.js";
|
|
53
53
|
import "./chunk-X6KXNHUO.js";
|
|
54
54
|
import "./chunk-SOR7OCYP.js";
|
|
55
|
-
import "./chunk-
|
|
56
|
-
import "./chunk-
|
|
57
|
-
import "./chunk-
|
|
55
|
+
import "./chunk-UOYRAS4J.js";
|
|
56
|
+
import "./chunk-KVTEIUND.js";
|
|
57
|
+
import "./chunk-7XUEPBNT.js";
|
|
58
58
|
import "./chunk-MSOAX3GC.js";
|
|
59
|
-
import "./chunk-
|
|
60
|
-
import "./chunk-
|
|
61
|
-
import "./chunk-
|
|
62
|
-
import "./chunk-
|
|
63
|
-
import "./chunk-
|
|
59
|
+
import "./chunk-TI5COGLY.js";
|
|
60
|
+
import "./chunk-MBR5VAB5.js";
|
|
61
|
+
import "./chunk-52UXXQMP.js";
|
|
62
|
+
import "./chunk-DL2ARI4S.js";
|
|
63
|
+
import "./chunk-3AU6CZWL.js";
|
|
64
64
|
import "./chunk-6IEBD27U.js";
|
|
65
|
-
import "./chunk-
|
|
65
|
+
import "./chunk-ZKC5UNGD.js";
|
|
66
66
|
import "./chunk-YOHO4DVT.js";
|
|
67
67
|
import "./chunk-2CTZW6JQ.js";
|
|
68
68
|
import "./chunk-KE7A76VC.js";
|
package/dist/write.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
writeTool
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-KVTEIUND.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";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/tools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack built-in tools: read/write/edit, bash/exec, grep/glob, git, fetch, test, lint, and more.",
|
|
6
6
|
"repository": {
|
|
@@ -249,10 +249,10 @@
|
|
|
249
249
|
"@msgpack/msgpack": "^3.1.3",
|
|
250
250
|
"@playwright/test": "^1.62.1",
|
|
251
251
|
"@typescript/typescript6": "^6.0.2",
|
|
252
|
-
"@wrongstack/core": "1.0.
|
|
253
|
-
"@wrongstack/kanban": "1.0.
|
|
254
|
-
"@wrongstack/persistence": "1.0.
|
|
255
|
-
"@wrongstack/primitives": "1.0.
|
|
252
|
+
"@wrongstack/core": "1.0.2",
|
|
253
|
+
"@wrongstack/kanban": "1.0.2",
|
|
254
|
+
"@wrongstack/persistence": "1.0.2",
|
|
255
|
+
"@wrongstack/primitives": "1.0.2",
|
|
256
256
|
"tree-sitter-wasm": "1.1.4",
|
|
257
257
|
"turndown": "^7.2.4",
|
|
258
258
|
"undici": "^8.10.0",
|