@pratik7368patil/anchor-core 0.1.24 → 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +124 -5
- package/dist/index.js +658 -93
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -404,6 +404,33 @@ type OrgStatus = {
|
|
|
404
404
|
lastError?: string;
|
|
405
405
|
}>;
|
|
406
406
|
};
|
|
407
|
+
type OrgRunTimelineStepStatus = "active" | "done" | "skipped" | "warn" | "fail" | "wait";
|
|
408
|
+
type OrgRunTimelineStep = {
|
|
409
|
+
id: string;
|
|
410
|
+
label: string;
|
|
411
|
+
status: OrgRunTimelineStepStatus;
|
|
412
|
+
startedAt: string;
|
|
413
|
+
updatedAt: string;
|
|
414
|
+
completedAt?: string;
|
|
415
|
+
durationMs?: number;
|
|
416
|
+
current?: number;
|
|
417
|
+
total?: number;
|
|
418
|
+
detail?: string;
|
|
419
|
+
};
|
|
420
|
+
type OrgRunTimelineRepoSummary = {
|
|
421
|
+
repo: string;
|
|
422
|
+
status: OrgRunTimelineStepStatus;
|
|
423
|
+
durationMs: number;
|
|
424
|
+
detail?: string;
|
|
425
|
+
};
|
|
426
|
+
type OrgRunTimelineSnapshot = {
|
|
427
|
+
repo?: string;
|
|
428
|
+
repoIndex?: number;
|
|
429
|
+
repoTotal?: number;
|
|
430
|
+
activeStepId?: string;
|
|
431
|
+
steps: OrgRunTimelineStep[];
|
|
432
|
+
recentRepos: OrgRunTimelineRepoSummary[];
|
|
433
|
+
};
|
|
407
434
|
type OrgRunHeartbeat = {
|
|
408
435
|
pid: number;
|
|
409
436
|
command: string;
|
|
@@ -412,6 +439,7 @@ type OrgRunHeartbeat = {
|
|
|
412
439
|
repoIndex?: number;
|
|
413
440
|
repoTotal?: number;
|
|
414
441
|
phase: string;
|
|
442
|
+
timeline?: OrgRunTimelineSnapshot;
|
|
415
443
|
startedAt: string;
|
|
416
444
|
updatedAt: string;
|
|
417
445
|
};
|
|
@@ -546,6 +574,9 @@ type OrgGraphProgress = {
|
|
|
546
574
|
edges: number;
|
|
547
575
|
apiContracts: number;
|
|
548
576
|
apiConsumers: number;
|
|
577
|
+
current?: number;
|
|
578
|
+
total?: number;
|
|
579
|
+
kind?: "edges" | "contracts" | "consumers";
|
|
549
580
|
} | {
|
|
550
581
|
stage: "completed_org_graph";
|
|
551
582
|
org: string;
|
|
@@ -703,12 +734,89 @@ type CodeIndexProgress = {
|
|
|
703
734
|
total: number;
|
|
704
735
|
filePath: string;
|
|
705
736
|
chunks: number;
|
|
737
|
+
} | {
|
|
738
|
+
stage: "building_architecture_imports";
|
|
739
|
+
repo: string;
|
|
740
|
+
current: number;
|
|
741
|
+
total: number;
|
|
742
|
+
filePath?: string;
|
|
743
|
+
imports: number;
|
|
744
|
+
} | {
|
|
745
|
+
stage: "building_architecture_components";
|
|
746
|
+
repo: string;
|
|
747
|
+
current: number;
|
|
748
|
+
total: number;
|
|
749
|
+
filePath?: string;
|
|
750
|
+
components: number;
|
|
751
|
+
} | {
|
|
752
|
+
stage: "building_architecture_patterns";
|
|
753
|
+
repo: string;
|
|
754
|
+
current: number;
|
|
755
|
+
total: number;
|
|
756
|
+
area?: ArchitectureArea;
|
|
757
|
+
patterns: number;
|
|
706
758
|
} | {
|
|
707
759
|
stage: "indexed_architecture";
|
|
708
760
|
repo: string;
|
|
709
761
|
components: number;
|
|
710
762
|
patterns: number;
|
|
711
763
|
imports: number;
|
|
764
|
+
} | {
|
|
765
|
+
stage: "writing_code_index";
|
|
766
|
+
repo: string;
|
|
767
|
+
phase: string;
|
|
768
|
+
} | {
|
|
769
|
+
stage: "inferring_test_awareness";
|
|
770
|
+
repo: string;
|
|
771
|
+
phase: "classifying_files" | "indexing_sources" | "linking_tests" | "completed";
|
|
772
|
+
current: number;
|
|
773
|
+
total: number;
|
|
774
|
+
testFiles: number;
|
|
775
|
+
testLinks: number;
|
|
776
|
+
filePath?: string;
|
|
777
|
+
} | {
|
|
778
|
+
stage: "deleting_existing_code_index";
|
|
779
|
+
repo: string;
|
|
780
|
+
chunks: number;
|
|
781
|
+
patterns: number;
|
|
782
|
+
} | {
|
|
783
|
+
stage: "writing_code_files";
|
|
784
|
+
repo: string;
|
|
785
|
+
current: number;
|
|
786
|
+
total: number;
|
|
787
|
+
filePath?: string;
|
|
788
|
+
} | {
|
|
789
|
+
stage: "writing_code_chunks";
|
|
790
|
+
repo: string;
|
|
791
|
+
current: number;
|
|
792
|
+
total: number;
|
|
793
|
+
filePath?: string;
|
|
794
|
+
chunks: number;
|
|
795
|
+
} | {
|
|
796
|
+
stage: "writing_test_awareness";
|
|
797
|
+
repo: string;
|
|
798
|
+
current: number;
|
|
799
|
+
total: number;
|
|
800
|
+
kind: "test_files" | "test_links";
|
|
801
|
+
} | {
|
|
802
|
+
stage: "writing_architecture_data";
|
|
803
|
+
repo: string;
|
|
804
|
+
current: number;
|
|
805
|
+
total: number;
|
|
806
|
+
kind: "imports" | "components" | "patterns";
|
|
807
|
+
} | {
|
|
808
|
+
stage: "writing_architecture_map_edges";
|
|
809
|
+
repo: string;
|
|
810
|
+
current: number;
|
|
811
|
+
total: number;
|
|
812
|
+
edges: number;
|
|
813
|
+
} | {
|
|
814
|
+
stage: "refreshing_test_commands";
|
|
815
|
+
repo: string;
|
|
816
|
+
current: number;
|
|
817
|
+
total: number;
|
|
818
|
+
phase: "detecting" | "writing";
|
|
819
|
+
commands: number;
|
|
712
820
|
} | {
|
|
713
821
|
stage: "completed_code_index";
|
|
714
822
|
repo: string;
|
|
@@ -957,6 +1065,9 @@ declare function sanitizeHistoricalText(text: string): string;
|
|
|
957
1065
|
declare function redactedHistoricalText(text: string): string;
|
|
958
1066
|
|
|
959
1067
|
type AnchorDatabase = Database.Database;
|
|
1068
|
+
type CodeIndexWriteOptions = {
|
|
1069
|
+
onProgress?: (progress: CodeIndexProgress) => void;
|
|
1070
|
+
};
|
|
960
1071
|
declare function defaultDatabasePath(cwd: string): string;
|
|
961
1072
|
declare function openAnchorDatabase(cwd: string, databasePath?: string): AnchorDatabase;
|
|
962
1073
|
declare function openAnchorDatabaseReadOnly(databasePath: string): AnchorDatabase;
|
|
@@ -984,7 +1095,7 @@ declare function upsertPullRequest(db: AnchorDatabase, pr: PullRequestRecord, wi
|
|
|
984
1095
|
wisdom: number;
|
|
985
1096
|
regressions: number;
|
|
986
1097
|
};
|
|
987
|
-
declare function replaceCodeIndex(db: AnchorDatabase, repo: string, codeFiles: CodeFileRecord[], codeChunks: CodeChunk[], skippedFiles: number, cwd: string, architecture?: ArchitectureIndexData): CodeIndexSummary;
|
|
1098
|
+
declare function replaceCodeIndex(db: AnchorDatabase, repo: string, codeFiles: CodeFileRecord[], codeChunks: CodeChunk[], skippedFiles: number, cwd: string, architecture?: ArchitectureIndexData, options?: CodeIndexWriteOptions): CodeIndexSummary;
|
|
988
1099
|
declare function recordIndexRun(db: AnchorDatabase, run: IndexRunRecord): void;
|
|
989
1100
|
declare function getIndexStatus(cwd: string, githubTokenConfigured?: boolean, databasePath?: string): IndexStatus;
|
|
990
1101
|
declare function getWisdomCategoryCounts(db: AnchorDatabase): Record<WisdomCategory, number>;
|
|
@@ -1003,9 +1114,12 @@ declare function chunkCodeFile(file: ChunkableCodeFile, options?: {
|
|
|
1003
1114
|
overlapLines?: number;
|
|
1004
1115
|
}): CodeChunk[];
|
|
1005
1116
|
|
|
1117
|
+
type BuildArchitectureIndexOptions = {
|
|
1118
|
+
onProgress?: (progress: CodeIndexProgress) => void;
|
|
1119
|
+
};
|
|
1006
1120
|
declare function classifyArchitectureArea(filePath: string, language?: string, content?: string): ArchitectureArea;
|
|
1007
1121
|
declare function extractCodeImports(sourcePath: string, content: string, codePaths: Set<string>, repo?: string): CodeImport[];
|
|
1008
|
-
declare function buildArchitectureIndex(repo: string, files: ChunkableCodeFile[], chunks: CodeChunk[]): ArchitectureIndexData;
|
|
1122
|
+
declare function buildArchitectureIndex(repo: string, files: ChunkableCodeFile[], chunks: CodeChunk[], options?: BuildArchitectureIndexOptions): ArchitectureIndexData;
|
|
1009
1123
|
|
|
1010
1124
|
declare const DEFAULT_MAX_CODE_FILE_BYTES: number;
|
|
1011
1125
|
type DiscoveredCodeFile = CodeFileRecord & {
|
|
@@ -1029,8 +1143,11 @@ declare function indexCodebase(db: AnchorDatabase, options: {
|
|
|
1029
1143
|
}): CodeIndexSummary;
|
|
1030
1144
|
declare function emptyCodeIndexSummary(cwd: string): CodeIndexSummary;
|
|
1031
1145
|
|
|
1146
|
+
type TestAwarenessOptions = {
|
|
1147
|
+
onProgress?: (progress: CodeIndexProgress) => void;
|
|
1148
|
+
};
|
|
1032
1149
|
declare function isTestFilePath(filePath: string): boolean;
|
|
1033
|
-
declare function inferTestAwareness(repo: string, codeFiles: CodeFileRecord[], codeChunks: CodeChunk[]): {
|
|
1150
|
+
declare function inferTestAwareness(repo: string, codeFiles: CodeFileRecord[], codeChunks: CodeChunk[], options?: TestAwarenessOptions): {
|
|
1034
1151
|
testFiles: TestFileRecord[];
|
|
1035
1152
|
testLinks: TestLink[];
|
|
1036
1153
|
};
|
|
@@ -1117,7 +1234,9 @@ declare function planTask(db: AnchorDatabase, cwd: string, input: AnchorContextI
|
|
|
1117
1234
|
|
|
1118
1235
|
declare function detectTestCommandsForFile(db: AnchorDatabase, cwd: string, filePath: string): TestCommand[];
|
|
1119
1236
|
declare function detectTestCommands(db: AnchorDatabase, cwd: string, files?: string[]): TestCommand[];
|
|
1120
|
-
declare function refreshTestCommands(db: AnchorDatabase, cwd: string, repo: string, files?: string[]
|
|
1237
|
+
declare function refreshTestCommands(db: AnchorDatabase, cwd: string, repo: string, files?: string[], options?: {
|
|
1238
|
+
onProgress?: (progress: CodeIndexProgress) => void;
|
|
1239
|
+
}): TestCommand[];
|
|
1121
1240
|
|
|
1122
1241
|
type OnboardingInput = {
|
|
1123
1242
|
file?: string;
|
|
@@ -1655,4 +1774,4 @@ declare function getAnchorIndexHealth(cwd: string): AnchorIndexHealth & {
|
|
|
1655
1774
|
indexStatus: IndexStatus;
|
|
1656
1775
|
};
|
|
1657
1776
|
|
|
1658
|
-
export { ANCHOR_CURSOR_RULE, ANCHOR_EVALS_FILE, ANCHOR_PLAYBOOKS_FILE, type AnchorCiInput, type AnchorContextInput, type AnchorDatabase, type AnchorExplainFileInput, type AnchorIndexHealth, type AnchorOrgConfig, type AnchorOrgRepoConfig, type AnchorReviewDiffInput, type ArchitectureArea, type ArchitectureCheckInput, type ArchitectureComponent, type ArchitectureContextInput, type ArchitectureIndexData, type ArchitectureMap, type ArchitectureMapEdge, type ArchitectureMapFormat, type ArchitectureMapInput, type ArchitectureMapNode, type ArchitecturePattern, type ArchitectureQueryInput, type ChunkableCodeFile, type CodeChunk, type CodeFileDiscoveryResult, type CodeFileRecord, type CodeImport, type CodeIndexProgress, type CodeIndexSummary, type ConfidenceLevel, type CoverageGrade, type CoverageInput, type CoverageReport, type CurrentCodeSnapshot, type CursorMcpConfig, DEFAULT_MAX_CODE_FILE_BYTES, DEMO_CODE_FILES, DEMO_PULL_REQUESTS, DEMO_REPO, type DiscoveredCodeFile, type DoctorCheck, type DoctorOptions, type DoctorReport, type EvidenceRef, type FeedbackEvent, type FeedbackRating, type FetchMergedPullRequestsGraphQLOptions, type FetchPullRequestsOptions, type FetchPullRequestsProgress, type FormattedResult, type FreshnessResult, type FreshnessStatus, type GitCommandRunner, type GitHubFetchBackend, GitHubGraphQLError, type GitHubGraphQLFetch, type GitHubGraphQLFetchCheckpoint, type GitHubGraphQLRateLimitState, type GitHubGraphQLResponse, type GitHubGraphQLTransientRetry, type GitHubRateLimitController, type GitHubRateLimitErrorLike, type GitHubRateLimitProgress, type GitHubRepo, type GitHubTokenResolution, type GitHubTokenResolverOptions, type GitHubTokenSource, type IndexPullRequestsProgress, type IndexRunRecord, type IndexStatus, type IndexSummary, type LocalEmbeddingProvider, type OnboardingInput, type OnboardingPack, type OrgAnomaly, type OrgAnomalyCategory, type OrgApiConsumer, type OrgCloneProgress, type OrgCloneResult, type OrgCrossRepoEdge, type OrgCrossRepoRelationship, type OrgFormattedResult, type OrgGraphProgress, type OrgGraphResult, type OrgGraphState, type OrgImpactResult, type OrgIndexOptions, type OrgIndexResult, type OrgLifecycleProgress, type OrgRepoCloneState, type OrgRepoGroup, type OrgRepoIndexResult, type OrgRunHeartbeat, type OrgRunHeartbeatStatus, type OrgStatus, type Playbook, type PullRequestComment, type PullRequestCommit, type PullRequestFile, type PullRequestPerson, type PullRequestRecord, type RankedArchitecturePattern, type RankedCodeChunk, type RankedRegressionEvent, type RankedTeamRule, type RankedTestFile, type RankedWisdomUnit, type RebuildOrgGraphOptions, type RegressionEvent, type ReliabilityGate, type ReliabilityGateRejection, type ReliabilityGateResult, type ReliabilityGateStatus, type RetrievalEvalCase, type RetrievalEvalResult, type RetrievalEvalRunResult, type RulesAddInput, type RulesAddResult, type RulesEvidenceCheckResult, type RulesInitResult, type RulesSuggestOptions, SCHEMA_SQL, type SearchHistoryInput, type SemanticStatus, type SourceType, type SuggestedPrompt, TEAM_RULES_FILE, type TaskPlan, type TeamRule, type TeamRuleSuggestion, type TeamRulesValidationResult, type TestCommand, type TestFileRecord, type TestLink, type WatchRefreshInput, type WisdomCategory, type WisdomUnit, addOrgRepoConfig, addRetrievalEval, addTeamRule, anchorMcpEntry, architectureFilesFromDiff, buildAnchorContextResult, buildArchitectureIndex, buildArchitectureMap, buildFtsQuery, buildOnboardingPack, buildOrgContextResult, buildQueryTerms, calculateCoverage, canonicalizeText, categorizeWisdom, checkArchitecture, checkOrgImpact, checkSchema, checkTeamRuleEvidence, chunkCodeFile, chunkHistoricalText, claimKeyFor, clampMaxResults, classifyArchitectureArea, clearGraphQLFetchCheckpoint, clearOrgHeartbeat, clipSentence, cloneOrPullOrgRepo, cloneOrgRepos, confidenceAtLeast, confidenceLevelFor, confidenceRank, confidenceReasonsFor, countValidTeamRules, createGitHubClient, createGitHubGraphQLRequester, defaultDatabasePath, defaultGitCommandRunner, defaultOrgBaseDir, defaultOrgCloneUrl, detectGitHubRepo, detectGitRoot, detectTestCommands, detectTestCommandsForFile, discoverCodeFiles, emptyCodeIndexSummary, ensureAnchorGitExclude, ensureCursorConfig, ensureCursorRule, ensureRepository, ensureTeamRulesFile, evaluateFreshness, evaluateIndexHealth, evaluateReliabilityGate, evidenceForWisdom, explainFile, extractCodeImports, extractCodeSymbols, extractRegressionEvents, extractSymbols, extractWisdomUnits, feedbackAdjustedScore, fetchMergedPullRequests, fetchMergedPullRequestsWithGraphQL, fetchPullRequestDetails, filesFromDiff, findOrgApiConsumers, formatAnchorContext, formatIndexStatus, formatSearchHistory, getAnchorIndexHealth, getArchitectureContext, getArchitectureMapContext, getGitHubRateLimitDelayMs, getGraphQLFetchCheckpoint, getIndexStatus, getLastSyncTime, getOrgArchitectureMap, getOrgGraphCounts, getOrgGraphState, getOrgRepoState, getOrgStatus, getPlaybook, getSemanticStatus, getSuggestedPromptTexts, getSuggestedPrompts, getWisdomCategoryCounts, githubAuthFixMessage, graphQLFetchCheckpointScope, hasHighSignalLanguage, indexCodebase, indexOrgRepos, indexPullRequests, inferTestAwareness, initOrgConfig, initPlaybooks, initRetrievalEvals, initializeSchema, isGitHubGraphQLResourceLimitError, isGitHubRateLimitError, isHardExcludedCodePath, isTestFilePath, listFeedbackEvents, listOrgNames, listPlaybooks, loadCurrentCodeSnapshot, loadOrgConfig, loadTeamRulesFile, maybeLoadOrgConfig, mergeAnchorMcpConfig, normalizePullRequest, openAnchorDatabase, openAnchorDatabaseReadOnly, openOrgDatabase, openOrgDatabaseReadOnly, orgCloneStateFromResult, orgConfigPath, orgDatabasePath, orgHeartbeatPath, orgRepoLocalPath, orgReposRoot, orgRoot, paginateWithGitHubRateLimit, parseGitHubRemote, planTask, plannedOrgCloneCommands, rankArchitecturePatterns, rankCodeChunks, rankRegressionEvents, rankRelevantTests, rankTeamRules, rankWisdomUnits, readOrgHeartbeat, rebuildOrgGraph, recordFeedback, recordIndexRun, recordOrgGraphState, recordOrgIndexRun, redactSecrets, redactedHistoricalText, refreshTestCommands, refreshWatchIndex, removeOrgRepoConfig, replaceCodeIndex, repoAliasFromFullName, requestWithGitHubRateLimit, resolveGitHubToken, resolveOrgForTool, resolvePullRequestDetailConcurrency, resolvePullRequestFetchLimit, reviewDiff, runAnchorCi, runDoctor, runRetrievalEvals, sanitizeHistoricalText, saveGraphQLFetchCheckpoint, saveOrgConfig, shouldFallbackToRestAfterGraphQLError, shouldSyncSince, sourceTypeLabel, stripPromptInjection, suggestPlaybooks, suggestTeamRules, syncOrgConfigToDatabase, syncPlaybooksToDatabase, tokenizeSearchText, truncateText, uniqueStrings, updateGitHubGraphQLRateLimitState, updateOrgRepoState, updateSyncState, upsertPullRequest, validateOrgName, validateOrgRepoFullName, validateOrgRepoGroup, validateTeamRulesFile, watchCodebase, writeOrgHeartbeat };
|
|
1777
|
+
export { ANCHOR_CURSOR_RULE, ANCHOR_EVALS_FILE, ANCHOR_PLAYBOOKS_FILE, type AnchorCiInput, type AnchorContextInput, type AnchorDatabase, type AnchorExplainFileInput, type AnchorIndexHealth, type AnchorOrgConfig, type AnchorOrgRepoConfig, type AnchorReviewDiffInput, type ArchitectureArea, type ArchitectureCheckInput, type ArchitectureComponent, type ArchitectureContextInput, type ArchitectureIndexData, type ArchitectureMap, type ArchitectureMapEdge, type ArchitectureMapFormat, type ArchitectureMapInput, type ArchitectureMapNode, type ArchitecturePattern, type ArchitectureQueryInput, type ChunkableCodeFile, type CodeChunk, type CodeFileDiscoveryResult, type CodeFileRecord, type CodeImport, type CodeIndexProgress, type CodeIndexSummary, type ConfidenceLevel, type CoverageGrade, type CoverageInput, type CoverageReport, type CurrentCodeSnapshot, type CursorMcpConfig, DEFAULT_MAX_CODE_FILE_BYTES, DEMO_CODE_FILES, DEMO_PULL_REQUESTS, DEMO_REPO, type DiscoveredCodeFile, type DoctorCheck, type DoctorOptions, type DoctorReport, type EvidenceRef, type FeedbackEvent, type FeedbackRating, type FetchMergedPullRequestsGraphQLOptions, type FetchPullRequestsOptions, type FetchPullRequestsProgress, type FormattedResult, type FreshnessResult, type FreshnessStatus, type GitCommandRunner, type GitHubFetchBackend, GitHubGraphQLError, type GitHubGraphQLFetch, type GitHubGraphQLFetchCheckpoint, type GitHubGraphQLRateLimitState, type GitHubGraphQLResponse, type GitHubGraphQLTransientRetry, type GitHubRateLimitController, type GitHubRateLimitErrorLike, type GitHubRateLimitProgress, type GitHubRepo, type GitHubTokenResolution, type GitHubTokenResolverOptions, type GitHubTokenSource, type IndexPullRequestsProgress, type IndexRunRecord, type IndexStatus, type IndexSummary, type LocalEmbeddingProvider, type OnboardingInput, type OnboardingPack, type OrgAnomaly, type OrgAnomalyCategory, type OrgApiConsumer, type OrgCloneProgress, type OrgCloneResult, type OrgCrossRepoEdge, type OrgCrossRepoRelationship, type OrgFormattedResult, type OrgGraphProgress, type OrgGraphResult, type OrgGraphState, type OrgImpactResult, type OrgIndexOptions, type OrgIndexResult, type OrgLifecycleProgress, type OrgRepoCloneState, type OrgRepoGroup, type OrgRepoIndexResult, type OrgRunHeartbeat, type OrgRunHeartbeatStatus, type OrgRunTimelineRepoSummary, type OrgRunTimelineSnapshot, type OrgRunTimelineStep, type OrgRunTimelineStepStatus, type OrgStatus, type Playbook, type PullRequestComment, type PullRequestCommit, type PullRequestFile, type PullRequestPerson, type PullRequestRecord, type RankedArchitecturePattern, type RankedCodeChunk, type RankedRegressionEvent, type RankedTeamRule, type RankedTestFile, type RankedWisdomUnit, type RebuildOrgGraphOptions, type RegressionEvent, type ReliabilityGate, type ReliabilityGateRejection, type ReliabilityGateResult, type ReliabilityGateStatus, type RetrievalEvalCase, type RetrievalEvalResult, type RetrievalEvalRunResult, type RulesAddInput, type RulesAddResult, type RulesEvidenceCheckResult, type RulesInitResult, type RulesSuggestOptions, SCHEMA_SQL, type SearchHistoryInput, type SemanticStatus, type SourceType, type SuggestedPrompt, TEAM_RULES_FILE, type TaskPlan, type TeamRule, type TeamRuleSuggestion, type TeamRulesValidationResult, type TestCommand, type TestFileRecord, type TestLink, type WatchRefreshInput, type WisdomCategory, type WisdomUnit, addOrgRepoConfig, addRetrievalEval, addTeamRule, anchorMcpEntry, architectureFilesFromDiff, buildAnchorContextResult, buildArchitectureIndex, buildArchitectureMap, buildFtsQuery, buildOnboardingPack, buildOrgContextResult, buildQueryTerms, calculateCoverage, canonicalizeText, categorizeWisdom, checkArchitecture, checkOrgImpact, checkSchema, checkTeamRuleEvidence, chunkCodeFile, chunkHistoricalText, claimKeyFor, clampMaxResults, classifyArchitectureArea, clearGraphQLFetchCheckpoint, clearOrgHeartbeat, clipSentence, cloneOrPullOrgRepo, cloneOrgRepos, confidenceAtLeast, confidenceLevelFor, confidenceRank, confidenceReasonsFor, countValidTeamRules, createGitHubClient, createGitHubGraphQLRequester, defaultDatabasePath, defaultGitCommandRunner, defaultOrgBaseDir, defaultOrgCloneUrl, detectGitHubRepo, detectGitRoot, detectTestCommands, detectTestCommandsForFile, discoverCodeFiles, emptyCodeIndexSummary, ensureAnchorGitExclude, ensureCursorConfig, ensureCursorRule, ensureRepository, ensureTeamRulesFile, evaluateFreshness, evaluateIndexHealth, evaluateReliabilityGate, evidenceForWisdom, explainFile, extractCodeImports, extractCodeSymbols, extractRegressionEvents, extractSymbols, extractWisdomUnits, feedbackAdjustedScore, fetchMergedPullRequests, fetchMergedPullRequestsWithGraphQL, fetchPullRequestDetails, filesFromDiff, findOrgApiConsumers, formatAnchorContext, formatIndexStatus, formatSearchHistory, getAnchorIndexHealth, getArchitectureContext, getArchitectureMapContext, getGitHubRateLimitDelayMs, getGraphQLFetchCheckpoint, getIndexStatus, getLastSyncTime, getOrgArchitectureMap, getOrgGraphCounts, getOrgGraphState, getOrgRepoState, getOrgStatus, getPlaybook, getSemanticStatus, getSuggestedPromptTexts, getSuggestedPrompts, getWisdomCategoryCounts, githubAuthFixMessage, graphQLFetchCheckpointScope, hasHighSignalLanguage, indexCodebase, indexOrgRepos, indexPullRequests, inferTestAwareness, initOrgConfig, initPlaybooks, initRetrievalEvals, initializeSchema, isGitHubGraphQLResourceLimitError, isGitHubRateLimitError, isHardExcludedCodePath, isTestFilePath, listFeedbackEvents, listOrgNames, listPlaybooks, loadCurrentCodeSnapshot, loadOrgConfig, loadTeamRulesFile, maybeLoadOrgConfig, mergeAnchorMcpConfig, normalizePullRequest, openAnchorDatabase, openAnchorDatabaseReadOnly, openOrgDatabase, openOrgDatabaseReadOnly, orgCloneStateFromResult, orgConfigPath, orgDatabasePath, orgHeartbeatPath, orgRepoLocalPath, orgReposRoot, orgRoot, paginateWithGitHubRateLimit, parseGitHubRemote, planTask, plannedOrgCloneCommands, rankArchitecturePatterns, rankCodeChunks, rankRegressionEvents, rankRelevantTests, rankTeamRules, rankWisdomUnits, readOrgHeartbeat, rebuildOrgGraph, recordFeedback, recordIndexRun, recordOrgGraphState, recordOrgIndexRun, redactSecrets, redactedHistoricalText, refreshTestCommands, refreshWatchIndex, removeOrgRepoConfig, replaceCodeIndex, repoAliasFromFullName, requestWithGitHubRateLimit, resolveGitHubToken, resolveOrgForTool, resolvePullRequestDetailConcurrency, resolvePullRequestFetchLimit, reviewDiff, runAnchorCi, runDoctor, runRetrievalEvals, sanitizeHistoricalText, saveGraphQLFetchCheckpoint, saveOrgConfig, shouldFallbackToRestAfterGraphQLError, shouldSyncSince, sourceTypeLabel, stripPromptInjection, suggestPlaybooks, suggestTeamRules, syncOrgConfigToDatabase, syncPlaybooksToDatabase, tokenizeSearchText, truncateText, uniqueStrings, updateGitHubGraphQLRateLimitState, updateOrgRepoState, updateSyncState, upsertPullRequest, validateOrgName, validateOrgRepoFullName, validateOrgRepoGroup, validateTeamRulesFile, watchCodebase, writeOrgHeartbeat };
|