@lzehrung/codegraph 2.1.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/LICENSE +21 -0
- package/README.md +448 -0
- package/THIRD_PARTY_NOTICES +77 -0
- package/codegraph-skill/codegraph/SKILL.md +262 -0
- package/dist/agent/artifact.d.ts +65 -0
- package/dist/agent/artifact.d.ts.map +1 -0
- package/dist/agent/artifact.js +616 -0
- package/dist/agent/artifact.js.map +1 -0
- package/dist/agent/bounds.d.ts +12 -0
- package/dist/agent/bounds.d.ts.map +1 -0
- package/dist/agent/bounds.js +25 -0
- package/dist/agent/bounds.js.map +1 -0
- package/dist/agent/callHierarchy.d.ts +28 -0
- package/dist/agent/callHierarchy.d.ts.map +1 -0
- package/dist/agent/callHierarchy.js +82 -0
- package/dist/agent/callHierarchy.js.map +1 -0
- package/dist/agent/explain.d.ts +136 -0
- package/dist/agent/explain.d.ts.map +1 -0
- package/dist/agent/explain.js +743 -0
- package/dist/agent/explain.js.map +1 -0
- package/dist/agent/explore.d.ts +67 -0
- package/dist/agent/explore.d.ts.map +1 -0
- package/dist/agent/explore.js +474 -0
- package/dist/agent/explore.js.map +1 -0
- package/dist/agent/fileView.d.ts +55 -0
- package/dist/agent/fileView.d.ts.map +1 -0
- package/dist/agent/fileView.js +528 -0
- package/dist/agent/fileView.js.map +1 -0
- package/dist/agent/followUps.d.ts +9 -0
- package/dist/agent/followUps.d.ts.map +1 -0
- package/dist/agent/followUps.js +164 -0
- package/dist/agent/followUps.js.map +1 -0
- package/dist/agent/handles.d.ts +29 -0
- package/dist/agent/handles.d.ts.map +1 -0
- package/dist/agent/handles.js +103 -0
- package/dist/agent/handles.js.map +1 -0
- package/dist/agent/normalize.d.ts +19 -0
- package/dist/agent/normalize.d.ts.map +1 -0
- package/dist/agent/normalize.js +45 -0
- package/dist/agent/normalize.js.map +1 -0
- package/dist/agent/orient.d.ts +55 -0
- package/dist/agent/orient.d.ts.map +1 -0
- package/dist/agent/orient.js +307 -0
- package/dist/agent/orient.js.map +1 -0
- package/dist/agent/packet.d.ts +28 -0
- package/dist/agent/packet.d.ts.map +1 -0
- package/dist/agent/packet.js +138 -0
- package/dist/agent/packet.js.map +1 -0
- package/dist/agent/query-index/candidates.d.ts +4 -0
- package/dist/agent/query-index/candidates.d.ts.map +1 -0
- package/dist/agent/query-index/candidates.js +89 -0
- package/dist/agent/query-index/candidates.js.map +1 -0
- package/dist/agent/query-index/content.d.ts +36 -0
- package/dist/agent/query-index/content.d.ts.map +1 -0
- package/dist/agent/query-index/content.js +124 -0
- package/dist/agent/query-index/content.js.map +1 -0
- package/dist/agent/query-index/paths.d.ts +12 -0
- package/dist/agent/query-index/paths.d.ts.map +1 -0
- package/dist/agent/query-index/paths.js +41 -0
- package/dist/agent/query-index/paths.js.map +1 -0
- package/dist/agent/query-index/queryIndexWorker.d.ts +8 -0
- package/dist/agent/query-index/queryIndexWorker.d.ts.map +1 -0
- package/dist/agent/query-index/queryIndexWorker.js +11 -0
- package/dist/agent/query-index/queryIndexWorker.js.map +1 -0
- package/dist/agent/query-index/schema.d.ts +26 -0
- package/dist/agent/query-index/schema.d.ts.map +1 -0
- package/dist/agent/query-index/schema.js +171 -0
- package/dist/agent/query-index/schema.js.map +1 -0
- package/dist/agent/query-index/sessionStore.d.ts +5 -0
- package/dist/agent/query-index/sessionStore.d.ts.map +1 -0
- package/dist/agent/query-index/sessionStore.js +53 -0
- package/dist/agent/query-index/sessionStore.js.map +1 -0
- package/dist/agent/query-index/sourceIdentity.d.ts +3 -0
- package/dist/agent/query-index/sourceIdentity.d.ts.map +1 -0
- package/dist/agent/query-index/sourceIdentity.js +12 -0
- package/dist/agent/query-index/sourceIdentity.js.map +1 -0
- package/dist/agent/query-index/store.d.ts +48 -0
- package/dist/agent/query-index/store.d.ts.map +1 -0
- package/dist/agent/query-index/store.js +372 -0
- package/dist/agent/query-index/store.js.map +1 -0
- package/dist/agent/query-index/update.d.ts +9 -0
- package/dist/agent/query-index/update.d.ts.map +1 -0
- package/dist/agent/query-index/update.js +309 -0
- package/dist/agent/query-index/update.js.map +1 -0
- package/dist/agent/query-index/workerPool.d.ts +5 -0
- package/dist/agent/query-index/workerPool.d.ts.map +1 -0
- package/dist/agent/query-index/workerPool.js +82 -0
- package/dist/agent/query-index/workerPool.js.map +1 -0
- package/dist/agent/refactorPlan.d.ts +40 -0
- package/dist/agent/refactorPlan.d.ts.map +1 -0
- package/dist/agent/refactorPlan.js +234 -0
- package/dist/agent/refactorPlan.js.map +1 -0
- package/dist/agent/renamePreview.d.ts +60 -0
- package/dist/agent/renamePreview.d.ts.map +1 -0
- package/dist/agent/renamePreview.js +1008 -0
- package/dist/agent/renamePreview.js.map +1 -0
- package/dist/agent/search.d.ts +77 -0
- package/dist/agent/search.d.ts.map +1 -0
- package/dist/agent/search.js +1002 -0
- package/dist/agent/search.js.map +1 -0
- package/dist/agent/semantic.d.ts +35 -0
- package/dist/agent/semantic.d.ts.map +1 -0
- package/dist/agent/semantic.js +2 -0
- package/dist/agent/semantic.js.map +1 -0
- package/dist/agent/semanticSymbols.d.ts +16 -0
- package/dist/agent/semanticSymbols.d.ts.map +1 -0
- package/dist/agent/semanticSymbols.js +96 -0
- package/dist/agent/semanticSymbols.js.map +1 -0
- package/dist/agent/session.d.ts +71 -0
- package/dist/agent/session.d.ts.map +1 -0
- package/dist/agent/session.js +432 -0
- package/dist/agent/session.js.map +1 -0
- package/dist/agent/sessionLifecycle.d.ts +5 -0
- package/dist/agent/sessionLifecycle.d.ts.map +1 -0
- package/dist/agent/sessionLifecycle.js +18 -0
- package/dist/agent/sessionLifecycle.js.map +1 -0
- package/dist/agent/shell.d.ts +2 -0
- package/dist/agent/shell.d.ts.map +1 -0
- package/dist/agent/shell.js +6 -0
- package/dist/agent/shell.js.map +1 -0
- package/dist/agent/symbolLookup.d.ts +12 -0
- package/dist/agent/symbolLookup.d.ts.map +1 -0
- package/dist/agent/symbolLookup.js +26 -0
- package/dist/agent/symbolLookup.js.map +1 -0
- package/dist/agent/typeHierarchy.d.ts +39 -0
- package/dist/agent/typeHierarchy.d.ts.map +1 -0
- package/dist/agent/typeHierarchy.js +125 -0
- package/dist/agent/typeHierarchy.js.map +1 -0
- package/dist/agent/workspaceSymbols.d.ts +18 -0
- package/dist/agent/workspaceSymbols.d.ts.map +1 -0
- package/dist/agent/workspaceSymbols.js +75 -0
- package/dist/agent/workspaceSymbols.js.map +1 -0
- package/dist/agent-tools.d.ts +280 -0
- package/dist/agent-tools.d.ts.map +1 -0
- package/dist/agent-tools.js +669 -0
- package/dist/agent-tools.js.map +1 -0
- package/dist/agent.d.ts +35 -0
- package/dist/agent.d.ts.map +1 -0
- package/dist/agent.js +19 -0
- package/dist/agent.js.map +1 -0
- package/dist/analysisSummary.d.ts +19 -0
- package/dist/analysisSummary.d.ts.map +1 -0
- package/dist/analysisSummary.js +80 -0
- package/dist/analysisSummary.js.map +1 -0
- package/dist/bin/cli.js +105144 -0
- package/dist/bin/queryIndexWorker.js +3914 -0
- package/dist/bootstrap/treeSitterLanguages.d.ts +5 -0
- package/dist/bootstrap/treeSitterLanguages.d.ts.map +1 -0
- package/dist/bootstrap/treeSitterLanguages.js +41 -0
- package/dist/bootstrap/treeSitterLanguages.js.map +1 -0
- package/dist/chunking/chunkBlocks.d.ts +9 -0
- package/dist/chunking/chunkBlocks.d.ts.map +1 -0
- package/dist/chunking/chunkBlocks.js +60 -0
- package/dist/chunking/chunkBlocks.js.map +1 -0
- package/dist/chunking/chunkFile.d.ts +34 -0
- package/dist/chunking/chunkFile.d.ts.map +1 -0
- package/dist/chunking/chunkFile.js +153 -0
- package/dist/chunking/chunkFile.js.map +1 -0
- package/dist/chunking/chunkId.d.ts +7 -0
- package/dist/chunking/chunkId.d.ts.map +1 -0
- package/dist/chunking/chunkId.js +30 -0
- package/dist/chunking/chunkId.js.map +1 -0
- package/dist/chunking/chunkMatches.d.ts +4 -0
- package/dist/chunking/chunkMatches.d.ts.map +1 -0
- package/dist/chunking/chunkMatches.js +65 -0
- package/dist/chunking/chunkMatches.js.map +1 -0
- package/dist/chunking/chunkMerge.d.ts +4 -0
- package/dist/chunking/chunkMerge.d.ts.map +1 -0
- package/dist/chunking/chunkMerge.js +144 -0
- package/dist/chunking/chunkMerge.js.map +1 -0
- package/dist/chunking/chunkSFC.d.ts +18 -0
- package/dist/chunking/chunkSFC.d.ts.map +1 -0
- package/dist/chunking/chunkSFC.js +165 -0
- package/dist/chunking/chunkSFC.js.map +1 -0
- package/dist/chunking/chunkSplit.d.ts +6 -0
- package/dist/chunking/chunkSplit.d.ts.map +1 -0
- package/dist/chunking/chunkSplit.js +170 -0
- package/dist/chunking/chunkSplit.js.map +1 -0
- package/dist/chunking/chunkTextFile.d.ts +28 -0
- package/dist/chunking/chunkTextFile.d.ts.map +1 -0
- package/dist/chunking/chunkTextFile.js +107 -0
- package/dist/chunking/chunkTextFile.js.map +1 -0
- package/dist/chunking/languageConfig.d.ts +35 -0
- package/dist/chunking/languageConfig.d.ts.map +1 -0
- package/dist/chunking/languageConfig.js +24 -0
- package/dist/chunking/languageConfig.js.map +1 -0
- package/dist/chunking/tokenizer.d.ts +2 -0
- package/dist/chunking/tokenizer.d.ts.map +1 -0
- package/dist/chunking/tokenizer.js +6 -0
- package/dist/chunking/tokenizer.js.map +1 -0
- package/dist/chunking/types.d.ts +54 -0
- package/dist/chunking/types.d.ts.map +1 -0
- package/dist/chunking/types.js +2 -0
- package/dist/chunking/types.js.map +1 -0
- package/dist/cli/affected.d.ts +32 -0
- package/dist/cli/affected.d.ts.map +1 -0
- package/dist/cli/affected.js +235 -0
- package/dist/cli/affected.js.map +1 -0
- package/dist/cli/artifact.d.ts +4 -0
- package/dist/cli/artifact.d.ts.map +1 -0
- package/dist/cli/artifact.js +35 -0
- package/dist/cli/artifact.js.map +1 -0
- package/dist/cli/bootstrap.d.ts +3 -0
- package/dist/cli/bootstrap.d.ts.map +1 -0
- package/dist/cli/bootstrap.js +8 -0
- package/dist/cli/bootstrap.js.map +1 -0
- package/dist/cli/callHierarchy.d.ts +6 -0
- package/dist/cli/callHierarchy.d.ts.map +1 -0
- package/dist/cli/callHierarchy.js +65 -0
- package/dist/cli/callHierarchy.js.map +1 -0
- package/dist/cli/chunk.d.ts +4 -0
- package/dist/cli/chunk.d.ts.map +1 -0
- package/dist/cli/chunk.js +109 -0
- package/dist/cli/chunk.js.map +1 -0
- package/dist/cli/commandCatalog.d.ts +14 -0
- package/dist/cli/commandCatalog.d.ts.map +1 -0
- package/dist/cli/commandCatalog.js +109 -0
- package/dist/cli/commandCatalog.js.map +1 -0
- package/dist/cli/commandTable.d.ts +16 -0
- package/dist/cli/commandTable.d.ts.map +1 -0
- package/dist/cli/commandTable.js +716 -0
- package/dist/cli/commandTable.js.map +1 -0
- package/dist/cli/compileCache.d.ts +17 -0
- package/dist/cli/compileCache.d.ts.map +1 -0
- package/dist/cli/compileCache.js +63 -0
- package/dist/cli/compileCache.js.map +1 -0
- package/dist/cli/context.d.ts +87 -0
- package/dist/cli/context.d.ts.map +1 -0
- package/dist/cli/context.js +322 -0
- package/dist/cli/context.js.map +1 -0
- package/dist/cli/discoveryGlobs.d.ts +11 -0
- package/dist/cli/discoveryGlobs.d.ts.map +1 -0
- package/dist/cli/discoveryGlobs.js +74 -0
- package/dist/cli/discoveryGlobs.js.map +1 -0
- package/dist/cli/doctor.d.ts +33 -0
- package/dist/cli/doctor.d.ts.map +1 -0
- package/dist/cli/doctor.js +143 -0
- package/dist/cli/doctor.js.map +1 -0
- package/dist/cli/drift.d.ts +18 -0
- package/dist/cli/drift.d.ts.map +1 -0
- package/dist/cli/drift.js +101 -0
- package/dist/cli/drift.js.map +1 -0
- package/dist/cli/duplicateSimilarity.d.ts +10 -0
- package/dist/cli/duplicateSimilarity.d.ts.map +1 -0
- package/dist/cli/duplicateSimilarity.js +20 -0
- package/dist/cli/duplicateSimilarity.js.map +1 -0
- package/dist/cli/duplicates.d.ts +15 -0
- package/dist/cli/duplicates.d.ts.map +1 -0
- package/dist/cli/duplicates.js +400 -0
- package/dist/cli/duplicates.js.map +1 -0
- package/dist/cli/explain.d.ts +4 -0
- package/dist/cli/explain.d.ts.map +1 -0
- package/dist/cli/explain.js +47 -0
- package/dist/cli/explain.js.map +1 -0
- package/dist/cli/explore.d.ts +4 -0
- package/dist/cli/explore.d.ts.map +1 -0
- package/dist/cli/explore.js +28 -0
- package/dist/cli/explore.js.map +1 -0
- package/dist/cli/file.d.ts +4 -0
- package/dist/cli/file.d.ts.map +1 -0
- package/dist/cli/file.js +53 -0
- package/dist/cli/file.js.map +1 -0
- package/dist/cli/graph.d.ts +90 -0
- package/dist/cli/graph.d.ts.map +1 -0
- package/dist/cli/graph.js +379 -0
- package/dist/cli/graph.js.map +1 -0
- package/dist/cli/graphDelta.d.ts +24 -0
- package/dist/cli/graphDelta.d.ts.map +1 -0
- package/dist/cli/graphDelta.js +75 -0
- package/dist/cli/graphDelta.js.map +1 -0
- package/dist/cli/graphQueries.d.ts +23 -0
- package/dist/cli/graphQueries.d.ts.map +1 -0
- package/dist/cli/graphQueries.js +257 -0
- package/dist/cli/graphQueries.js.map +1 -0
- package/dist/cli/grep.d.ts +10 -0
- package/dist/cli/grep.d.ts.map +1 -0
- package/dist/cli/grep.js +61 -0
- package/dist/cli/grep.js.map +1 -0
- package/dist/cli/help.d.ts +52 -0
- package/dist/cli/help.d.ts.map +1 -0
- package/dist/cli/help.js +749 -0
- package/dist/cli/help.js.map +1 -0
- package/dist/cli/impact.d.ts +24 -0
- package/dist/cli/impact.d.ts.map +1 -0
- package/dist/cli/impact.js +481 -0
- package/dist/cli/impact.js.map +1 -0
- package/dist/cli/index.d.ts +43 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +112 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/indexPolicy.d.ts +36 -0
- package/dist/cli/indexPolicy.d.ts.map +1 -0
- package/dist/cli/indexPolicy.js +168 -0
- package/dist/cli/indexPolicy.js.map +1 -0
- package/dist/cli/inspect.d.ts +30 -0
- package/dist/cli/inspect.d.ts.map +1 -0
- package/dist/cli/inspect.js +323 -0
- package/dist/cli/inspect.js.map +1 -0
- package/dist/cli/install.d.ts +14 -0
- package/dist/cli/install.d.ts.map +1 -0
- package/dist/cli/install.js +273 -0
- package/dist/cli/install.js.map +1 -0
- package/dist/cli/invocationContext.d.ts +77 -0
- package/dist/cli/invocationContext.d.ts.map +1 -0
- package/dist/cli/invocationContext.js +357 -0
- package/dist/cli/invocationContext.js.map +1 -0
- package/dist/cli/lifecycle.d.ts +11 -0
- package/dist/cli/lifecycle.d.ts.map +1 -0
- package/dist/cli/lifecycle.js +81 -0
- package/dist/cli/lifecycle.js.map +1 -0
- package/dist/cli/links.d.ts +11 -0
- package/dist/cli/links.d.ts.map +1 -0
- package/dist/cli/links.js +53 -0
- package/dist/cli/links.js.map +1 -0
- package/dist/cli/location.d.ts +5 -0
- package/dist/cli/location.d.ts.map +1 -0
- package/dist/cli/location.js +11 -0
- package/dist/cli/location.js.map +1 -0
- package/dist/cli/mcp.d.ts +7 -0
- package/dist/cli/mcp.d.ts.map +1 -0
- package/dist/cli/mcp.js +60 -0
- package/dist/cli/mcp.js.map +1 -0
- package/dist/cli/navigation.d.ts +23 -0
- package/dist/cli/navigation.d.ts.map +1 -0
- package/dist/cli/navigation.js +367 -0
- package/dist/cli/navigation.js.map +1 -0
- package/dist/cli/options.d.ts +21 -0
- package/dist/cli/options.d.ts.map +1 -0
- package/dist/cli/options.js +694 -0
- package/dist/cli/options.js.map +1 -0
- package/dist/cli/orient.d.ts +6 -0
- package/dist/cli/orient.d.ts.map +1 -0
- package/dist/cli/orient.js +72 -0
- package/dist/cli/orient.js.map +1 -0
- package/dist/cli/packet.d.ts +4 -0
- package/dist/cli/packet.d.ts.map +1 -0
- package/dist/cli/packet.js +53 -0
- package/dist/cli/packet.js.map +1 -0
- package/dist/cli/pretty.d.ts +9 -0
- package/dist/cli/pretty.d.ts.map +1 -0
- package/dist/cli/pretty.js +91 -0
- package/dist/cli/pretty.js.map +1 -0
- package/dist/cli/progress.d.ts +20 -0
- package/dist/cli/progress.d.ts.map +1 -0
- package/dist/cli/progress.js +156 -0
- package/dist/cli/progress.js.map +1 -0
- package/dist/cli/projectFile.d.ts +13 -0
- package/dist/cli/projectFile.d.ts.map +1 -0
- package/dist/cli/projectFile.js +23 -0
- package/dist/cli/projectFile.js.map +1 -0
- package/dist/cli/refactorPlan.d.ts +6 -0
- package/dist/cli/refactorPlan.d.ts.map +1 -0
- package/dist/cli/refactorPlan.js +84 -0
- package/dist/cli/refactorPlan.js.map +1 -0
- package/dist/cli/renamePreview.d.ts +4 -0
- package/dist/cli/renamePreview.d.ts.map +1 -0
- package/dist/cli/renamePreview.js +86 -0
- package/dist/cli/renamePreview.js.map +1 -0
- package/dist/cli/review.d.ts +36 -0
- package/dist/cli/review.d.ts.map +1 -0
- package/dist/cli/review.js +302 -0
- package/dist/cli/review.js.map +1 -0
- package/dist/cli/rootPolicy.d.ts +53 -0
- package/dist/cli/rootPolicy.d.ts.map +1 -0
- package/dist/cli/rootPolicy.js +190 -0
- package/dist/cli/rootPolicy.js.map +1 -0
- package/dist/cli/search.d.ts +8 -0
- package/dist/cli/search.d.ts.map +1 -0
- package/dist/cli/search.js +49 -0
- package/dist/cli/search.js.map +1 -0
- package/dist/cli/skill.d.ts +13 -0
- package/dist/cli/skill.d.ts.map +1 -0
- package/dist/cli/skill.js +227 -0
- package/dist/cli/skill.js.map +1 -0
- package/dist/cli/sql.d.ts +6 -0
- package/dist/cli/sql.d.ts.map +1 -0
- package/dist/cli/sql.js +37 -0
- package/dist/cli/sql.js.map +1 -0
- package/dist/cli/symbols.d.ts +4 -0
- package/dist/cli/symbols.d.ts.map +1 -0
- package/dist/cli/symbols.js +59 -0
- package/dist/cli/symbols.js.map +1 -0
- package/dist/cli/typeHierarchy.d.ts +6 -0
- package/dist/cli/typeHierarchy.d.ts.map +1 -0
- package/dist/cli/typeHierarchy.js +81 -0
- package/dist/cli/typeHierarchy.js.map +1 -0
- package/dist/cli/viewer.d.ts +27 -0
- package/dist/cli/viewer.d.ts.map +1 -0
- package/dist/cli/viewer.js +313 -0
- package/dist/cli/viewer.js.map +1 -0
- package/dist/cli.d.ts +7 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +185 -0
- package/dist/cli.js.map +1 -0
- package/dist/cliBootstrap.d.ts +3 -0
- package/dist/cliBootstrap.d.ts.map +1 -0
- package/dist/cliBootstrap.js +10 -0
- package/dist/cliBootstrap.js.map +1 -0
- package/dist/config.d.ts +18 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +141 -0
- package/dist/config.js.map +1 -0
- package/dist/documentLinks/asciidoc.d.ts +3 -0
- package/dist/documentLinks/asciidoc.d.ts.map +1 -0
- package/dist/documentLinks/asciidoc.js +115 -0
- package/dist/documentLinks/asciidoc.js.map +1 -0
- package/dist/documentLinks/check.d.ts +31 -0
- package/dist/documentLinks/check.d.ts.map +1 -0
- package/dist/documentLinks/check.js +272 -0
- package/dist/documentLinks/check.js.map +1 -0
- package/dist/documentLinks/html.d.ts +5 -0
- package/dist/documentLinks/html.d.ts.map +1 -0
- package/dist/documentLinks/html.js +324 -0
- package/dist/documentLinks/html.js.map +1 -0
- package/dist/documentLinks/markdown.d.ts +15 -0
- package/dist/documentLinks/markdown.d.ts.map +1 -0
- package/dist/documentLinks/markdown.js +538 -0
- package/dist/documentLinks/markdown.js.map +1 -0
- package/dist/documentLinks/rst.d.ts +3 -0
- package/dist/documentLinks/rst.d.ts.map +1 -0
- package/dist/documentLinks/rst.js +179 -0
- package/dist/documentLinks/rst.js.map +1 -0
- package/dist/documentLinks/sfc.d.ts +4 -0
- package/dist/documentLinks/sfc.d.ts.map +1 -0
- package/dist/documentLinks/sfc.js +30 -0
- package/dist/documentLinks/sfc.js.map +1 -0
- package/dist/documentLinks/shared.d.ts +11 -0
- package/dist/documentLinks/shared.d.ts.map +1 -0
- package/dist/documentLinks/shared.js +147 -0
- package/dist/documentLinks/shared.js.map +1 -0
- package/dist/documentLinks.d.ts +12 -0
- package/dist/documentLinks.d.ts.map +1 -0
- package/dist/documentLinks.js +50 -0
- package/dist/documentLinks.js.map +1 -0
- package/dist/drift/artifact.d.ts +3 -0
- package/dist/drift/artifact.d.ts.map +1 -0
- package/dist/drift/artifact.js +170 -0
- package/dist/drift/artifact.js.map +1 -0
- package/dist/drift/compare.d.ts +5 -0
- package/dist/drift/compare.d.ts.map +1 -0
- package/dist/drift/compare.js +355 -0
- package/dist/drift/compare.js.map +1 -0
- package/dist/drift/git.d.ts +3 -0
- package/dist/drift/git.d.ts.map +1 -0
- package/dist/drift/git.js +128 -0
- package/dist/drift/git.js.map +1 -0
- package/dist/drift/index.d.ts +8 -0
- package/dist/drift/index.d.ts.map +1 -0
- package/dist/drift/index.js +7 -0
- package/dist/drift/index.js.map +1 -0
- package/dist/drift/languages.d.ts +2 -0
- package/dist/drift/languages.d.ts.map +1 -0
- package/dist/drift/languages.js +18 -0
- package/dist/drift/languages.js.map +1 -0
- package/dist/drift/report.d.ts +6 -0
- package/dist/drift/report.d.ts.map +1 -0
- package/dist/drift/report.js +75 -0
- package/dist/drift/report.js.map +1 -0
- package/dist/drift/snapshot.d.ts +3 -0
- package/dist/drift/snapshot.d.ts.map +1 -0
- package/dist/drift/snapshot.js +164 -0
- package/dist/drift/snapshot.js.map +1 -0
- package/dist/drift/types.d.ts +142 -0
- package/dist/drift/types.d.ts.map +1 -0
- package/dist/drift/types.js +2 -0
- package/dist/drift/types.js.map +1 -0
- package/dist/duplicate-keywords.d.ts +3 -0
- package/dist/duplicate-keywords.d.ts.map +1 -0
- package/dist/duplicate-keywords.js +155 -0
- package/dist/duplicate-keywords.js.map +1 -0
- package/dist/duplicate-token-normalization.d.ts +6 -0
- package/dist/duplicate-token-normalization.d.ts.map +1 -0
- package/dist/duplicate-token-normalization.js +53 -0
- package/dist/duplicate-token-normalization.js.map +1 -0
- package/dist/duplicates/scoring.d.ts +121 -0
- package/dist/duplicates/scoring.d.ts.map +1 -0
- package/dist/duplicates/scoring.js +1245 -0
- package/dist/duplicates/scoring.js.map +1 -0
- package/dist/duplicates/types.d.ts +216 -0
- package/dist/duplicates/types.d.ts.map +1 -0
- package/dist/duplicates/types.js +2 -0
- package/dist/duplicates/types.js.map +1 -0
- package/dist/duplicates/unitCache.d.ts +40 -0
- package/dist/duplicates/unitCache.d.ts.map +1 -0
- package/dist/duplicates/unitCache.js +352 -0
- package/dist/duplicates/unitCache.js.map +1 -0
- package/dist/duplicates/units.d.ts +60 -0
- package/dist/duplicates/units.d.ts.map +1 -0
- package/dist/duplicates/units.js +447 -0
- package/dist/duplicates/units.js.map +1 -0
- package/dist/duplicates.d.ts +14 -0
- package/dist/duplicates.d.ts.map +1 -0
- package/dist/duplicates.js +400 -0
- package/dist/duplicates.js.map +1 -0
- package/dist/duplicatesLeads.d.ts +39 -0
- package/dist/duplicatesLeads.d.ts.map +1 -0
- package/dist/duplicatesLeads.js +112 -0
- package/dist/duplicatesLeads.js.map +1 -0
- package/dist/frameworks/angularjs.d.ts +18 -0
- package/dist/frameworks/angularjs.d.ts.map +1 -0
- package/dist/frameworks/angularjs.js +427 -0
- package/dist/frameworks/angularjs.js.map +1 -0
- package/dist/graph-builder.d.ts +35 -0
- package/dist/graph-builder.d.ts.map +1 -0
- package/dist/graph-builder.js +132 -0
- package/dist/graph-builder.js.map +1 -0
- package/dist/graph-edge-collector.d.ts +57 -0
- package/dist/graph-edge-collector.d.ts.map +1 -0
- package/dist/graph-edge-collector.js +199 -0
- package/dist/graph-edge-collector.js.map +1 -0
- package/dist/graphs/adjacency.d.ts +10 -0
- package/dist/graphs/adjacency.d.ts.map +1 -0
- package/dist/graphs/adjacency.js +38 -0
- package/dist/graphs/adjacency.js.map +1 -0
- package/dist/graphs/angularjs.d.ts +5 -0
- package/dist/graphs/angularjs.d.ts.map +1 -0
- package/dist/graphs/angularjs.js +88 -0
- package/dist/graphs/angularjs.js.map +1 -0
- package/dist/graphs/cycles.d.ts +24 -0
- package/dist/graphs/cycles.d.ts.map +1 -0
- package/dist/graphs/cycles.js +159 -0
- package/dist/graphs/cycles.js.map +1 -0
- package/dist/graphs/edgeResolution.d.ts +25 -0
- package/dist/graphs/edgeResolution.d.ts.map +1 -0
- package/dist/graphs/edgeResolution.js +97 -0
- package/dist/graphs/edgeResolution.js.map +1 -0
- package/dist/graphs/external/cache.d.ts +6 -0
- package/dist/graphs/external/cache.d.ts.map +1 -0
- package/dist/graphs/external/cache.js +21 -0
- package/dist/graphs/external/cache.js.map +1 -0
- package/dist/graphs/external/context.d.ts +9 -0
- package/dist/graphs/external/context.d.ts.map +1 -0
- package/dist/graphs/external/context.js +93 -0
- package/dist/graphs/external/context.js.map +1 -0
- package/dist/graphs/external/manifests.d.ts +8 -0
- package/dist/graphs/external/manifests.d.ts.map +1 -0
- package/dist/graphs/external/manifests.js +429 -0
- package/dist/graphs/external/manifests.js.map +1 -0
- package/dist/graphs/external/stdlib.d.ts +3 -0
- package/dist/graphs/external/stdlib.d.ts.map +1 -0
- package/dist/graphs/external/stdlib.js +166 -0
- package/dist/graphs/external/stdlib.js.map +1 -0
- package/dist/graphs/external-classifier.d.ts +16 -0
- package/dist/graphs/external-classifier.d.ts.map +1 -0
- package/dist/graphs/external-classifier.js +46 -0
- package/dist/graphs/external-classifier.js.map +1 -0
- package/dist/graphs/grep.d.ts +66 -0
- package/dist/graphs/grep.d.ts.map +1 -0
- package/dist/graphs/grep.js +131 -0
- package/dist/graphs/grep.js.map +1 -0
- package/dist/graphs/hotspots.d.ts +13 -0
- package/dist/graphs/hotspots.d.ts.map +1 -0
- package/dist/graphs/hotspots.js +88 -0
- package/dist/graphs/hotspots.js.map +1 -0
- package/dist/graphs/limits.d.ts +2 -0
- package/dist/graphs/limits.d.ts.map +1 -0
- package/dist/graphs/limits.js +7 -0
- package/dist/graphs/limits.js.map +1 -0
- package/dist/graphs/queries.d.ts +4 -0
- package/dist/graphs/queries.d.ts.map +1 -0
- package/dist/graphs/queries.js +4 -0
- package/dist/graphs/queries.js.map +1 -0
- package/dist/graphs/render.d.ts +6 -0
- package/dist/graphs/render.d.ts.map +1 -0
- package/dist/graphs/render.js +85 -0
- package/dist/graphs/render.js.map +1 -0
- package/dist/graphs/specifiers.d.ts +24 -0
- package/dist/graphs/specifiers.d.ts.map +1 -0
- package/dist/graphs/specifiers.js +434 -0
- package/dist/graphs/specifiers.js.map +1 -0
- package/dist/graphs/symbol-graph-detailed/ast.d.ts +25 -0
- package/dist/graphs/symbol-graph-detailed/ast.d.ts.map +1 -0
- package/dist/graphs/symbol-graph-detailed/ast.js +167 -0
- package/dist/graphs/symbol-graph-detailed/ast.js.map +1 -0
- package/dist/graphs/symbol-graph-detailed/edgePasses.d.ts +30 -0
- package/dist/graphs/symbol-graph-detailed/edgePasses.d.ts.map +1 -0
- package/dist/graphs/symbol-graph-detailed/edgePasses.js +484 -0
- package/dist/graphs/symbol-graph-detailed/edgePasses.js.map +1 -0
- package/dist/graphs/symbol-graph-detailed/importAliases.d.ts +10 -0
- package/dist/graphs/symbol-graph-detailed/importAliases.d.ts.map +1 -0
- package/dist/graphs/symbol-graph-detailed/importAliases.js +44 -0
- package/dist/graphs/symbol-graph-detailed/importAliases.js.map +1 -0
- package/dist/graphs/symbol-graph-detailed/memberChains.d.ts +17 -0
- package/dist/graphs/symbol-graph-detailed/memberChains.d.ts.map +1 -0
- package/dist/graphs/symbol-graph-detailed/memberChains.js +30 -0
- package/dist/graphs/symbol-graph-detailed/memberChains.js.map +1 -0
- package/dist/graphs/symbol-graph-detailed.d.ts +14 -0
- package/dist/graphs/symbol-graph-detailed.d.ts.map +1 -0
- package/dist/graphs/symbol-graph-detailed.js +180 -0
- package/dist/graphs/symbol-graph-detailed.js.map +1 -0
- package/dist/graphs/symbol-graph.d.ts +56 -0
- package/dist/graphs/symbol-graph.d.ts.map +1 -0
- package/dist/graphs/symbol-graph.js +180 -0
- package/dist/graphs/symbol-graph.js.map +1 -0
- package/dist/graphs/symbol-render.d.ts +22 -0
- package/dist/graphs/symbol-render.d.ts.map +1 -0
- package/dist/graphs/symbol-render.js +184 -0
- package/dist/graphs/symbol-render.js.map +1 -0
- package/dist/graphs/traversal.d.ts +20 -0
- package/dist/graphs/traversal.d.ts.map +1 -0
- package/dist/graphs/traversal.js +75 -0
- package/dist/graphs/traversal.js.map +1 -0
- package/dist/graphs/types.d.ts +18 -0
- package/dist/graphs/types.d.ts.map +1 -0
- package/dist/graphs/types.js +2 -0
- package/dist/graphs/types.js.map +1 -0
- package/dist/graphs/unresolved.d.ts +13 -0
- package/dist/graphs/unresolved.d.ts.map +1 -0
- package/dist/graphs/unresolved.js +47 -0
- package/dist/graphs/unresolved.js.map +1 -0
- package/dist/graphs.d.ts +17 -0
- package/dist/graphs.d.ts.map +1 -0
- package/dist/graphs.js +11 -0
- package/dist/graphs.js.map +1 -0
- package/dist/impact/analyzer.d.ts +8 -0
- package/dist/impact/analyzer.d.ts.map +1 -0
- package/dist/impact/analyzer.js +156 -0
- package/dist/impact/analyzer.js.map +1 -0
- package/dist/impact/budgets.d.ts +36 -0
- package/dist/impact/budgets.d.ts.map +1 -0
- package/dist/impact/budgets.js +178 -0
- package/dist/impact/budgets.js.map +1 -0
- package/dist/impact/call-compatibility/providers/index.d.ts +14 -0
- package/dist/impact/call-compatibility/providers/index.d.ts.map +1 -0
- package/dist/impact/call-compatibility/providers/index.js +58 -0
- package/dist/impact/call-compatibility/providers/index.js.map +1 -0
- package/dist/impact/call-compatibility/providers/types.d.ts +26 -0
- package/dist/impact/call-compatibility/providers/types.d.ts.map +1 -0
- package/dist/impact/call-compatibility/providers/types.js +2 -0
- package/dist/impact/call-compatibility/providers/types.js.map +1 -0
- package/dist/impact/call-compatibility/types.d.ts +24 -0
- package/dist/impact/call-compatibility/types.d.ts.map +1 -0
- package/dist/impact/call-compatibility/types.js +2 -0
- package/dist/impact/call-compatibility/types.js.map +1 -0
- package/dist/impact/callCompatibility.d.ts +17 -0
- package/dist/impact/callCompatibility.d.ts.map +1 -0
- package/dist/impact/callCompatibility.js +1546 -0
- package/dist/impact/callCompatibility.js.map +1 -0
- package/dist/impact/collect.d.ts +27 -0
- package/dist/impact/collect.d.ts.map +1 -0
- package/dist/impact/collect.js +97 -0
- package/dist/impact/collect.js.map +1 -0
- package/dist/impact/context.d.ts +42 -0
- package/dist/impact/context.d.ts.map +1 -0
- package/dist/impact/context.js +286 -0
- package/dist/impact/context.js.map +1 -0
- package/dist/impact/direct.d.ts +26 -0
- package/dist/impact/direct.d.ts.map +1 -0
- package/dist/impact/direct.js +187 -0
- package/dist/impact/direct.js.map +1 -0
- package/dist/impact/hunks.d.ts +14 -0
- package/dist/impact/hunks.d.ts.map +1 -0
- package/dist/impact/hunks.js +87 -0
- package/dist/impact/hunks.js.map +1 -0
- package/dist/impact/index.d.ts +22 -0
- package/dist/impact/index.d.ts.map +1 -0
- package/dist/impact/index.js +27 -0
- package/dist/impact/index.js.map +1 -0
- package/dist/impact/map.d.ts +12 -0
- package/dist/impact/map.d.ts.map +1 -0
- package/dist/impact/map.js +753 -0
- package/dist/impact/map.js.map +1 -0
- package/dist/impact/memberResolutionCoverage.d.ts +14 -0
- package/dist/impact/memberResolutionCoverage.d.ts.map +1 -0
- package/dist/impact/memberResolutionCoverage.js +38 -0
- package/dist/impact/memberResolutionCoverage.js.map +1 -0
- package/dist/impact/parse.d.ts +5 -0
- package/dist/impact/parse.d.ts.map +1 -0
- package/dist/impact/parse.js +239 -0
- package/dist/impact/parse.js.map +1 -0
- package/dist/impact/path.d.ts +14 -0
- package/dist/impact/path.d.ts.map +1 -0
- package/dist/impact/path.js +103 -0
- package/dist/impact/path.js.map +1 -0
- package/dist/impact/providers/base.d.ts +10 -0
- package/dist/impact/providers/base.d.ts.map +1 -0
- package/dist/impact/providers/base.js +239 -0
- package/dist/impact/providers/base.js.map +1 -0
- package/dist/impact/referenceCache.d.ts +12 -0
- package/dist/impact/referenceCache.d.ts.map +1 -0
- package/dist/impact/referenceCache.js +101 -0
- package/dist/impact/referenceCache.js.map +1 -0
- package/dist/impact/report-suggestions.d.ts +4 -0
- package/dist/impact/report-suggestions.d.ts.map +1 -0
- package/dist/impact/report-suggestions.js +886 -0
- package/dist/impact/report-suggestions.js.map +1 -0
- package/dist/impact/report.d.ts +8 -0
- package/dist/impact/report.d.ts.map +1 -0
- package/dist/impact/report.js +405 -0
- package/dist/impact/report.js.map +1 -0
- package/dist/impact/reportCompact.d.ts +8 -0
- package/dist/impact/reportCompact.d.ts.map +1 -0
- package/dist/impact/reportCompact.js +145 -0
- package/dist/impact/reportCompact.js.map +1 -0
- package/dist/impact/reportFull.d.ts +10 -0
- package/dist/impact/reportFull.d.ts.map +1 -0
- package/dist/impact/reportFull.js +66 -0
- package/dist/impact/reportFull.js.map +1 -0
- package/dist/impact/reportParts.d.ts +42 -0
- package/dist/impact/reportParts.d.ts.map +1 -0
- package/dist/impact/reportParts.js +2 -0
- package/dist/impact/reportParts.js.map +1 -0
- package/dist/impact/reportShared.d.ts +76 -0
- package/dist/impact/reportShared.d.ts.map +1 -0
- package/dist/impact/reportShared.js +130 -0
- package/dist/impact/reportShared.js.map +1 -0
- package/dist/impact/severity.d.ts +29 -0
- package/dist/impact/severity.d.ts.map +1 -0
- package/dist/impact/severity.js +178 -0
- package/dist/impact/severity.js.map +1 -0
- package/dist/impact/signature-node-utils.d.ts +5 -0
- package/dist/impact/signature-node-utils.d.ts.map +1 -0
- package/dist/impact/signature-node-utils.js +29 -0
- package/dist/impact/signature-node-utils.js.map +1 -0
- package/dist/impact/streaming.d.ts +60 -0
- package/dist/impact/streaming.d.ts.map +1 -0
- package/dist/impact/streaming.js +285 -0
- package/dist/impact/streaming.js.map +1 -0
- package/dist/impact/suggestions.d.ts +4 -0
- package/dist/impact/suggestions.d.ts.map +1 -0
- package/dist/impact/suggestions.js +317 -0
- package/dist/impact/suggestions.js.map +1 -0
- package/dist/impact/testPatterns.d.ts +6 -0
- package/dist/impact/testPatterns.d.ts.map +1 -0
- package/dist/impact/testPatterns.js +65 -0
- package/dist/impact/testPatterns.js.map +1 -0
- package/dist/impact/transitive.d.ts +12 -0
- package/dist/impact/transitive.d.ts.map +1 -0
- package/dist/impact/transitive.js +188 -0
- package/dist/impact/transitive.js.map +1 -0
- package/dist/impact/types.d.ts +556 -0
- package/dist/impact/types.d.ts.map +1 -0
- package/dist/impact/types.js +17 -0
- package/dist/impact/types.js.map +1 -0
- package/dist/index.d.ts +60 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +55 -0
- package/dist/index.js.map +1 -0
- package/dist/indexer/build-cache/manifest.d.ts +48 -0
- package/dist/indexer/build-cache/manifest.d.ts.map +1 -0
- package/dist/indexer/build-cache/manifest.js +228 -0
- package/dist/indexer/build-cache/manifest.js.map +1 -0
- package/dist/indexer/build-cache/module-cache.d.ts +20 -0
- package/dist/indexer/build-cache/module-cache.d.ts.map +1 -0
- package/dist/indexer/build-cache/module-cache.js +339 -0
- package/dist/indexer/build-cache/module-cache.js.map +1 -0
- package/dist/indexer/build-cache/options.d.ts +50 -0
- package/dist/indexer/build-cache/options.d.ts.map +1 -0
- package/dist/indexer/build-cache/options.js +276 -0
- package/dist/indexer/build-cache/options.js.map +1 -0
- package/dist/indexer/build-cache/project-snapshot.d.ts +30 -0
- package/dist/indexer/build-cache/project-snapshot.d.ts.map +1 -0
- package/dist/indexer/build-cache/project-snapshot.js +928 -0
- package/dist/indexer/build-cache/project-snapshot.js.map +1 -0
- package/dist/indexer/build-cache/reports.d.ts +13 -0
- package/dist/indexer/build-cache/reports.d.ts.map +1 -0
- package/dist/indexer/build-cache/reports.js +134 -0
- package/dist/indexer/build-cache/reports.js.map +1 -0
- package/dist/indexer/build-cache.d.ts +6 -0
- package/dist/indexer/build-cache.d.ts.map +1 -0
- package/dist/indexer/build-cache.js +6 -0
- package/dist/indexer/build-cache.js.map +1 -0
- package/dist/indexer/build-index.d.ts +28 -0
- package/dist/indexer/build-index.d.ts.map +1 -0
- package/dist/indexer/build-index.js +1579 -0
- package/dist/indexer/build-index.js.map +1 -0
- package/dist/indexer/build-manifest.d.ts +16 -0
- package/dist/indexer/build-manifest.d.ts.map +1 -0
- package/dist/indexer/build-manifest.js +43 -0
- package/dist/indexer/build-manifest.js.map +1 -0
- package/dist/indexer/build-workers.d.ts +27 -0
- package/dist/indexer/build-workers.d.ts.map +1 -0
- package/dist/indexer/build-workers.js +209 -0
- package/dist/indexer/build-workers.js.map +1 -0
- package/dist/indexer/call-hierarchy.d.ts +33 -0
- package/dist/indexer/call-hierarchy.d.ts.map +1 -0
- package/dist/indexer/call-hierarchy.js +192 -0
- package/dist/indexer/call-hierarchy.js.map +1 -0
- package/dist/indexer/declarations.d.ts +15 -0
- package/dist/indexer/declarations.d.ts.map +1 -0
- package/dist/indexer/declarations.js +95 -0
- package/dist/indexer/declarations.js.map +1 -0
- package/dist/indexer/finalize.d.ts +20 -0
- package/dist/indexer/finalize.d.ts.map +1 -0
- package/dist/indexer/finalize.js +34 -0
- package/dist/indexer/finalize.js.map +1 -0
- package/dist/indexer/import-types.d.ts +48 -0
- package/dist/indexer/import-types.d.ts.map +1 -0
- package/dist/indexer/import-types.js +2 -0
- package/dist/indexer/import-types.js.map +1 -0
- package/dist/indexer/imports/context.d.ts +7 -0
- package/dist/indexer/imports/context.d.ts.map +1 -0
- package/dist/indexer/imports/context.js +2 -0
- package/dist/indexer/imports/context.js.map +1 -0
- package/dist/indexer/imports/graphOnly.d.ts +13 -0
- package/dist/indexer/imports/graphOnly.d.ts.map +1 -0
- package/dist/indexer/imports/graphOnly.js +40 -0
- package/dist/indexer/imports/graphOnly.js.map +1 -0
- package/dist/indexer/imports/jsTextImports.d.ts +9 -0
- package/dist/indexer/imports/jsTextImports.d.ts.map +1 -0
- package/dist/indexer/imports/jsTextImports.js +173 -0
- package/dist/indexer/imports/jsTextImports.js.map +1 -0
- package/dist/indexer/imports/languageSpecific.d.ts +26 -0
- package/dist/indexer/imports/languageSpecific.d.ts.map +1 -0
- package/dist/indexer/imports/languageSpecific.js +444 -0
- package/dist/indexer/imports/languageSpecific.js.map +1 -0
- package/dist/indexer/imports/nativeCaptures.d.ts +16 -0
- package/dist/indexer/imports/nativeCaptures.d.ts.map +1 -0
- package/dist/indexer/imports/nativeCaptures.js +139 -0
- package/dist/indexer/imports/nativeCaptures.js.map +1 -0
- package/dist/indexer/imports/python.d.ts +8 -0
- package/dist/indexer/imports/python.d.ts.map +1 -0
- package/dist/indexer/imports/python.js +116 -0
- package/dist/indexer/imports/python.js.map +1 -0
- package/dist/indexer/imports.d.ts +21 -0
- package/dist/indexer/imports.d.ts.map +1 -0
- package/dist/indexer/imports.js +188 -0
- package/dist/indexer/imports.js.map +1 -0
- package/dist/indexer/incremental-plan.d.ts +71 -0
- package/dist/indexer/incremental-plan.d.ts.map +1 -0
- package/dist/indexer/incremental-plan.js +212 -0
- package/dist/indexer/incremental-plan.js.map +1 -0
- package/dist/indexer/load-current-index.d.ts +51 -0
- package/dist/indexer/load-current-index.d.ts.map +1 -0
- package/dist/indexer/load-current-index.js +53 -0
- package/dist/indexer/load-current-index.js.map +1 -0
- package/dist/indexer/locals-and-exports.d.ts +12 -0
- package/dist/indexer/locals-and-exports.d.ts.map +1 -0
- package/dist/indexer/locals-and-exports.js +872 -0
- package/dist/indexer/locals-and-exports.js.map +1 -0
- package/dist/indexer/navigation-goto.d.ts +13 -0
- package/dist/indexer/navigation-goto.d.ts.map +1 -0
- package/dist/indexer/navigation-goto.js +548 -0
- package/dist/indexer/navigation-goto.js.map +1 -0
- package/dist/indexer/navigation-local.d.ts +13 -0
- package/dist/indexer/navigation-local.d.ts.map +1 -0
- package/dist/indexer/navigation-local.js +173 -0
- package/dist/indexer/navigation-local.js.map +1 -0
- package/dist/indexer/navigation-php.d.ts +7 -0
- package/dist/indexer/navigation-php.d.ts.map +1 -0
- package/dist/indexer/navigation-php.js +90 -0
- package/dist/indexer/navigation-php.js.map +1 -0
- package/dist/indexer/navigation-provenance.d.ts +14 -0
- package/dist/indexer/navigation-provenance.d.ts.map +1 -0
- package/dist/indexer/navigation-provenance.js +26 -0
- package/dist/indexer/navigation-provenance.js.map +1 -0
- package/dist/indexer/navigation-references.d.ts +30 -0
- package/dist/indexer/navigation-references.d.ts.map +1 -0
- package/dist/indexer/navigation-references.js +299 -0
- package/dist/indexer/navigation-references.js.map +1 -0
- package/dist/indexer/navigation-resolve.d.ts +12 -0
- package/dist/indexer/navigation-resolve.d.ts.map +1 -0
- package/dist/indexer/navigation-resolve.js +389 -0
- package/dist/indexer/navigation-resolve.js.map +1 -0
- package/dist/indexer/navigation.d.ts +19 -0
- package/dist/indexer/navigation.d.ts.map +1 -0
- package/dist/indexer/navigation.js +468 -0
- package/dist/indexer/navigation.js.map +1 -0
- package/dist/indexer/parse-context.d.ts +47 -0
- package/dist/indexer/parse-context.d.ts.map +1 -0
- package/dist/indexer/parse-context.js +127 -0
- package/dist/indexer/parse-context.js.map +1 -0
- package/dist/indexer/parsed-cache.d.ts +6 -0
- package/dist/indexer/parsed-cache.d.ts.map +1 -0
- package/dist/indexer/parsed-cache.js +32 -0
- package/dist/indexer/parsed-cache.js.map +1 -0
- package/dist/indexer/reference-candidate-types.d.ts +5 -0
- package/dist/indexer/reference-candidate-types.d.ts.map +1 -0
- package/dist/indexer/reference-candidate-types.js +2 -0
- package/dist/indexer/reference-candidate-types.js.map +1 -0
- package/dist/indexer/reference-candidates.d.ts +6 -0
- package/dist/indexer/reference-candidates.d.ts.map +1 -0
- package/dist/indexer/reference-candidates.js +28 -0
- package/dist/indexer/reference-candidates.js.map +1 -0
- package/dist/indexer/reference-context.d.ts +13 -0
- package/dist/indexer/reference-context.d.ts.map +1 -0
- package/dist/indexer/reference-context.js +103 -0
- package/dist/indexer/reference-context.js.map +1 -0
- package/dist/indexer/scope-types.d.ts +25 -0
- package/dist/indexer/scope-types.d.ts.map +1 -0
- package/dist/indexer/scope-types.js +2 -0
- package/dist/indexer/scope-types.js.map +1 -0
- package/dist/indexer/scope.d.ts +11 -0
- package/dist/indexer/scope.d.ts.map +1 -0
- package/dist/indexer/scope.js +424 -0
- package/dist/indexer/scope.js.map +1 -0
- package/dist/indexer/shared.d.ts +4 -0
- package/dist/indexer/shared.d.ts.map +1 -0
- package/dist/indexer/shared.js +9 -0
- package/dist/indexer/shared.js.map +1 -0
- package/dist/indexer/symbols.d.ts +60 -0
- package/dist/indexer/symbols.d.ts.map +1 -0
- package/dist/indexer/symbols.js +272 -0
- package/dist/indexer/symbols.js.map +1 -0
- package/dist/indexer/type-hierarchy.d.ts +52 -0
- package/dist/indexer/type-hierarchy.d.ts.map +1 -0
- package/dist/indexer/type-hierarchy.js +296 -0
- package/dist/indexer/type-hierarchy.js.map +1 -0
- package/dist/indexer/types.d.ts +376 -0
- package/dist/indexer/types.d.ts.map +1 -0
- package/dist/indexer/types.js +15 -0
- package/dist/indexer/types.js.map +1 -0
- package/dist/indexer/workspace-symbols.d.ts +35 -0
- package/dist/indexer/workspace-symbols.d.ts.map +1 -0
- package/dist/indexer/workspace-symbols.js +226 -0
- package/dist/indexer/workspace-symbols.js.map +1 -0
- package/dist/indexer.d.ts +44 -0
- package/dist/indexer.d.ts.map +1 -0
- package/dist/indexer.js +35 -0
- package/dist/indexer.js.map +1 -0
- package/dist/installer/registry.d.ts +68 -0
- package/dist/installer/registry.d.ts.map +1 -0
- package/dist/installer/registry.js +1208 -0
- package/dist/installer/registry.js.map +1 -0
- package/dist/languages/all.d.ts +28 -0
- package/dist/languages/all.d.ts.map +1 -0
- package/dist/languages/all.js +28 -0
- package/dist/languages/all.js.map +1 -0
- package/dist/languages/definitions/adoc.d.ts +2 -0
- package/dist/languages/definitions/adoc.d.ts.map +1 -0
- package/dist/languages/definitions/adoc.js +5 -0
- package/dist/languages/definitions/adoc.js.map +1 -0
- package/dist/languages/definitions/astro.d.ts +2 -0
- package/dist/languages/definitions/astro.d.ts.map +1 -0
- package/dist/languages/definitions/astro.js +5 -0
- package/dist/languages/definitions/astro.js.map +1 -0
- package/dist/languages/definitions/c.d.ts +2 -0
- package/dist/languages/definitions/c.d.ts.map +1 -0
- package/dist/languages/definitions/c.js +78 -0
- package/dist/languages/definitions/c.js.map +1 -0
- package/dist/languages/definitions/cFamily.d.ts +35 -0
- package/dist/languages/definitions/cFamily.d.ts.map +1 -0
- package/dist/languages/definitions/cFamily.js +179 -0
- package/dist/languages/definitions/cFamily.js.map +1 -0
- package/dist/languages/definitions/cpp.d.ts +2 -0
- package/dist/languages/definitions/cpp.d.ts.map +1 -0
- package/dist/languages/definitions/cpp.js +88 -0
- package/dist/languages/definitions/cpp.js.map +1 -0
- package/dist/languages/definitions/csharp.d.ts +3 -0
- package/dist/languages/definitions/csharp.d.ts.map +1 -0
- package/dist/languages/definitions/csharp.js +126 -0
- package/dist/languages/definitions/csharp.js.map +1 -0
- package/dist/languages/definitions/css.d.ts +3 -0
- package/dist/languages/definitions/css.d.ts.map +1 -0
- package/dist/languages/definitions/css.js +13 -0
- package/dist/languages/definitions/css.js.map +1 -0
- package/dist/languages/definitions/cssLike.d.ts +5 -0
- package/dist/languages/definitions/cssLike.d.ts.map +1 -0
- package/dist/languages/definitions/cssLike.js +32 -0
- package/dist/languages/definitions/cssLike.js.map +1 -0
- package/dist/languages/definitions/go.d.ts +3 -0
- package/dist/languages/definitions/go.d.ts.map +1 -0
- package/dist/languages/definitions/go.js +113 -0
- package/dist/languages/definitions/go.js.map +1 -0
- package/dist/languages/definitions/hbs.d.ts +2 -0
- package/dist/languages/definitions/hbs.d.ts.map +1 -0
- package/dist/languages/definitions/hbs.js +5 -0
- package/dist/languages/definitions/hbs.js.map +1 -0
- package/dist/languages/definitions/html.d.ts +3 -0
- package/dist/languages/definitions/html.d.ts.map +1 -0
- package/dist/languages/definitions/html.js +45 -0
- package/dist/languages/definitions/html.js.map +1 -0
- package/dist/languages/definitions/htmlStub.d.ts +18 -0
- package/dist/languages/definitions/htmlStub.d.ts.map +1 -0
- package/dist/languages/definitions/htmlStub.js +38 -0
- package/dist/languages/definitions/htmlStub.js.map +1 -0
- package/dist/languages/definitions/java.d.ts +3 -0
- package/dist/languages/definitions/java.d.ts.map +1 -0
- package/dist/languages/definitions/java.js +124 -0
- package/dist/languages/definitions/java.js.map +1 -0
- package/dist/languages/definitions/javascript.d.ts +3 -0
- package/dist/languages/definitions/javascript.d.ts.map +1 -0
- package/dist/languages/definitions/javascript.js +172 -0
- package/dist/languages/definitions/javascript.js.map +1 -0
- package/dist/languages/definitions/jsFamily.d.ts +5 -0
- package/dist/languages/definitions/jsFamily.d.ts.map +1 -0
- package/dist/languages/definitions/jsFamily.js +75 -0
- package/dist/languages/definitions/jsFamily.js.map +1 -0
- package/dist/languages/definitions/kotlin.d.ts +3 -0
- package/dist/languages/definitions/kotlin.d.ts.map +1 -0
- package/dist/languages/definitions/kotlin.js +152 -0
- package/dist/languages/definitions/kotlin.js.map +1 -0
- package/dist/languages/definitions/less.d.ts +3 -0
- package/dist/languages/definitions/less.d.ts.map +1 -0
- package/dist/languages/definitions/less.js +13 -0
- package/dist/languages/definitions/less.js.map +1 -0
- package/dist/languages/definitions/loadLanguage.d.ts +2 -0
- package/dist/languages/definitions/loadLanguage.d.ts.map +1 -0
- package/dist/languages/definitions/loadLanguage.js +2 -0
- package/dist/languages/definitions/loadLanguage.js.map +1 -0
- package/dist/languages/definitions/markdown.d.ts +2 -0
- package/dist/languages/definitions/markdown.d.ts.map +1 -0
- package/dist/languages/definitions/markdown.js +5 -0
- package/dist/languages/definitions/markdown.js.map +1 -0
- package/dist/languages/definitions/mdx.d.ts +2 -0
- package/dist/languages/definitions/mdx.d.ts.map +1 -0
- package/dist/languages/definitions/mdx.js +5 -0
- package/dist/languages/definitions/mdx.js.map +1 -0
- package/dist/languages/definitions/php.d.ts +3 -0
- package/dist/languages/definitions/php.d.ts.map +1 -0
- package/dist/languages/definitions/php.js +157 -0
- package/dist/languages/definitions/php.js.map +1 -0
- package/dist/languages/definitions/python.d.ts +3 -0
- package/dist/languages/definitions/python.d.ts.map +1 -0
- package/dist/languages/definitions/python.js +137 -0
- package/dist/languages/definitions/python.js.map +1 -0
- package/dist/languages/definitions/rst.d.ts +2 -0
- package/dist/languages/definitions/rst.d.ts.map +1 -0
- package/dist/languages/definitions/rst.js +5 -0
- package/dist/languages/definitions/rst.js.map +1 -0
- package/dist/languages/definitions/ruby.d.ts +3 -0
- package/dist/languages/definitions/ruby.d.ts.map +1 -0
- package/dist/languages/definitions/ruby.js +92 -0
- package/dist/languages/definitions/ruby.js.map +1 -0
- package/dist/languages/definitions/rust.d.ts +3 -0
- package/dist/languages/definitions/rust.d.ts.map +1 -0
- package/dist/languages/definitions/rust.js +146 -0
- package/dist/languages/definitions/rust.js.map +1 -0
- package/dist/languages/definitions/scss.d.ts +3 -0
- package/dist/languages/definitions/scss.d.ts.map +1 -0
- package/dist/languages/definitions/scss.js +58 -0
- package/dist/languages/definitions/scss.js.map +1 -0
- package/dist/languages/definitions/sql.d.ts +3 -0
- package/dist/languages/definitions/sql.d.ts.map +1 -0
- package/dist/languages/definitions/sql.js +36 -0
- package/dist/languages/definitions/sql.js.map +1 -0
- package/dist/languages/definitions/svelte.d.ts +3 -0
- package/dist/languages/definitions/svelte.d.ts.map +1 -0
- package/dist/languages/definitions/svelte.js +31 -0
- package/dist/languages/definitions/svelte.js.map +1 -0
- package/dist/languages/definitions/swift.d.ts +3 -0
- package/dist/languages/definitions/swift.d.ts.map +1 -0
- package/dist/languages/definitions/swift.js +188 -0
- package/dist/languages/definitions/swift.js.map +1 -0
- package/dist/languages/definitions/typescript.d.ts +4 -0
- package/dist/languages/definitions/typescript.d.ts.map +1 -0
- package/dist/languages/definitions/typescript.js +212 -0
- package/dist/languages/definitions/typescript.js.map +1 -0
- package/dist/languages/definitions/vue.d.ts +3 -0
- package/dist/languages/definitions/vue.d.ts.map +1 -0
- package/dist/languages/definitions/vue.js +31 -0
- package/dist/languages/definitions/vue.js.map +1 -0
- package/dist/languages/definitions/zig.d.ts +3 -0
- package/dist/languages/definitions/zig.d.ts.map +1 -0
- package/dist/languages/definitions/zig.js +75 -0
- package/dist/languages/definitions/zig.js.map +1 -0
- package/dist/languages/filePrep.d.ts +33 -0
- package/dist/languages/filePrep.d.ts.map +1 -0
- package/dist/languages/filePrep.js +77 -0
- package/dist/languages/filePrep.js.map +1 -0
- package/dist/languages/importStatementParsers.d.ts +55 -0
- package/dist/languages/importStatementParsers.d.ts.map +1 -0
- package/dist/languages/importStatementParsers.js +369 -0
- package/dist/languages/importStatementParsers.js.map +1 -0
- package/dist/languages/js-family.d.ts +2 -0
- package/dist/languages/js-family.d.ts.map +1 -0
- package/dist/languages/js-family.js +9 -0
- package/dist/languages/js-family.js.map +1 -0
- package/dist/languages/queryGenerator.d.ts +6 -0
- package/dist/languages/queryGenerator.d.ts.map +1 -0
- package/dist/languages/queryGenerator.js +46 -0
- package/dist/languages/queryGenerator.js.map +1 -0
- package/dist/languages/registry.d.ts +5 -0
- package/dist/languages/registry.d.ts.map +1 -0
- package/dist/languages/registry.js +11 -0
- package/dist/languages/registry.js.map +1 -0
- package/dist/languages/sfc.d.ts +30 -0
- package/dist/languages/sfc.d.ts.map +1 -0
- package/dist/languages/sfc.js +402 -0
- package/dist/languages/sfc.js.map +1 -0
- package/dist/languages/types.d.ts +110 -0
- package/dist/languages/types.d.ts.map +1 -0
- package/dist/languages/types.js +2 -0
- package/dist/languages/types.js.map +1 -0
- package/dist/languages.d.ts +63 -0
- package/dist/languages.d.ts.map +1 -0
- package/dist/languages.js +118 -0
- package/dist/languages.js.map +1 -0
- package/dist/lifecycle/errors.d.ts +4 -0
- package/dist/lifecycle/errors.d.ts.map +1 -0
- package/dist/lifecycle/errors.js +4 -0
- package/dist/lifecycle/errors.js.map +1 -0
- package/dist/lifecycle/gitignore.d.ts +10 -0
- package/dist/lifecycle/gitignore.d.ts.map +1 -0
- package/dist/lifecycle/gitignore.js +83 -0
- package/dist/lifecycle/gitignore.js.map +1 -0
- package/dist/lifecycle/manifest.d.ts +73 -0
- package/dist/lifecycle/manifest.d.ts.map +1 -0
- package/dist/lifecycle/manifest.js +352 -0
- package/dist/lifecycle/manifest.js.map +1 -0
- package/dist/logging.d.ts +5 -0
- package/dist/logging.d.ts.map +1 -0
- package/dist/logging.js +35 -0
- package/dist/logging.js.map +1 -0
- package/dist/mcp/http.d.ts +29 -0
- package/dist/mcp/http.d.ts.map +1 -0
- package/dist/mcp/http.js +179 -0
- package/dist/mcp/http.js.map +1 -0
- package/dist/mcp/security.d.ts +3 -0
- package/dist/mcp/security.d.ts.map +1 -0
- package/dist/mcp/security.js +23 -0
- package/dist/mcp/security.js.map +1 -0
- package/dist/mcp/server.d.ts +267 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +1345 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/mcp/sqliteGuard.d.ts +3 -0
- package/dist/mcp/sqliteGuard.d.ts.map +1 -0
- package/dist/mcp/sqliteGuard.js +35 -0
- package/dist/mcp/sqliteGuard.js.map +1 -0
- package/dist/mcp/stdioLifecycle.d.ts +23 -0
- package/dist/mcp/stdioLifecycle.d.ts.map +1 -0
- package/dist/mcp/stdioLifecycle.js +83 -0
- package/dist/mcp/stdioLifecycle.js.map +1 -0
- package/dist/mcp/tools.d.ts +15 -0
- package/dist/mcp/tools.d.ts.map +1 -0
- package/dist/mcp/tools.js +299 -0
- package/dist/mcp/tools.js.map +1 -0
- package/dist/mcp.d.ts +9 -0
- package/dist/mcp.d.ts.map +1 -0
- package/dist/mcp.js +8 -0
- package/dist/mcp.js.map +1 -0
- package/dist/native/bindingLoader.d.ts +24 -0
- package/dist/native/bindingLoader.d.ts.map +1 -0
- package/dist/native/bindingLoader.js +206 -0
- package/dist/native/bindingLoader.js.map +1 -0
- package/dist/native/contracts.d.ts +122 -0
- package/dist/native/contracts.d.ts.map +1 -0
- package/dist/native/contracts.js +2 -0
- package/dist/native/contracts.js.map +1 -0
- package/dist/native/execution.d.ts +16 -0
- package/dist/native/execution.d.ts.map +1 -0
- package/dist/native/execution.js +184 -0
- package/dist/native/execution.js.map +1 -0
- package/dist/native/jsBridge.d.ts +7 -0
- package/dist/native/jsBridge.d.ts.map +1 -0
- package/dist/native/jsBridge.js +25 -0
- package/dist/native/jsBridge.js.map +1 -0
- package/dist/native/nativeBackendReport.d.ts +22 -0
- package/dist/native/nativeBackendReport.d.ts.map +1 -0
- package/dist/native/nativeBackendReport.js +102 -0
- package/dist/native/nativeBackendReport.js.map +1 -0
- package/dist/native/projectedTree.d.ts +37 -0
- package/dist/native/projectedTree.d.ts.map +1 -0
- package/dist/native/projectedTree.js +172 -0
- package/dist/native/projectedTree.js.map +1 -0
- package/dist/native/queries.d.ts +22 -0
- package/dist/native/queries.d.ts.map +1 -0
- package/dist/native/queries.js +67 -0
- package/dist/native/queries.js.map +1 -0
- package/dist/native/queryResults.d.ts +6 -0
- package/dist/native/queryResults.d.ts.map +1 -0
- package/dist/native/queryResults.js +26 -0
- package/dist/native/queryResults.js.map +1 -0
- package/dist/native/runtime.d.ts +17 -0
- package/dist/native/runtime.d.ts.map +1 -0
- package/dist/native/runtime.js +152 -0
- package/dist/native/runtime.js.map +1 -0
- package/dist/native/runtimeCache.d.ts +36 -0
- package/dist/native/runtimeCache.d.ts.map +1 -0
- package/dist/native/runtimeCache.js +237 -0
- package/dist/native/runtimeCache.js.map +1 -0
- package/dist/native/treeSitterNative.d.ts +6 -0
- package/dist/native/treeSitterNative.d.ts.map +1 -0
- package/dist/native/treeSitterNative.js +5 -0
- package/dist/native/treeSitterNative.js.map +1 -0
- package/dist/parserBackend.d.ts +57 -0
- package/dist/parserBackend.d.ts.map +1 -0
- package/dist/parserBackend.js +33 -0
- package/dist/parserBackend.js.map +1 -0
- package/dist/presentation/bounds.d.ts +34 -0
- package/dist/presentation/bounds.d.ts.map +1 -0
- package/dist/presentation/bounds.js +43 -0
- package/dist/presentation/bounds.js.map +1 -0
- package/dist/presets.d.ts +32 -0
- package/dist/presets.d.ts.map +1 -0
- package/dist/presets.js +127 -0
- package/dist/presets.js.map +1 -0
- package/dist/query/parser.d.ts +33 -0
- package/dist/query/parser.d.ts.map +1 -0
- package/dist/query/parser.js +104 -0
- package/dist/query/parser.js.map +1 -0
- package/dist/query/symbols.d.ts +15 -0
- package/dist/query/symbols.d.ts.map +1 -0
- package/dist/query/symbols.js +78 -0
- package/dist/query/symbols.js.map +1 -0
- package/dist/query.d.ts +3 -0
- package/dist/query.d.ts.map +1 -0
- package/dist/query.js +3 -0
- package/dist/query.js.map +1 -0
- package/dist/review/candidates.d.ts +13 -0
- package/dist/review/candidates.d.ts.map +1 -0
- package/dist/review/candidates.js +65 -0
- package/dist/review/candidates.js.map +1 -0
- package/dist/review/changes.d.ts +11 -0
- package/dist/review/changes.d.ts.map +1 -0
- package/dist/review/changes.js +94 -0
- package/dist/review/changes.js.map +1 -0
- package/dist/review/deleted.d.ts +23 -0
- package/dist/review/deleted.d.ts.map +1 -0
- package/dist/review/deleted.js +398 -0
- package/dist/review/deleted.js.map +1 -0
- package/dist/review/report.d.ts +37 -0
- package/dist/review/report.d.ts.map +1 -0
- package/dist/review/report.js +76 -0
- package/dist/review/report.js.map +1 -0
- package/dist/review/risk.d.ts +19 -0
- package/dist/review/risk.d.ts.map +1 -0
- package/dist/review/risk.js +105 -0
- package/dist/review/risk.js.map +1 -0
- package/dist/review/summaries.d.ts +24 -0
- package/dist/review/summaries.d.ts.map +1 -0
- package/dist/review/summaries.js +581 -0
- package/dist/review/summaries.js.map +1 -0
- package/dist/review/types.d.ts +146 -0
- package/dist/review/types.d.ts.map +1 -0
- package/dist/review/types.js +43 -0
- package/dist/review/types.js.map +1 -0
- package/dist/review.d.ts +19 -0
- package/dist/review.d.ts.map +1 -0
- package/dist/review.js +442 -0
- package/dist/review.js.map +1 -0
- package/dist/runtimeIdentity.d.ts +27 -0
- package/dist/runtimeIdentity.d.ts.map +1 -0
- package/dist/runtimeIdentity.js +75 -0
- package/dist/runtimeIdentity.js.map +1 -0
- package/dist/session.d.ts +246 -0
- package/dist/session.d.ts.map +1 -0
- package/dist/session.js +858 -0
- package/dist/session.js.map +1 -0
- package/dist/sql/classifySqlFile.d.ts +3 -0
- package/dist/sql/classifySqlFile.d.ts.map +1 -0
- package/dist/sql/classifySqlFile.js +42 -0
- package/dist/sql/classifySqlFile.js.map +1 -0
- package/dist/sql/extractFacts.d.ts +4 -0
- package/dist/sql/extractFacts.d.ts.map +1 -0
- package/dist/sql/extractFacts.js +511 -0
- package/dist/sql/extractFacts.js.map +1 -0
- package/dist/sql/graph.d.ts +33 -0
- package/dist/sql/graph.d.ts.map +1 -0
- package/dist/sql/graph.js +167 -0
- package/dist/sql/graph.js.map +1 -0
- package/dist/sql/index.d.ts +8 -0
- package/dist/sql/index.d.ts.map +1 -0
- package/dist/sql/index.js +5 -0
- package/dist/sql/index.js.map +1 -0
- package/dist/sql/lex.d.ts +12 -0
- package/dist/sql/lex.d.ts.map +1 -0
- package/dist/sql/lex.js +180 -0
- package/dist/sql/lex.js.map +1 -0
- package/dist/sql/lookup.d.ts +3 -0
- package/dist/sql/lookup.d.ts.map +1 -0
- package/dist/sql/lookup.js +11 -0
- package/dist/sql/lookup.js.map +1 -0
- package/dist/sql/navigation.d.ts +4 -0
- package/dist/sql/navigation.d.ts.map +1 -0
- package/dist/sql/navigation.js +399 -0
- package/dist/sql/navigation.js.map +1 -0
- package/dist/sql/review.d.ts +15 -0
- package/dist/sql/review.d.ts.map +1 -0
- package/dist/sql/review.js +197 -0
- package/dist/sql/review.js.map +1 -0
- package/dist/sql/sourceGraph.d.ts +19 -0
- package/dist/sql/sourceGraph.d.ts.map +1 -0
- package/dist/sql/sourceGraph.js +195 -0
- package/dist/sql/sourceGraph.js.map +1 -0
- package/dist/sql/types.d.ts +21 -0
- package/dist/sql/types.d.ts.map +1 -0
- package/dist/sql/types.js +2 -0
- package/dist/sql/types.js.map +1 -0
- package/dist/sqlite/canned-query.d.ts +3 -0
- package/dist/sqlite/canned-query.d.ts.map +1 -0
- package/dist/sqlite/canned-query.js +192 -0
- package/dist/sqlite/canned-query.js.map +1 -0
- package/dist/sqlite/common.d.ts +6 -0
- package/dist/sqlite/common.d.ts.map +1 -0
- package/dist/sqlite/common.js +42 -0
- package/dist/sqlite/common.js.map +1 -0
- package/dist/sqlite/database.d.ts +5 -0
- package/dist/sqlite/database.d.ts.map +1 -0
- package/dist/sqlite/database.js +40 -0
- package/dist/sqlite/database.js.map +1 -0
- package/dist/sqlite/query.d.ts +9 -0
- package/dist/sqlite/query.d.ts.map +1 -0
- package/dist/sqlite/query.js +32 -0
- package/dist/sqlite/query.js.map +1 -0
- package/dist/sqlite/rowBounds.d.ts +24 -0
- package/dist/sqlite/rowBounds.d.ts.map +1 -0
- package/dist/sqlite/rowBounds.js +95 -0
- package/dist/sqlite/rowBounds.js.map +1 -0
- package/dist/sqlite/schema.d.ts +5 -0
- package/dist/sqlite/schema.d.ts.map +1 -0
- package/dist/sqlite/schema.js +243 -0
- package/dist/sqlite/schema.js.map +1 -0
- package/dist/sqlite/types.d.ts +77 -0
- package/dist/sqlite/types.d.ts.map +1 -0
- package/dist/sqlite/types.js +2 -0
- package/dist/sqlite/types.js.map +1 -0
- package/dist/sqlite/write.d.ts +5 -0
- package/dist/sqlite/write.d.ts.map +1 -0
- package/dist/sqlite/write.js +306 -0
- package/dist/sqlite/write.js.map +1 -0
- package/dist/sqlite-driver.d.ts +41 -0
- package/dist/sqlite-driver.d.ts.map +1 -0
- package/dist/sqlite-driver.js +144 -0
- package/dist/sqlite-driver.js.map +1 -0
- package/dist/sqlite.d.ts +4 -0
- package/dist/sqlite.d.ts.map +1 -0
- package/dist/sqlite.js +3 -0
- package/dist/sqlite.js.map +1 -0
- package/dist/triples.d.ts +27 -0
- package/dist/triples.d.ts.map +1 -0
- package/dist/triples.js +46 -0
- package/dist/triples.js.map +1 -0
- package/dist/types.d.ts +39 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/dist/util/ast.d.ts +20 -0
- package/dist/util/ast.d.ts.map +1 -0
- package/dist/util/ast.js +62 -0
- package/dist/util/ast.js.map +1 -0
- package/dist/util/bloomFilter.d.ts +99 -0
- package/dist/util/bloomFilter.d.ts.map +1 -0
- package/dist/util/bloomFilter.js +205 -0
- package/dist/util/bloomFilter.js.map +1 -0
- package/dist/util/collections.d.ts +3 -0
- package/dist/util/collections.d.ts.map +1 -0
- package/dist/util/collections.js +21 -0
- package/dist/util/collections.js.map +1 -0
- package/dist/util/comments.d.ts +10 -0
- package/dist/util/comments.d.ts.map +1 -0
- package/dist/util/comments.js +398 -0
- package/dist/util/comments.js.map +1 -0
- package/dist/util/concurrency.d.ts +26 -0
- package/dist/util/concurrency.d.ts.map +1 -0
- package/dist/util/concurrency.js +121 -0
- package/dist/util/concurrency.js.map +1 -0
- package/dist/util/confinedFile.d.ts +8 -0
- package/dist/util/confinedFile.d.ts.map +1 -0
- package/dist/util/confinedFile.js +53 -0
- package/dist/util/confinedFile.js.map +1 -0
- package/dist/util/discoveryPath.d.ts +3 -0
- package/dist/util/discoveryPath.d.ts.map +1 -0
- package/dist/util/discoveryPath.js +19 -0
- package/dist/util/discoveryPath.js.map +1 -0
- package/dist/util/errors.d.ts +3 -0
- package/dist/util/errors.d.ts.map +1 -0
- package/dist/util/errors.js +7 -0
- package/dist/util/errors.js.map +1 -0
- package/dist/util/git.d.ts +79 -0
- package/dist/util/git.d.ts.map +1 -0
- package/dist/util/git.js +403 -0
- package/dist/util/git.js.map +1 -0
- package/dist/util/graphEdges.d.ts +5 -0
- package/dist/util/graphEdges.d.ts.map +1 -0
- package/dist/util/graphEdges.js +42 -0
- package/dist/util/graphEdges.js.map +1 -0
- package/dist/util/graphOnlyExtensions.d.ts +5 -0
- package/dist/util/graphOnlyExtensions.d.ts.map +1 -0
- package/dist/util/graphOnlyExtensions.js +12 -0
- package/dist/util/graphOnlyExtensions.js.map +1 -0
- package/dist/util/guards.d.ts +2 -0
- package/dist/util/guards.d.ts.map +1 -0
- package/dist/util/guards.js +4 -0
- package/dist/util/guards.js.map +1 -0
- package/dist/util/includeRoots.d.ts +6 -0
- package/dist/util/includeRoots.d.ts.map +1 -0
- package/dist/util/includeRoots.js +53 -0
- package/dist/util/includeRoots.js.map +1 -0
- package/dist/util/lazySymbols.d.ts +166 -0
- package/dist/util/lazySymbols.d.ts.map +1 -0
- package/dist/util/lazySymbols.js +365 -0
- package/dist/util/lazySymbols.js.map +1 -0
- package/dist/util/lines.d.ts +2 -0
- package/dist/util/lines.d.ts.map +1 -0
- package/dist/util/lines.js +9 -0
- package/dist/util/lines.js.map +1 -0
- package/dist/util/lruMap.d.ts +3 -0
- package/dist/util/lruMap.d.ts.map +1 -0
- package/dist/util/lruMap.js +22 -0
- package/dist/util/lruMap.js.map +1 -0
- package/dist/util/memberAccess.d.ts +26 -0
- package/dist/util/memberAccess.d.ts.map +1 -0
- package/dist/util/memberAccess.js +175 -0
- package/dist/util/memberAccess.js.map +1 -0
- package/dist/util/packageExports.d.ts +25 -0
- package/dist/util/packageExports.d.ts.map +1 -0
- package/dist/util/packageExports.js +79 -0
- package/dist/util/packageExports.js.map +1 -0
- package/dist/util/packageInfo.d.ts +12 -0
- package/dist/util/packageInfo.d.ts.map +1 -0
- package/dist/util/packageInfo.js +57 -0
- package/dist/util/packageInfo.js.map +1 -0
- package/dist/util/partialResults.d.ts +81 -0
- package/dist/util/partialResults.d.ts.map +1 -0
- package/dist/util/partialResults.js +290 -0
- package/dist/util/partialResults.js.map +1 -0
- package/dist/util/paths.d.ts +51 -0
- package/dist/util/paths.d.ts.map +1 -0
- package/dist/util/paths.js +245 -0
- package/dist/util/paths.js.map +1 -0
- package/dist/util/projectFiles/definitions.d.ts +21 -0
- package/dist/util/projectFiles/definitions.d.ts.map +1 -0
- package/dist/util/projectFiles/definitions.js +112 -0
- package/dist/util/projectFiles/definitions.js.map +1 -0
- package/dist/util/projectFiles/parsers.d.ts +13 -0
- package/dist/util/projectFiles/parsers.d.ts.map +1 -0
- package/dist/util/projectFiles/parsers.js +122 -0
- package/dist/util/projectFiles/parsers.js.map +1 -0
- package/dist/util/projectFiles.d.ts +43 -0
- package/dist/util/projectFiles.d.ts.map +1 -0
- package/dist/util/projectFiles.js +572 -0
- package/dist/util/projectFiles.js.map +1 -0
- package/dist/util/resolution/files.d.ts +3 -0
- package/dist/util/resolution/files.d.ts.map +1 -0
- package/dist/util/resolution/files.js +29 -0
- package/dist/util/resolution/files.js.map +1 -0
- package/dist/util/resolution/findFirstExisting.d.ts +2 -0
- package/dist/util/resolution/findFirstExisting.d.ts.map +1 -0
- package/dist/util/resolution/findFirstExisting.js +13 -0
- package/dist/util/resolution/findFirstExisting.js.map +1 -0
- package/dist/util/resolution/go.d.ts +2 -0
- package/dist/util/resolution/go.d.ts.map +1 -0
- package/dist/util/resolution/go.js +171 -0
- package/dist/util/resolution/go.js.map +1 -0
- package/dist/util/resolution/jvm.d.ts +5 -0
- package/dist/util/resolution/jvm.d.ts.map +1 -0
- package/dist/util/resolution/jvm.js +124 -0
- package/dist/util/resolution/jvm.js.map +1 -0
- package/dist/util/resolution/node.d.ts +3 -0
- package/dist/util/resolution/node.d.ts.map +1 -0
- package/dist/util/resolution/node.js +60 -0
- package/dist/util/resolution/node.js.map +1 -0
- package/dist/util/resolution/php.d.ts +4 -0
- package/dist/util/resolution/php.d.ts.map +1 -0
- package/dist/util/resolution/php.js +498 -0
- package/dist/util/resolution/php.js.map +1 -0
- package/dist/util/resolution/phpComposer.d.ts +17 -0
- package/dist/util/resolution/phpComposer.d.ts.map +1 -0
- package/dist/util/resolution/phpComposer.js +269 -0
- package/dist/util/resolution/phpComposer.js.map +1 -0
- package/dist/util/resolution/projectSymbols.d.ts +14 -0
- package/dist/util/resolution/projectSymbols.d.ts.map +1 -0
- package/dist/util/resolution/projectSymbols.js +70 -0
- package/dist/util/resolution/projectSymbols.js.map +1 -0
- package/dist/util/resolution/python.d.ts +7 -0
- package/dist/util/resolution/python.d.ts.map +1 -0
- package/dist/util/resolution/python.js +129 -0
- package/dist/util/resolution/python.js.map +1 -0
- package/dist/util/resolution/rust.d.ts +2 -0
- package/dist/util/resolution/rust.d.ts.map +1 -0
- package/dist/util/resolution/rust.js +87 -0
- package/dist/util/resolution/rust.js.map +1 -0
- package/dist/util/resolution/tsconfig.d.ts +8 -0
- package/dist/util/resolution/tsconfig.d.ts.map +1 -0
- package/dist/util/resolution/tsconfig.js +131 -0
- package/dist/util/resolution/tsconfig.js.map +1 -0
- package/dist/util/resolution.d.ts +37 -0
- package/dist/util/resolution.d.ts.map +1 -0
- package/dist/util/resolution.js +276 -0
- package/dist/util/resolution.js.map +1 -0
- package/dist/util/resolutionCandidates.d.ts +5 -0
- package/dist/util/resolutionCandidates.d.ts.map +1 -0
- package/dist/util/resolutionCandidates.js +70 -0
- package/dist/util/resolutionCandidates.js.map +1 -0
- package/dist/util/rustTestModules.d.ts +3 -0
- package/dist/util/rustTestModules.d.ts.map +1 -0
- package/dist/util/rustTestModules.js +69 -0
- package/dist/util/rustTestModules.js.map +1 -0
- package/dist/util/semaphore.d.ts +2 -0
- package/dist/util/semaphore.d.ts.map +1 -0
- package/dist/util/semaphore.js +2 -0
- package/dist/util/semaphore.js.map +1 -0
- package/dist/util/sourceLocation.d.ts +8 -0
- package/dist/util/sourceLocation.d.ts.map +1 -0
- package/dist/util/sourceLocation.js +19 -0
- package/dist/util/sourceLocation.js.map +1 -0
- package/dist/util/specifiers.d.ts +17 -0
- package/dist/util/specifiers.d.ts.map +1 -0
- package/dist/util/specifiers.js +263 -0
- package/dist/util/specifiers.js.map +1 -0
- package/dist/util/sqliteSchema.d.ts +28 -0
- package/dist/util/sqliteSchema.d.ts.map +1 -0
- package/dist/util/sqliteSchema.js +66 -0
- package/dist/util/sqliteSchema.js.map +1 -0
- package/dist/util/symbolHash.d.ts +59 -0
- package/dist/util/symbolHash.d.ts.map +1 -0
- package/dist/util/symbolHash.js +84 -0
- package/dist/util/symbolHash.js.map +1 -0
- package/dist/util/workerThreads.d.ts +12 -0
- package/dist/util/workerThreads.d.ts.map +1 -0
- package/dist/util/workerThreads.js +16 -0
- package/dist/util/workerThreads.js.map +1 -0
- package/dist/util/workspace.d.ts +32 -0
- package/dist/util/workspace.d.ts.map +1 -0
- package/dist/util/workspace.js +288 -0
- package/dist/util/workspace.js.map +1 -0
- package/dist/util.d.ts +14 -0
- package/dist/util.d.ts.map +1 -0
- package/dist/util.js +10 -0
- package/dist/util.js.map +1 -0
- package/dist/worker/nativeExtractWorker.d.ts +61 -0
- package/dist/worker/nativeExtractWorker.d.ts.map +1 -0
- package/dist/worker/nativeExtractWorker.js +196 -0
- package/dist/worker/nativeExtractWorker.js.map +1 -0
- package/dist/worker/nativeWorkerPool.d.ts +10 -0
- package/dist/worker/nativeWorkerPool.d.ts.map +1 -0
- package/dist/worker/nativeWorkerPool.js +35 -0
- package/dist/worker/nativeWorkerPool.js.map +1 -0
- package/docs/graph-visualization/app.js +900 -0
- package/docs/graph-visualization/file-tree-filters.js +50 -0
- package/docs/graph-visualization/file-tree-model.js +186 -0
- package/docs/graph-visualization/graph-builder.js +303 -0
- package/docs/graph-visualization/index.html +65 -0
- package/docs/graph-visualization/styles.css +513 -0
- package/docs/graph-visualization/vendor/LICENSE.graphology-layout-forceatlas2.txt +21 -0
- package/docs/graph-visualization/vendor/LICENSE.graphology.txt +21 -0
- package/docs/graph-visualization/vendor/LICENSE.sigma.txt +12 -0
- package/docs/graph-visualization/vendor/graphology-layout-forceatlas2.js +789 -0
- package/docs/graph-visualization/vendor/graphology.js +4204 -0
- package/docs/graph-visualization/vendor/sigma.js +5643 -0
- package/docs/graph-visualization/viewer-selected-node.webp +0 -0
- package/docs/mcp.md +373 -0
- package/package.json +104 -0
package/dist/cli/help.js
ADDED
|
@@ -0,0 +1,749 @@
|
|
|
1
|
+
import { renderCliCommandList } from "./commandCatalog.js";
|
|
2
|
+
export { isKnownCliCommand } from "./commandCatalog.js";
|
|
3
|
+
export const CLI_TASK_HELP_TEXT = `codegraph - Ask structural questions about a repository
|
|
4
|
+
|
|
5
|
+
Start here:
|
|
6
|
+
Configure every supported agent codegraph install --all --dry-run
|
|
7
|
+
Understand a repository codegraph explore "how does auth reach the database?" --root .
|
|
8
|
+
Review local changes codegraph review
|
|
9
|
+
Find a symbol or file codegraph search "SessionManager" --json
|
|
10
|
+
Check runtime health codegraph doctor
|
|
11
|
+
|
|
12
|
+
Run codegraph --help for all commands.`;
|
|
13
|
+
export const CLI_HELP_TEXT = `codegraph - Code analysis and dependency graph tool
|
|
14
|
+
|
|
15
|
+
Start here:
|
|
16
|
+
Configure every supported agent codegraph install --all --dry-run
|
|
17
|
+
Understand a repository codegraph explore "how does auth reach the database?" --root .
|
|
18
|
+
Review local changes codegraph review
|
|
19
|
+
Find a symbol or file codegraph search "SessionManager" --json
|
|
20
|
+
Check runtime health codegraph doctor
|
|
21
|
+
|
|
22
|
+
Usage: codegraph <command> [options] [path]
|
|
23
|
+
|
|
24
|
+
Commands:
|
|
25
|
+
${renderCliCommandList()}
|
|
26
|
+
|
|
27
|
+
Graph Options:
|
|
28
|
+
--fast-graph Use text import extraction for plain .js and .ts
|
|
29
|
+
files. May miss multiline or complex patterns;
|
|
30
|
+
TSX and other languages keep normal extraction.
|
|
31
|
+
--resolve-node-modules Include node_modules in resolution
|
|
32
|
+
--dynamic-import-heuristics Attempt to resolve dynamic imports
|
|
33
|
+
--resolution-hint <hint> Custom resolution hint (e.g., tsconfig:path)
|
|
34
|
+
--include-glob <glob> Restrict discovered files to extra glob(s), relative to each scan root
|
|
35
|
+
--ignore-glob <glob> Exclude extra discovered files by glob, relative to each scan root
|
|
36
|
+
--no-gitignore Do not apply .gitignore files during file discovery
|
|
37
|
+
|
|
38
|
+
Build Options:
|
|
39
|
+
--threads N Number of worker threads (default: auto)
|
|
40
|
+
--native <mode> Native runtime mode: auto, on, off
|
|
41
|
+
--workers Force Piscina native-extraction workers (auto above 250 files)
|
|
42
|
+
--cache <mode> Cache mode: disk, memory, off
|
|
43
|
+
--limit N Result limit for hotspots/inspect summaries
|
|
44
|
+
--cache-strict Force strict content-hash cache validation
|
|
45
|
+
--cache-verify Re-stat cached files before trusting disk cache entries
|
|
46
|
+
--progress Force progress output when stderr is redirected
|
|
47
|
+
--no-progress Suppress automatic index progress feedback
|
|
48
|
+
|
|
49
|
+
Analysis Output Options:
|
|
50
|
+
--pretty Human-readable output (default)
|
|
51
|
+
--json Structured JSON output for automation
|
|
52
|
+
--duplicates Include duplicate summary in inspect (off by default)
|
|
53
|
+
--mermaid Output as Mermaid diagram
|
|
54
|
+
--dot Output as DOT graph
|
|
55
|
+
--sqlite <path> Write to SQLite database
|
|
56
|
+
--sql-artifacts Include isolated SQL artifact facts in JSON graph output
|
|
57
|
+
--output <path> Write to file instead of stdout
|
|
58
|
+
--stdout Write graph output to stdout (default)
|
|
59
|
+
|
|
60
|
+
Forgiving inputs:
|
|
61
|
+
File arguments accept file:line[:column] locations from search output.
|
|
62
|
+
Symbol commands accept a portable handle, qualified file::symbol path, unique exact name, file, or file:line[:column].
|
|
63
|
+
refs accepts a file alone and returns references for every symbol defined in that file.
|
|
64
|
+
impact and drift default to HEAD..WORKTREE; artifact, packet, and mcp infer their only subcommand.
|
|
65
|
+
Read-only project commands accept an existing project-root positional where unambiguous.
|
|
66
|
+
|
|
67
|
+
Recommended review commands:
|
|
68
|
+
codegraph review
|
|
69
|
+
codegraph impact (defaults to HEAD..WORKTREE)
|
|
70
|
+
codegraph search "auth user" --json
|
|
71
|
+
codegraph explain src/auth.ts --json
|
|
72
|
+
codegraph affected --base HEAD --head WORKTREE --quiet
|
|
73
|
+
|
|
74
|
+
Unfamiliar repo:
|
|
75
|
+
codegraph explore "how does auth reach db?" --root .
|
|
76
|
+
codegraph orient --root . --budget small
|
|
77
|
+
|
|
78
|
+
Examples:
|
|
79
|
+
codegraph review
|
|
80
|
+
codegraph orient ./src --budget small
|
|
81
|
+
codegraph search "auth user" --json
|
|
82
|
+
codegraph explore "how does auth reach db?"
|
|
83
|
+
codegraph file src/auth.ts
|
|
84
|
+
codegraph explain src/auth.ts --json
|
|
85
|
+
codegraph affected src/auth.ts --quiet
|
|
86
|
+
codegraph impact --provider git --base HEAD --head WORKTREE
|
|
87
|
+
codegraph init --root .
|
|
88
|
+
codegraph status --root . --json
|
|
89
|
+
codegraph sync --root .
|
|
90
|
+
codegraph uninit --root . --force
|
|
91
|
+
codegraph packet file:src%2Fcli.ts --json
|
|
92
|
+
codegraph artifact --root . --out codegraph-out --json
|
|
93
|
+
codegraph mcp --root . --stdio
|
|
94
|
+
codegraph viewer --root . --graph codegraph.json --open
|
|
95
|
+
codegraph install --all --dry-run
|
|
96
|
+
codegraph install --all --yes
|
|
97
|
+
codegraph install --target codex,claude --yes
|
|
98
|
+
codegraph install --print-config codex
|
|
99
|
+
codegraph uninstall --target codex --yes
|
|
100
|
+
codegraph inspect ./src --limit 20
|
|
101
|
+
codegraph inspect ./src --limit 20 --duplicates
|
|
102
|
+
codegraph duplicates ./src --min-confidence medium
|
|
103
|
+
codegraph graph ./src
|
|
104
|
+
codegraph graph --fast-graph --mermaid ./src
|
|
105
|
+
codegraph graph --root . ./src --include-glob "**/*.ts" --ignore-glob "**/*.spec.ts"
|
|
106
|
+
codegraph skill install --agent agents
|
|
107
|
+
codegraph skill install --agent codex
|
|
108
|
+
codegraph skill install --agent claude
|
|
109
|
+
codegraph skill install --agent cursor
|
|
110
|
+
codegraph skill install --agent gemini
|
|
111
|
+
codegraph skill install --agent opencode
|
|
112
|
+
codegraph skill install --agent omp
|
|
113
|
+
codegraph skill install --agent kilo
|
|
114
|
+
codegraph skill install --target ~/.codex/skills/codegraph --force
|
|
115
|
+
codegraph skill doctor
|
|
116
|
+
codegraph impact --provider git --base main --head HEAD --duplicates off
|
|
117
|
+
codegraph refs src/index.ts:42:10
|
|
118
|
+
codegraph doctor
|
|
119
|
+
codegraph symbols "CodeReviewSession" --root .
|
|
120
|
+
codegraph rename-preview Service RenamedService --include-filenames --json
|
|
121
|
+
codegraph refactor-plan Service --rename RenamedService
|
|
122
|
+
codegraph version
|
|
123
|
+
codegraph -v
|
|
124
|
+
`;
|
|
125
|
+
export const LIFECYCLE_HELP_TEXT = `codegraph init/status/sync/uninit - Initialize, inspect, refresh, or remove project-local Codegraph state
|
|
126
|
+
|
|
127
|
+
Usage:
|
|
128
|
+
codegraph init [path] [--force] [--no-update-gitignore] [--json | --pretty]
|
|
129
|
+
codegraph init --root <path> [--force] [--no-update-gitignore] [--json | --pretty]
|
|
130
|
+
codegraph status [path] [--json | --pretty]
|
|
131
|
+
codegraph status --root <path> [--json | --pretty]
|
|
132
|
+
codegraph sync [path] [--init] [--no-update-gitignore] [--json | --pretty]
|
|
133
|
+
codegraph sync --root <path> [--init] [--no-update-gitignore] [--json | --pretty]
|
|
134
|
+
codegraph uninit [path] [--force] [--json | --pretty]
|
|
135
|
+
codegraph uninit --root <path> [--force] [--json | --pretty]
|
|
136
|
+
|
|
137
|
+
State:
|
|
138
|
+
Lifecycle commands own only .codegraph/manifest.json metadata. In a Git worktree, init and sync --init ensure it is effectively ignored, appending .codegraph/ and .codegraph-cache/ to the resolved root's .gitignore only when needed; opt out with --no-update-gitignore.
|
|
139
|
+
A tracked manifest is left tracked with a warning. Uninit removes lifecycle state but leaves the root .gitignore rule; ordinary sync never changes ignore policy.
|
|
140
|
+
Init and sync may warm or update the disk cache under .codegraph-cache/index-v1/. Other commands do not depend on the manifest.
|
|
141
|
+
Positional paths and --root are alternatives for lifecycle commands; do not combine them.
|
|
142
|
+
`;
|
|
143
|
+
export const AFFECTED_HELP_TEXT = `codegraph affected - List tests likely affected by changed files
|
|
144
|
+
|
|
145
|
+
Usage:
|
|
146
|
+
codegraph affected [file...] [--stdin] [--base <ref> --head <ref>] [--root <path>] [--depth <n>] [--filter <glob>] [--json | --quiet]
|
|
147
|
+
|
|
148
|
+
Options:
|
|
149
|
+
--depth <n> Reverse dependency traversal depth (default: 1)
|
|
150
|
+
--filter <glob> Restrict returned test files by project-root-relative glob
|
|
151
|
+
--stdin Read newline-delimited changed files from stdin
|
|
152
|
+
--quiet Print affected test paths only
|
|
153
|
+
`;
|
|
154
|
+
export const INSTALL_HELP_TEXT = `codegraph install - Configure Codegraph for supported agent clients
|
|
155
|
+
|
|
156
|
+
Usage: codegraph install [target] [--target <codex,claude,cursor,gemini,opencode,omp,kilo,agents> | --all] [--yes | --dry-run] [--force] [--json | --pretty] [--print-config <target>] [--detect]
|
|
157
|
+
|
|
158
|
+
Targets:
|
|
159
|
+
codex, claude, cursor, gemini, opencode, omp, kilo, agents
|
|
160
|
+
--all selects the full catalog in the listed order without detection.
|
|
161
|
+
|
|
162
|
+
Safety:
|
|
163
|
+
Interactive terminals preview changes and ask for confirmation. Noninteractive writes require --yes; use --dry-run to preview changed files or --print-config <target> to print the MCP snippet.
|
|
164
|
+
--force overwrites conflicting skill or config files the installer refuses to clobber by default; collision errors tell you to re-run with --force.
|
|
165
|
+
--all cannot be combined with a target, --detect, or --print-config.
|
|
166
|
+
`;
|
|
167
|
+
export const UNINSTALL_HELP_TEXT = `codegraph uninstall - Remove Codegraph-owned installer configuration
|
|
168
|
+
|
|
169
|
+
Usage: codegraph uninstall [target] [--target <codex,claude,cursor,gemini,opencode,omp,kilo,agents>] [--yes | --dry-run] [--json | --pretty] [--detect]
|
|
170
|
+
|
|
171
|
+
Safety:
|
|
172
|
+
Removes only Codegraph-owned marker blocks, marker files, exact bundled skill payloads, or exact installer-owned MCP entries.
|
|
173
|
+
`;
|
|
174
|
+
const SHARED_INDEX_OPTIONS_HELP = `Index options:
|
|
175
|
+
Supports shared --cache, --cache-strict, --cache-verify, --threads, --native, --workers, --include-glob, --ignore-glob, and --no-gitignore options.
|
|
176
|
+
Index builds report progress automatically on an interactive stderr terminal. Use --progress to force redirected progress logs or --no-progress to suppress feedback.`;
|
|
177
|
+
export const EXPLORE_HELP_TEXT = `codegraph explore - Answer a broad repo question with bounded repo context
|
|
178
|
+
|
|
179
|
+
Usage: codegraph explore "<query>" [--root <path>] [--limit <n>] [--max-packets <n>] [--max-paths <n>] [--no-source] [--include-graph-context] [--allow-sensitive] [--json | --pretty]
|
|
180
|
+
|
|
181
|
+
Output:
|
|
182
|
+
Explore orchestrates search, packet retrieval, dependency paths, reverse dependencies, candidate tests, and follow-up commands. An exact file-path query also includes the live bounded file view.
|
|
183
|
+
Pretty model-readable sections are the default. Use --json for structured fields. Graph context and raw sensitive values require explicit flags.
|
|
184
|
+
|
|
185
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
186
|
+
`;
|
|
187
|
+
export const FILE_HELP_TEXT = `codegraph file - Read a live project file with bounded line pagination
|
|
188
|
+
|
|
189
|
+
Usage: codegraph file <path> [--root <path>] [--offset <line>] [--limit <lines>] [--max-bytes <bytes>] [--include-graph-context] [--allow-sensitive] [--json | --pretty]
|
|
190
|
+
|
|
191
|
+
Output:
|
|
192
|
+
Pretty output is the default and uses exact number<TAB>line source lines plus bounded graph context when requested. Use --json for structured fields.
|
|
193
|
+
A file-ending newline is represented as a final numbered empty line. Follow page.nextOffset or the pretty next-page command for more lines.
|
|
194
|
+
|
|
195
|
+
Safety:
|
|
196
|
+
Paths are confined to --root after realpath resolution. Binary files are rejected. Known sensitive text configs return structural key summaries; key material returns metadata only. Use --allow-sensitive for raw access subject to binary and UTF-8 guards.
|
|
197
|
+
`;
|
|
198
|
+
export const SEARCH_HELP_TEXT = `codegraph search - Ranked agent search across project context
|
|
199
|
+
|
|
200
|
+
Usage: codegraph search "<query>" [--root <path>] [--mode hybrid|symbol|path|text|graph|sql] [--limit <n>] [--from <file|handle>] [--depth <n>] [--no-snippets] [--report [--report-file <path>]] [--json | --pretty]
|
|
201
|
+
|
|
202
|
+
Search Modes:
|
|
203
|
+
hybrid Rank across files, symbols, chunks, SQL, and graph context
|
|
204
|
+
symbol Prefer indexed symbols and stable symbol handles
|
|
205
|
+
path Prefer file paths
|
|
206
|
+
text Prefer text/snippet matches
|
|
207
|
+
graph Prefer graph neighborhoods
|
|
208
|
+
sql Prefer SQL object context
|
|
209
|
+
|
|
210
|
+
Output:
|
|
211
|
+
Results include top-level analysis metadata plus stable handles, rank reasons, provenance, evidence, graph neighbors, follow-up commands, limits, and omission counts.
|
|
212
|
+
Hybrid search is code-first by default: source files and symbols outrank docs unless you use text mode or the docs are the strongest remaining evidence.
|
|
213
|
+
--report writes command and index timings to stderr; --report-file writes the same JSON report to a file without changing search output.
|
|
214
|
+
|
|
215
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
216
|
+
`;
|
|
217
|
+
export const GOTO_HELP_TEXT = `codegraph goto - Go to a definition
|
|
218
|
+
|
|
219
|
+
Usage: codegraph goto <file>::<symbol> [--root <path>] [--json | --pretty]
|
|
220
|
+
codegraph goto <file>[:line[:column]] [line] [column] [--root <path>] [--json | --pretty]
|
|
221
|
+
|
|
222
|
+
A qualified symbol path resolves one definition without a location. A file-only target succeeds when the file defines one symbol; otherwise JSON returns bounded candidates. Search-result locations and portable symbol handles can be pasted directly.
|
|
223
|
+
|
|
224
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
225
|
+
`;
|
|
226
|
+
export const REFS_HELP_TEXT = `codegraph refs - Find semantic references
|
|
227
|
+
|
|
228
|
+
Usage: codegraph refs <file>::<symbol> [--root <path>] [--json | --pretty]
|
|
229
|
+
codegraph refs <file>[:line[:column]] [line] [column] [--root <path>] [--json | --pretty]
|
|
230
|
+
codegraph refs --file <file> [--line <line> --col <column>] [--root <path>] [--json | --pretty]
|
|
231
|
+
|
|
232
|
+
A qualified symbol path finds references for one declaration without a location. A file-only target finds references for every symbol defined in that file. Search-result locations and portable symbol handles can be pasted directly.
|
|
233
|
+
|
|
234
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
235
|
+
`;
|
|
236
|
+
export const GREP_HELP_TEXT = `codegraph grep - Search source text or syntax trees
|
|
237
|
+
|
|
238
|
+
Usage: codegraph grep <regex> [--root <path>] [--ignore-case] [--max-hits <n>] [--json]
|
|
239
|
+
codegraph grep --query <tree-sitter-query> [--root <path>] [--json]
|
|
240
|
+
|
|
241
|
+
A bare positional is a text regex. Use --query explicitly for Tree-sitter queries.
|
|
242
|
+
--json returns an envelope { items, limit, totalSeen, truncated, omitted }. For text greps, limit is the effective --max-hits cap (default 5000, max 200000). The scan probes one hit past that cap, so truncated is exact while totalSeen and omitted are lower bounds on observed hits whenever truncated is true. For --query AST greps, which are uncapped today, limit is null and truncated is always false.
|
|
243
|
+
`;
|
|
244
|
+
export const SQL_HELP_TEXT = `codegraph sql - Query a graph SQLite export read-only
|
|
245
|
+
|
|
246
|
+
Usage: codegraph sql <sqlite-path> "SELECT ..." [--json]
|
|
247
|
+
codegraph sql --db <sqlite-path> --query "SELECT ..." [--json]
|
|
248
|
+
`;
|
|
249
|
+
export const SYMBOLS_HELP_TEXT = `codegraph symbols - Deterministic workspace-symbol lookup
|
|
250
|
+
|
|
251
|
+
Usage: codegraph symbols [query] [--root <path>] [--kind <kind,...>] [--exported] [--include-imports] [--file-glob <glob>] [--limit <0-500>] [--json | --pretty]
|
|
252
|
+
|
|
253
|
+
Matching:
|
|
254
|
+
Exact and qualified symbol identities rank ahead of prefix, token, and substring matches. Imports are excluded by default; use --include-imports to include aliases.
|
|
255
|
+
A query is required unless --kind or --file-glob narrows the lookup. --kind accepts function, class, variable, interface, type, default, table, view, index, constraint, or routine.
|
|
256
|
+
|
|
257
|
+
Output:
|
|
258
|
+
JSON includes portable handles, exact declaration ranges, provenance, limits, and omission counts. Pretty output is concise and intended for direct reading.
|
|
259
|
+
|
|
260
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
261
|
+
`;
|
|
262
|
+
export const CALLERS_HELP_TEXT = `codegraph callers - Find proven semantic callers
|
|
263
|
+
|
|
264
|
+
Usage: codegraph callers <symbol-target> [--root <path>] [--depth <1-5>] [--limit <0-500>] [--include-heuristic] [--json | --pretty]
|
|
265
|
+
|
|
266
|
+
Returns grouped caller symbols and exact project-relative callsites from resolved calls edges. --include-heuristic is accepted for forward compatibility, but current results remain limited to proven semantic edges.
|
|
267
|
+
|
|
268
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
269
|
+
`;
|
|
270
|
+
export const CALLEES_HELP_TEXT = `codegraph callees - Find proven semantic callees
|
|
271
|
+
|
|
272
|
+
Usage: codegraph callees <symbol-target> [--root <path>] [--depth <1-5>] [--limit <0-500>] [--include-heuristic] [--json | --pretty]
|
|
273
|
+
|
|
274
|
+
Returns grouped callee symbols and exact project-relative callsites from resolved calls edges. --include-heuristic is accepted for forward compatibility, but current results remain limited to proven semantic edges.
|
|
275
|
+
|
|
276
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
277
|
+
`;
|
|
278
|
+
export const SUPERTYPES_HELP_TEXT = `codegraph supertypes - Find proven supertypes
|
|
279
|
+
|
|
280
|
+
Usage: codegraph supertypes <symbol-target> [--root <path>] [--depth <1-10>] [--limit <0-500>] [--json | --pretty]
|
|
281
|
+
|
|
282
|
+
Returns only currently extracted extends and implements relationships. Results include exact locations, relation depth, provenance, limits, and omissions.
|
|
283
|
+
|
|
284
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
285
|
+
`;
|
|
286
|
+
export const SUBTYPES_HELP_TEXT = `codegraph subtypes - Find proven subtypes
|
|
287
|
+
|
|
288
|
+
Usage: codegraph subtypes <symbol-target> [--root <path>] [--depth <1-10>] [--limit <0-500>] [--json | --pretty]
|
|
289
|
+
|
|
290
|
+
Returns only currently extracted extends and implements relationships. Results include exact locations, relation depth, provenance, limits, and omissions.
|
|
291
|
+
|
|
292
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
293
|
+
`;
|
|
294
|
+
export const IMPLEMENTATIONS_HELP_TEXT = `codegraph implementations - Find proven implementations
|
|
295
|
+
|
|
296
|
+
Usage: codegraph implementations <symbol-target> [--root <path>] [--limit <0-500>] [--json | --pretty]
|
|
297
|
+
|
|
298
|
+
Type lookup follows extracted hierarchy relationships. Member lookup is supported only for members owned by an interface or trait with proven implementers; unrelated same-name members are never inferred.
|
|
299
|
+
|
|
300
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
301
|
+
`;
|
|
302
|
+
export const RENAME_PREVIEW_HELP_TEXT = `codegraph rename-preview - Preview a semantic rename without changing files
|
|
303
|
+
|
|
304
|
+
Usage: codegraph rename-preview <symbol-target> <new-name> [--include-comments] [--include-strings] [--include-filenames] [--max-edits N] [--json | --pretty]
|
|
305
|
+
|
|
306
|
+
Returns exact project-relative edits, conflicts, unsafe sites, candidate tests, provenance, limits, and omissions. Comment and string matches are low-confidence opt-in edits; --max-edits accepts integers from 1 to 10000.
|
|
307
|
+
|
|
308
|
+
--include-filenames requests suggestions for eligible exported class, interface, or type filenames only. Rename preview is read-only and no apply command exists.
|
|
309
|
+
|
|
310
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
311
|
+
`;
|
|
312
|
+
export const REFACTOR_PLAN_HELP_TEXT = `codegraph refactor-plan - Build a read-only refactor evidence packet
|
|
313
|
+
|
|
314
|
+
Usage: codegraph refactor-plan <symbol-target> [--rename <new-name>] [--max-references <0-500>] [--max-callers <0-500>] [--max-hierarchy <0-500>] [--include-source] [--json | --pretty]
|
|
315
|
+
|
|
316
|
+
Returns a target definition, references, callers, callees, type hierarchy, implementations, candidate tests, omissions, and copyable follow-ups from one semantic snapshot. Each max option accepts an independent integer from 0 to 500; --include-source opts reference context into the response.
|
|
317
|
+
|
|
318
|
+
--rename adds the authoritative read-only rename preview. Nested rename.safe is the safety decision; Codegraph does not expose an apply command and never changes source files.
|
|
319
|
+
|
|
320
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
321
|
+
`;
|
|
322
|
+
export const ORIENT_HELP_TEXT = `codegraph orient - Build a compact first-turn packet for agent repo context
|
|
323
|
+
|
|
324
|
+
Usage: codegraph orient [roots...] [--root <path>] [--budget small|medium|large] [--health skip|summary|full] [--json | --pretty]
|
|
325
|
+
|
|
326
|
+
Output:
|
|
327
|
+
Orientation includes summary bullets, ranked focus targets with follow-up commands, a bounded project tree, budgeted health counts, and omission counts.
|
|
328
|
+
Model-readable triage is the default; --pretty remains accepted explicitly. Use --json when tooling needs exact focus reasons, limits, or omissions. Small budget defaults to --health skip. Medium and large default to --health summary, which counts cycles and unresolved imports without duplicate detection.
|
|
329
|
+
|
|
330
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
331
|
+
`;
|
|
332
|
+
export const PACKET_HELP_TEXT = `codegraph packet - Retrieve bounded evidence packets by file path or stable target
|
|
333
|
+
|
|
334
|
+
Usage: codegraph packet [get] <target> [--root <path>] [--json | --pretty] [--max-symbols <n>] [--max-snippets <n>] [--max-duplicates <n>]
|
|
335
|
+
|
|
336
|
+
Targets:
|
|
337
|
+
Accepts file paths, symbol names, SQL object names, file:/symbol:/chunk:/sql:/graph: handles from search or explain output, and quoted review packet targets like 'review:base=<encoded-ref>;head=<encoded-ref>'.
|
|
338
|
+
|
|
339
|
+
Portable handle grammar:
|
|
340
|
+
file:<url-encoded project-relative path>
|
|
341
|
+
symbol:<url-encoded path>:<url-encoded local-name>:<line>:<column>
|
|
342
|
+
chunk:<url-encoded path>:<line>
|
|
343
|
+
sql:<url-encoded object-name>:<url-encoded path>:<line>
|
|
344
|
+
graph:<url-encoded project-relative path>
|
|
345
|
+
Positions use 1-based lines and 0-based UTF-16 columns.
|
|
346
|
+
|
|
347
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
348
|
+
`;
|
|
349
|
+
export const EXPLAIN_HELP_TEXT = `codegraph explain - Explain a file, symbol, SQL object, or search handle
|
|
350
|
+
|
|
351
|
+
Usage: codegraph explain <file|symbol|sql-object|handle> [--root <path>] [--max-symbols <n>] [--max-dependencies <n>] [--max-snippets <n>] [--max-duplicates <n>] [--changed-context --base <rev> --head <rev>] [--json | --pretty]
|
|
352
|
+
|
|
353
|
+
Targets:
|
|
354
|
+
File paths, symbol names, SQL object names, and handles returned by search are accepted. Portable handles use the same grammar documented under \`codegraph packet\`. Stale-handle recovery for humans is \`codegraph symbols "<query>"\` / \`codegraph search "<query>"\`; MCP callers should use \`workspace_symbols\` / \`search\`.
|
|
355
|
+
|
|
356
|
+
Output:
|
|
357
|
+
Explanations include bounded symbols, dependencies, reverse dependencies, references, snippets, duplicate context, SQL facts, follow-up commands, limits, and omission counts.
|
|
358
|
+
|
|
359
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
360
|
+
`;
|
|
361
|
+
export const ARTIFACT_HELP_TEXT = `codegraph artifact - Build an agent-ready handoff bundle
|
|
362
|
+
|
|
363
|
+
Usage: codegraph artifact [build] [--root <path>] [--out <dir>] [--sqlite] [--graph-json] [--report] [--questions] [--force] [--json | --pretty]
|
|
364
|
+
|
|
365
|
+
Artifacts:
|
|
366
|
+
codegraph.sqlite Read-only SQLite graph artifact
|
|
367
|
+
graph.json Portable graph JSON with stable project-relative handles
|
|
368
|
+
CODEGRAPH_REPORT.md Concise report for humans and agents
|
|
369
|
+
questions.json Suggested follow-up questions with runnable commands
|
|
370
|
+
manifest.json Bundle manifest
|
|
371
|
+
|
|
372
|
+
Defaults:
|
|
373
|
+
With no artifact selector flags, all artifacts are written.
|
|
374
|
+
--force removes recognizable stale artifact files while preserving unrelated operator files.
|
|
375
|
+
|
|
376
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
377
|
+
`;
|
|
378
|
+
export const MCP_HELP_TEXT = `codegraph mcp - Serve MCP tools for agent graph navigation
|
|
379
|
+
|
|
380
|
+
Usage: codegraph mcp [serve] [--root <path>] [--artifact <path>] [--stdio | --port <number>] [--host <host>] [--idle-timeout-ms <ms>] [--allow-build] [--warmup | --warmup-symbols]
|
|
381
|
+
|
|
382
|
+
Transports:
|
|
383
|
+
--stdio Serve MCP over stdio (default)
|
|
384
|
+
--port <number> Serve Streamable HTTP at /mcp
|
|
385
|
+
--warmup Build the base session cache at startup
|
|
386
|
+
--warmup-symbols Build the base cache and detailed symbol graph at startup
|
|
387
|
+
|
|
388
|
+
Index Options:
|
|
389
|
+
--cache <mode> Session cache mode: disk, memory, off
|
|
390
|
+
--cache-strict Force strict content-hash cache validation
|
|
391
|
+
--cache-verify Re-stat cached files before trusting disk cache entries
|
|
392
|
+
--progress Force progress output when stderr is redirected
|
|
393
|
+
--no-progress Suppress automatic index progress feedback
|
|
394
|
+
--threads N Number of worker threads (default: auto)
|
|
395
|
+
--native <mode> Native runtime mode: auto, on, off
|
|
396
|
+
--workers Force Piscina native-extraction workers (auto above 250 files)
|
|
397
|
+
--include-glob <glob> Restrict discovered files to extra glob(s), relative to each scan root
|
|
398
|
+
--ignore-glob <glob> Exclude extra discovered files by glob, relative to each scan root
|
|
399
|
+
--no-gitignore Do not apply .gitignore files during discovery
|
|
400
|
+
|
|
401
|
+
Tools are read-only unless --allow-build is passed.
|
|
402
|
+
`;
|
|
403
|
+
export const MCP_SERVE_HELP_TEXT = `codegraph mcp serve - MCP server for agent graph navigation
|
|
404
|
+
|
|
405
|
+
Usage: codegraph mcp [serve] [--root <path>] [--artifact <path>] [--stdio | --port <number>] [--host <host>] [--idle-timeout-ms <ms>] [--allow-build] [--warmup | --warmup-symbols]
|
|
406
|
+
|
|
407
|
+
Tools:
|
|
408
|
+
orient Build a compact first-turn repo packet
|
|
409
|
+
packet_get Retrieve bounded evidence by file path or stable target
|
|
410
|
+
search Deterministic ranked search with stable handles
|
|
411
|
+
get_file Bounded project file reads inside the root
|
|
412
|
+
get_symbol Resolve a search/explain handle
|
|
413
|
+
goto Go to definition by handle, qualified symbol path, or file position
|
|
414
|
+
refs Find references by handle, qualified symbol path, or file position
|
|
415
|
+
deps List file dependencies by file, qualified symbol path, or handle
|
|
416
|
+
rdeps List reverse file dependencies by file, qualified symbol path, or handle
|
|
417
|
+
path Find shortest dependency path
|
|
418
|
+
impact Build compact impact context for a git range
|
|
419
|
+
review Build review context for a git range
|
|
420
|
+
query_sqlite Read-only row- and byte-bounded SQLite artifact query
|
|
421
|
+
refresh_index Invalidate and optionally rebuild the MCP session snapshot
|
|
422
|
+
artifact_build Build artifacts only with --allow-build
|
|
423
|
+
|
|
424
|
+
Index Options:
|
|
425
|
+
--cache <mode> Session cache mode: disk, memory, off
|
|
426
|
+
--cache-strict Force strict content-hash cache validation
|
|
427
|
+
--cache-verify Re-stat cached files before trusting disk cache entries
|
|
428
|
+
--progress Force progress output when stderr is redirected
|
|
429
|
+
--no-progress Suppress automatic index progress feedback
|
|
430
|
+
--threads N Number of worker threads (default: auto)
|
|
431
|
+
--native <mode> Native runtime mode: auto, on, off
|
|
432
|
+
--workers Force Piscina native-extraction workers (auto above 250 files)
|
|
433
|
+
--include-glob <glob> Restrict discovered files to extra glob(s), relative to each scan root
|
|
434
|
+
--ignore-glob <glob> Exclude extra discovered files by glob, relative to each scan root
|
|
435
|
+
--no-gitignore Do not apply .gitignore files during discovery
|
|
436
|
+
|
|
437
|
+
Defaults:
|
|
438
|
+
Transport defaults to stdio.
|
|
439
|
+
HTTP transport binds to 127.0.0.1 unless --host is passed and serves /mcp.
|
|
440
|
+
Startup is lazy unless --warmup or --warmup-symbols is passed.
|
|
441
|
+
Warmup uses the configured session cache and shared index flags.
|
|
442
|
+
Tools are read-only unless --allow-build is passed.
|
|
443
|
+
`;
|
|
444
|
+
export const DUPLICATES_HELP_TEXT = `codegraph duplicates - Detect duplicate and near-duplicate code units
|
|
445
|
+
|
|
446
|
+
Usage: codegraph duplicates [path ...] [--root <path>] [--json | --pretty] [--profile cleanup|refactor-roi] [--sort similarity|actionability|reduced-lines] [--min-confidence high|medium|low] [--limit <n>] [--include-same-file] [--include-small] [--raw-pairs] [--no-summary]
|
|
447
|
+
|
|
448
|
+
Path behavior:
|
|
449
|
+
A single positional directory becomes the project root when --root is omitted.
|
|
450
|
+
Use --root . ./src to scan a subtree while keeping repository-relative paths.
|
|
451
|
+
Positional paths are scan roots, not glob patterns.
|
|
452
|
+
|
|
453
|
+
Discovery filters:
|
|
454
|
+
--include-glob and --ignore-glob are relative to each active scan root.
|
|
455
|
+
--include-root-glob and --ignore-root-glob are project-root-relative.
|
|
456
|
+
--no-gitignore disables .gitignore filtering for the current command.
|
|
457
|
+
Repeat each glob flag once per pattern:
|
|
458
|
+
codegraph duplicates --root . ./src --ignore-glob "tests/**" --ignore-glob "docs/**"
|
|
459
|
+
codegraph duplicates --root . ./tests --ignore-root-glob "tests/languages/**"
|
|
460
|
+
|
|
461
|
+
Options:
|
|
462
|
+
--pretty Emit one-line duplicate summaries for human triage. This is the default output.
|
|
463
|
+
--json Emit grouped duplicate findings as JSON for programmatic consumers.
|
|
464
|
+
--profile <name> Apply cleanup-oriented defaults. cleanup and refactor-roi are aliases.
|
|
465
|
+
--sort <mode> Order output by similarity, actionability, or reduced-lines.
|
|
466
|
+
Pretty output defaults to actionability. Cleanup profile defaults to reduced-lines.
|
|
467
|
+
JSON defaults to similarity unless --sort is explicit.
|
|
468
|
+
--min-confidence Minimum confidence to report. Defaults to medium.
|
|
469
|
+
--limit Maximum duplicate groups to return. Defaults to 50.
|
|
470
|
+
--include-same-file Report non-overlapping clones in the same file.
|
|
471
|
+
--include-small Include units below the default token floor.
|
|
472
|
+
--raw-pairs Include low-level scored unit-pair suggestions in JSON output.
|
|
473
|
+
--no-summary Suppress the pretty summary footer.
|
|
474
|
+
--min-tokens Minimum unit tokens. Defaults to 40, or 80 under cleanup profile.
|
|
475
|
+
--max-tokens Maximum fallback chunk tokens. Defaults to 800.
|
|
476
|
+
--max-bucket-size Skip candidate buckets larger than this value. Defaults to 200.
|
|
477
|
+
|
|
478
|
+
Output:
|
|
479
|
+
Pretty output is the default and emits one line per group with file spans, symbol or chunk labels, confidence, clone type, score, reduced lines, estimated reducible lines, token counts, heuristic family annotations, and cleanup labels.
|
|
480
|
+
Pretty output also emits a compact summary footer unless --no-summary is passed.
|
|
481
|
+
JSON output reports grouped duplicate findings, confidence, clone type, metrics, reduced-line fields, cleanup labels, clustered locations, omission counts including skipped candidate pairs, and pair stats.
|
|
482
|
+
Grouped duplicate JSON uses schemaVersion 3.
|
|
483
|
+
--raw-pairs is only supported with similarity-ranked JSON output and cannot be combined with the cleanup profile.
|
|
484
|
+
`;
|
|
485
|
+
export const DRIFT_HELP_TEXT = `codegraph drift - Compare architecture drift between graph states
|
|
486
|
+
|
|
487
|
+
Usage: codegraph drift [roots...] [--root <path>] (--base <ref> | --base-artifact <dir>) [--head <ref>] [--json | --pretty] [--fail-on <kind[,kind...]>] [--hotspot-jump-threshold <n>] [--limit <n>] [--graph-edges <full|summary|off>] [--public-api <all|removals|off>]
|
|
488
|
+
|
|
489
|
+
Signals:
|
|
490
|
+
Compares dependency cycles, hotspots, unresolved imports, public API symbols, duplicate group counts, and graph edges.
|
|
491
|
+
Drift is structural architecture comparison, not runtime validation, compiler diagnostics, or a style linter.
|
|
492
|
+
|
|
493
|
+
Options:
|
|
494
|
+
--head <ref> Git ref for the head snapshot. Defaults to the current checkout; with --base-artifact, only the current checkout is supported (., WORKTREE).
|
|
495
|
+
--fail-on <kind[,kind...]> Exit 1 only when one of the selected finding kinds is present.
|
|
496
|
+
--hotspot-jump-threshold <n> Minimum absolute hotspot score delta to report.
|
|
497
|
+
--limit <n> Maximum findings to emit in the report output.
|
|
498
|
+
--graph-edges <mode> Graph edge detail mode: full, summary, or off.
|
|
499
|
+
--public-api <mode> Public API finding mode: all, removals, or off.
|
|
500
|
+
`;
|
|
501
|
+
export const VIEWER_HELP_TEXT = `codegraph viewer - Serve the bundled graph visualization viewer
|
|
502
|
+
|
|
503
|
+
Usage: codegraph viewer [--root <path>] [--graph <root-confined-json>] [--host <host>] [--port <0-65535>] [--open] [--print-url]
|
|
504
|
+
|
|
505
|
+
Without --graph, the viewer builds a fresh graph projection from the current project and its automatically validated disk cache whenever the UI loads or reloads /graph.json.
|
|
506
|
+
With --graph, it serves the root-confined exported snapshot at the same route instead.
|
|
507
|
+
Graph paths must stay inside the selected root (the current directory by default) both lexically and after symlink resolution.
|
|
508
|
+
|
|
509
|
+
Options:
|
|
510
|
+
--graph <path> Root-confined exported graph JSON to inspect instead of the current project.
|
|
511
|
+
--host <host> Listener host. Defaults to 127.0.0.1.
|
|
512
|
+
--port <port> Listener port. Defaults to 4173; 0 selects an available port.
|
|
513
|
+
--open Open the server URL in the platform browser.
|
|
514
|
+
--print-url Print the deterministic URL and exit without starting a server. Cannot use --open or --port 0.
|
|
515
|
+
`;
|
|
516
|
+
export const INDEX_HELP_TEXT = `codegraph index - Build the project symbol index
|
|
517
|
+
|
|
518
|
+
Usage: codegraph index [roots...] [--root <path>] [--json | --pretty | --full] [--verbose] [--cache <mode>] [--cache-strict] [--cache-verify] [--threads N] [--native <mode>] [--workers]
|
|
519
|
+
|
|
520
|
+
Output:
|
|
521
|
+
Builds or refreshes the project symbol index and graph. Default output is a compact file/edge count; --json/--full includes module details.
|
|
522
|
+
|
|
523
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
524
|
+
`;
|
|
525
|
+
export const GRAPH_HELP_TEXT = `codegraph graph - Build a dependency graph
|
|
526
|
+
|
|
527
|
+
Usage: codegraph graph [roots...] [--root <path>] [--json | --pretty | --mermaid | --dot] [--sqlite <path>] [--output <path> | --stdout] [--sql-artifacts] [--fast-graph] [--resolve-node-modules] [--dynamic-import-heuristics]
|
|
528
|
+
|
|
529
|
+
Output:
|
|
530
|
+
Emits a file dependency graph for the selected roots. Use --json/--pretty/--mermaid/--dot/--sqlite for machine-readable or explicit human formats.
|
|
531
|
+
|
|
532
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
533
|
+
`;
|
|
534
|
+
export const REVIEW_HELP_TEXT = `codegraph review - Generate a code review report for a git range
|
|
535
|
+
|
|
536
|
+
Usage: codegraph review [project-root] [--root <path>] [--base <ref>] [--head <ref>] [--changed-since <ref>] [--json | --pretty] [--max-tests <n>] [--max-callsites <n>]
|
|
537
|
+
|
|
538
|
+
Defaults:
|
|
539
|
+
Git-backed review defaults to HEAD..WORKTREE when --base/--head/--changed-since are omitted.
|
|
540
|
+
|
|
541
|
+
Options:
|
|
542
|
+
--base <ref> Base revision. Defaults to HEAD unless --changed-since is used.
|
|
543
|
+
--head <ref> Head revision or WORKTREE for local changes. Defaults to WORKTREE unless --changed-since is used.
|
|
544
|
+
--changed-since <ref> Compare the current worktree against a single revision without inventing a head ref.
|
|
545
|
+
--max-tests <n> Cap candidate tests included in the report.
|
|
546
|
+
--max-callsites <n> Cap call sites included in the report.
|
|
547
|
+
--json Structured review report for automation.
|
|
548
|
+
--pretty Human-readable review summary (default when --json is absent).
|
|
549
|
+
|
|
550
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
551
|
+
`;
|
|
552
|
+
export const IMPACT_HELP_TEXT = `codegraph impact - Analyze PR impact between two revisions
|
|
553
|
+
|
|
554
|
+
Usage: codegraph impact [project-root] [--provider git|github|raw] [--base <ref>] [--head <ref>] [--json | --pretty] [--duplicates <mode>]
|
|
555
|
+
|
|
556
|
+
Defaults:
|
|
557
|
+
Git provider defaults to HEAD..WORKTREE when --base/--head are omitted.
|
|
558
|
+
|
|
559
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
560
|
+
`;
|
|
561
|
+
export const INSPECT_HELP_TEXT = `codegraph inspect - Summarize repo structure and recommend next commands
|
|
562
|
+
|
|
563
|
+
Usage: codegraph inspect [roots...] [--root <path>] [--limit <n>] [--duplicates] [--json | --pretty]
|
|
564
|
+
|
|
565
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
566
|
+
`;
|
|
567
|
+
export const DEPS_HELP_TEXT = `codegraph deps - List file dependencies
|
|
568
|
+
|
|
569
|
+
Usage: codegraph deps <file|file::symbol|symbol:...> [--root <path>] [--depth <n>] [--json | --pretty]
|
|
570
|
+
|
|
571
|
+
A qualified symbol path or portable symbol handle uses its declaring file for file-graph traversal. Use callees for symbol-level call relationships.
|
|
572
|
+
|
|
573
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
574
|
+
`;
|
|
575
|
+
export const RDEPS_HELP_TEXT = `codegraph rdeps - List reverse file dependencies
|
|
576
|
+
|
|
577
|
+
Usage: codegraph rdeps <file|file::symbol|symbol:...> [--root <path>] [--depth <n>] [--json | --pretty]
|
|
578
|
+
|
|
579
|
+
A qualified symbol path or portable symbol handle uses its declaring file for file-graph traversal. Use callers for symbol-level call relationships.
|
|
580
|
+
|
|
581
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
582
|
+
`;
|
|
583
|
+
export const PATH_HELP_TEXT = `codegraph path - Find the shortest dependency path between files
|
|
584
|
+
|
|
585
|
+
Usage: codegraph path <from-file> <to-file> [--root <path>] [--json | --pretty]
|
|
586
|
+
|
|
587
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
588
|
+
`;
|
|
589
|
+
export const CYCLES_HELP_TEXT = `codegraph cycles - Detect dependency cycles
|
|
590
|
+
|
|
591
|
+
Usage: codegraph cycles [roots...] [--root <path>] [--sort priority|size|fanin] [--json | --pretty]
|
|
592
|
+
|
|
593
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
594
|
+
`;
|
|
595
|
+
export const HOTSPOTS_HELP_TEXT = `codegraph hotspots - Find high-complexity files
|
|
596
|
+
|
|
597
|
+
Usage: codegraph hotspots [roots...] [--root <path>] [--limit <n>] [--json | --pretty]
|
|
598
|
+
|
|
599
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
600
|
+
`;
|
|
601
|
+
export const UNRESOLVED_HELP_TEXT = `codegraph unresolved - List unresolved project imports
|
|
602
|
+
|
|
603
|
+
Usage: codegraph unresolved [project-root] [--root <path>] [--json | --pretty]
|
|
604
|
+
|
|
605
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
606
|
+
`;
|
|
607
|
+
export const LINKS_HELP_TEXT = `codegraph links - Check local Markdown links
|
|
608
|
+
|
|
609
|
+
Usage: codegraph links [project-root] [--root <path>] [--json | --pretty] [--verbose]
|
|
610
|
+
|
|
611
|
+
Checks local Markdown file, reference, fragment, and root-boundary targets. External links are skipped.
|
|
612
|
+
`;
|
|
613
|
+
export const APISURFACE_HELP_TEXT = `codegraph apisurface - Summarize exported API symbols
|
|
614
|
+
|
|
615
|
+
Usage: codegraph apisurface [project-root] [--root <path>] [--json | --pretty]
|
|
616
|
+
|
|
617
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
618
|
+
`;
|
|
619
|
+
export const GRAPH_DELTA_HELP_TEXT = `codegraph graph-delta - Report file-level graph changes
|
|
620
|
+
|
|
621
|
+
Usage: codegraph graph-delta [project-root] [--root <path>] [--git-base <ref> | --changed-since <ref>] [--json | --pretty]
|
|
622
|
+
|
|
623
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
624
|
+
`;
|
|
625
|
+
export const DOCTOR_HELP_TEXT = `codegraph doctor - Inspect backend/runtime state and local graph artifacts
|
|
626
|
+
|
|
627
|
+
Usage: codegraph doctor [artifact-path] [--json | --pretty]
|
|
628
|
+
|
|
629
|
+
Output:
|
|
630
|
+
Reports Node/runtime health, optional native backend status, and local artifact presence.
|
|
631
|
+
`;
|
|
632
|
+
export const CHUNK_HELP_TEXT = `codegraph chunk - Chunk a file for embeddings
|
|
633
|
+
|
|
634
|
+
Usage: codegraph chunk <file-path> [--language <id>] [--min-tokens <n>] [--max-tokens <n>] [--text] [--json | --pretty]
|
|
635
|
+
`;
|
|
636
|
+
export const SKILL_HELP_TEXT = `codegraph skill - Install or inspect the bundled agent skill
|
|
637
|
+
|
|
638
|
+
Usage:
|
|
639
|
+
codegraph skill install [--agent <name> | --target <dir>] [--force] [--json]
|
|
640
|
+
codegraph skill print-path [--agent <name> | --target <dir>] [--json]
|
|
641
|
+
codegraph skill doctor [--agent <name> | --target <dir>] [--json]
|
|
642
|
+
`;
|
|
643
|
+
export const DUMPMOD_HELP_TEXT = `codegraph dumpmod - Dump one indexed module
|
|
644
|
+
|
|
645
|
+
Usage: codegraph dumpmod <file> [--root <path>] [--json | --pretty]
|
|
646
|
+
|
|
647
|
+
${SHARED_INDEX_OPTIONS_HELP}
|
|
648
|
+
`;
|
|
649
|
+
export const VERSION_HELP_TEXT = `codegraph version - Print the installed Codegraph version
|
|
650
|
+
|
|
651
|
+
Usage: codegraph version [--json | --pretty]
|
|
652
|
+
`;
|
|
653
|
+
export function helpTextForCommand(command, positionals) {
|
|
654
|
+
if (command === "explore")
|
|
655
|
+
return EXPLORE_HELP_TEXT;
|
|
656
|
+
if (command === "file")
|
|
657
|
+
return FILE_HELP_TEXT;
|
|
658
|
+
if (command === "search")
|
|
659
|
+
return SEARCH_HELP_TEXT;
|
|
660
|
+
if (command === "goto")
|
|
661
|
+
return GOTO_HELP_TEXT;
|
|
662
|
+
if (command === "refs")
|
|
663
|
+
return REFS_HELP_TEXT;
|
|
664
|
+
if (command === "grep")
|
|
665
|
+
return GREP_HELP_TEXT;
|
|
666
|
+
if (command === "sql")
|
|
667
|
+
return SQL_HELP_TEXT;
|
|
668
|
+
if (command === "symbols")
|
|
669
|
+
return SYMBOLS_HELP_TEXT;
|
|
670
|
+
if (command === "callers")
|
|
671
|
+
return CALLERS_HELP_TEXT;
|
|
672
|
+
if (command === "callees")
|
|
673
|
+
return CALLEES_HELP_TEXT;
|
|
674
|
+
if (command === "supertypes")
|
|
675
|
+
return SUPERTYPES_HELP_TEXT;
|
|
676
|
+
if (command === "subtypes")
|
|
677
|
+
return SUBTYPES_HELP_TEXT;
|
|
678
|
+
if (command === "implementations")
|
|
679
|
+
return IMPLEMENTATIONS_HELP_TEXT;
|
|
680
|
+
if (command === "rename-preview")
|
|
681
|
+
return RENAME_PREVIEW_HELP_TEXT;
|
|
682
|
+
if (command === "refactor-plan")
|
|
683
|
+
return REFACTOR_PLAN_HELP_TEXT;
|
|
684
|
+
if (command === "orient")
|
|
685
|
+
return ORIENT_HELP_TEXT;
|
|
686
|
+
if (command === "packet")
|
|
687
|
+
return PACKET_HELP_TEXT;
|
|
688
|
+
if (command === "explain")
|
|
689
|
+
return EXPLAIN_HELP_TEXT;
|
|
690
|
+
if (command === "affected")
|
|
691
|
+
return AFFECTED_HELP_TEXT;
|
|
692
|
+
if (command === "install")
|
|
693
|
+
return INSTALL_HELP_TEXT;
|
|
694
|
+
if (command === "uninstall")
|
|
695
|
+
return UNINSTALL_HELP_TEXT;
|
|
696
|
+
if (command === "init" || command === "status" || command === "sync" || command === "uninit")
|
|
697
|
+
return LIFECYCLE_HELP_TEXT;
|
|
698
|
+
if (command === "drift")
|
|
699
|
+
return DRIFT_HELP_TEXT;
|
|
700
|
+
if (command === "duplicates")
|
|
701
|
+
return DUPLICATES_HELP_TEXT;
|
|
702
|
+
if (command === "artifact")
|
|
703
|
+
return ARTIFACT_HELP_TEXT;
|
|
704
|
+
if (command === "viewer")
|
|
705
|
+
return VIEWER_HELP_TEXT;
|
|
706
|
+
if (command === "index")
|
|
707
|
+
return INDEX_HELP_TEXT;
|
|
708
|
+
if (command === "graph")
|
|
709
|
+
return GRAPH_HELP_TEXT;
|
|
710
|
+
if (command === "review")
|
|
711
|
+
return REVIEW_HELP_TEXT;
|
|
712
|
+
if (command === "impact")
|
|
713
|
+
return IMPACT_HELP_TEXT;
|
|
714
|
+
if (command === "inspect")
|
|
715
|
+
return INSPECT_HELP_TEXT;
|
|
716
|
+
if (command === "deps")
|
|
717
|
+
return DEPS_HELP_TEXT;
|
|
718
|
+
if (command === "rdeps")
|
|
719
|
+
return RDEPS_HELP_TEXT;
|
|
720
|
+
if (command === "path")
|
|
721
|
+
return PATH_HELP_TEXT;
|
|
722
|
+
if (command === "cycles")
|
|
723
|
+
return CYCLES_HELP_TEXT;
|
|
724
|
+
if (command === "hotspots")
|
|
725
|
+
return HOTSPOTS_HELP_TEXT;
|
|
726
|
+
if (command === "unresolved")
|
|
727
|
+
return UNRESOLVED_HELP_TEXT;
|
|
728
|
+
if (command === "links")
|
|
729
|
+
return LINKS_HELP_TEXT;
|
|
730
|
+
if (command === "apisurface")
|
|
731
|
+
return APISURFACE_HELP_TEXT;
|
|
732
|
+
if (command === "graph-delta")
|
|
733
|
+
return GRAPH_DELTA_HELP_TEXT;
|
|
734
|
+
if (command === "doctor")
|
|
735
|
+
return DOCTOR_HELP_TEXT;
|
|
736
|
+
if (command === "chunk")
|
|
737
|
+
return CHUNK_HELP_TEXT;
|
|
738
|
+
if (command === "skill")
|
|
739
|
+
return SKILL_HELP_TEXT;
|
|
740
|
+
if (command === "dumpmod")
|
|
741
|
+
return DUMPMOD_HELP_TEXT;
|
|
742
|
+
if (command === "version")
|
|
743
|
+
return VERSION_HELP_TEXT;
|
|
744
|
+
if (command === "mcp") {
|
|
745
|
+
return positionals[0] === undefined || positionals[0] === "serve" ? MCP_SERVE_HELP_TEXT : MCP_HELP_TEXT;
|
|
746
|
+
}
|
|
747
|
+
return undefined;
|
|
748
|
+
}
|
|
749
|
+
//# sourceMappingURL=help.js.map
|