@vpxa/aikit 0.1.207 → 0.1.209
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/package.json +3 -3
- package/packages/browser/dist/index.js +7 -7
- package/packages/cli/dist/index.js +3 -3
- package/packages/cli/dist/{init-BoKsQg2-.js → init-CYp6FjZO.js} +1 -1
- package/packages/cli/dist/{templates-D-McT4sX.js → templates-CeowBw5E.js} +1 -1
- package/packages/server/dist/auth-lzZKfxlV.js +2 -0
- package/packages/server/dist/bin.js +8 -0
- package/packages/server/dist/config-PfoXsIC3.js +2 -0
- package/packages/server/dist/dashboard-static-CRfR1yKU.js +2 -0
- package/packages/server/dist/index.d.ts +4 -1
- package/packages/server/dist/index.js +1 -1
- package/packages/server/dist/resolve-sibling-ByoHo7Tp.js +2 -0
- package/packages/server/dist/routes-Afg7J7xK.js +6 -0
- package/packages/server/dist/server-BaMsrcyc.js +2996 -0
- package/packages/server/dist/server-BhQwVWsr.js +2997 -0
- package/packages/server/dist/settings-static-B3lnYvcb.js +2 -0
- package/packages/server/dist/supersession-BIV-v6JG.js +3 -0
- package/packages/server/dist/version-check-gazMo-D4.js +2 -0
- package/packages/server/package.json +14 -11
- package/packages/store/dist/index.d.ts +39 -1
- package/packages/store/dist/index.js +36 -26
- package/packages/tools/dist/index.d.ts +138 -63
- package/packages/tools/dist/index.js +71 -71
- package/scaffold/dist/definitions/plugins.mjs +1 -1
- package/scaffold/dist/definitions/policies.mjs +2 -0
- package/scaffold/scripts/compile-policies.mjs +31 -0
- package/packages/server/dist/server-Dk2WC343.js +0 -2992
|
@@ -461,6 +461,92 @@ interface CompactResult {
|
|
|
461
461
|
*/
|
|
462
462
|
declare function compact(embedder: IEmbedder, options: CompactOptions): Promise<CompactResult>;
|
|
463
463
|
//#endregion
|
|
464
|
+
//#region packages/tools/src/replay.d.ts
|
|
465
|
+
/**
|
|
466
|
+
* Replay — append-only audit trail of tool/CLI invocations.
|
|
467
|
+
*
|
|
468
|
+
* Captures tool name, arguments (redacted), duration, and result summary
|
|
469
|
+
* to `.aikit-state/replay.jsonl`. Used by `aikit replay` CLI, `aikit_replay` MCP tool,
|
|
470
|
+
* and the TUI log panel.
|
|
471
|
+
*/
|
|
472
|
+
interface ReplayEntry {
|
|
473
|
+
/** ISO timestamp */
|
|
474
|
+
ts: string;
|
|
475
|
+
/** Source: 'mcp' | 'cli' */
|
|
476
|
+
source: 'mcp' | 'cli';
|
|
477
|
+
/** Tool or command name */
|
|
478
|
+
tool: string;
|
|
479
|
+
/** Redacted input summary (first 2000 chars of JSON) */
|
|
480
|
+
input: string;
|
|
481
|
+
/** Duration in milliseconds */
|
|
482
|
+
durationMs: number;
|
|
483
|
+
/** Result status */
|
|
484
|
+
status: 'ok' | 'error';
|
|
485
|
+
/** Short result summary (first 2000 chars) */
|
|
486
|
+
output: string;
|
|
487
|
+
/** Correlation ID linking to middleware requestId */
|
|
488
|
+
traceId: string;
|
|
489
|
+
/** Original output size in characters before truncation */
|
|
490
|
+
outputChars: number;
|
|
491
|
+
}
|
|
492
|
+
interface ReplayOptions {
|
|
493
|
+
/** Max entries to return (default: 20) */
|
|
494
|
+
last?: number;
|
|
495
|
+
/** Filter by tool name */
|
|
496
|
+
tool?: string;
|
|
497
|
+
/** Filter by source */
|
|
498
|
+
source?: 'mcp' | 'cli';
|
|
499
|
+
/** Filter entries after this ISO timestamp */
|
|
500
|
+
since?: string;
|
|
501
|
+
}
|
|
502
|
+
/**
|
|
503
|
+
* Append a replay entry to the audit log.
|
|
504
|
+
* Creates the state directory if it doesn't exist.
|
|
505
|
+
*/
|
|
506
|
+
declare function replayAppend(entry: ReplayEntry): void;
|
|
507
|
+
/**
|
|
508
|
+
* Read replay entries with optional filters.
|
|
509
|
+
*/
|
|
510
|
+
declare function replayList(opts?: ReplayOptions): ReplayEntry[];
|
|
511
|
+
/**
|
|
512
|
+
* Trim the replay log to MAX_ENTRIES, keeping the most recent.
|
|
513
|
+
* Async to avoid blocking the event loop on large logs.
|
|
514
|
+
*/
|
|
515
|
+
declare function replayTrim(): Promise<number>;
|
|
516
|
+
/**
|
|
517
|
+
* Clear the entire replay log.
|
|
518
|
+
*/
|
|
519
|
+
declare function replayClear(): void;
|
|
520
|
+
/**
|
|
521
|
+
* Helper: create a replay entry from a tool invocation.
|
|
522
|
+
* Use as a wrapper around tool execution.
|
|
523
|
+
*/
|
|
524
|
+
declare function replayCapture(source: 'mcp' | 'cli', tool: string, input: unknown, fn: () => Promise<unknown>, traceId?: string): Promise<unknown>;
|
|
525
|
+
//#endregion
|
|
526
|
+
//#region packages/tools/src/compliance-scorer.d.ts
|
|
527
|
+
interface ComplianceViolation {
|
|
528
|
+
rule: string;
|
|
529
|
+
ruleId: string;
|
|
530
|
+
tool: string;
|
|
531
|
+
timestamp: string;
|
|
532
|
+
suggestion: string;
|
|
533
|
+
}
|
|
534
|
+
interface ComplianceReport {
|
|
535
|
+
score: number;
|
|
536
|
+
violations: ComplianceViolation[];
|
|
537
|
+
totalCalls: number;
|
|
538
|
+
summary: string;
|
|
539
|
+
}
|
|
540
|
+
interface ComplianceRule {
|
|
541
|
+
id: string;
|
|
542
|
+
description: string;
|
|
543
|
+
check: (entry: ReplayEntry) => ComplianceViolation | null;
|
|
544
|
+
}
|
|
545
|
+
interface ComplianceScoreOptions {
|
|
546
|
+
lastN?: number;
|
|
547
|
+
}
|
|
548
|
+
declare function scoreCompliance(entries: ReplayEntry[], options?: ComplianceScoreOptions): ComplianceReport;
|
|
549
|
+
//#endregion
|
|
464
550
|
//#region packages/tools/src/compression/types.d.ts
|
|
465
551
|
/**
|
|
466
552
|
* Compression mode determines how aggressively output is compressed.
|
|
@@ -1821,68 +1907,6 @@ interface RenameResult {
|
|
|
1821
1907
|
}
|
|
1822
1908
|
declare function rename(options: RenameOptions): Promise<RenameResult>;
|
|
1823
1909
|
//#endregion
|
|
1824
|
-
//#region packages/tools/src/replay.d.ts
|
|
1825
|
-
/**
|
|
1826
|
-
* Replay — append-only audit trail of tool/CLI invocations.
|
|
1827
|
-
*
|
|
1828
|
-
* Captures tool name, arguments (redacted), duration, and result summary
|
|
1829
|
-
* to `.aikit-state/replay.jsonl`. Used by `aikit replay` CLI, `aikit_replay` MCP tool,
|
|
1830
|
-
* and the TUI log panel.
|
|
1831
|
-
*/
|
|
1832
|
-
interface ReplayEntry {
|
|
1833
|
-
/** ISO timestamp */
|
|
1834
|
-
ts: string;
|
|
1835
|
-
/** Source: 'mcp' | 'cli' */
|
|
1836
|
-
source: 'mcp' | 'cli';
|
|
1837
|
-
/** Tool or command name */
|
|
1838
|
-
tool: string;
|
|
1839
|
-
/** Redacted input summary (first 2000 chars of JSON) */
|
|
1840
|
-
input: string;
|
|
1841
|
-
/** Duration in milliseconds */
|
|
1842
|
-
durationMs: number;
|
|
1843
|
-
/** Result status */
|
|
1844
|
-
status: 'ok' | 'error';
|
|
1845
|
-
/** Short result summary (first 2000 chars) */
|
|
1846
|
-
output: string;
|
|
1847
|
-
/** Correlation ID linking to middleware requestId */
|
|
1848
|
-
traceId: string;
|
|
1849
|
-
/** Original output size in characters before truncation */
|
|
1850
|
-
outputChars: number;
|
|
1851
|
-
}
|
|
1852
|
-
interface ReplayOptions {
|
|
1853
|
-
/** Max entries to return (default: 20) */
|
|
1854
|
-
last?: number;
|
|
1855
|
-
/** Filter by tool name */
|
|
1856
|
-
tool?: string;
|
|
1857
|
-
/** Filter by source */
|
|
1858
|
-
source?: 'mcp' | 'cli';
|
|
1859
|
-
/** Filter entries after this ISO timestamp */
|
|
1860
|
-
since?: string;
|
|
1861
|
-
}
|
|
1862
|
-
/**
|
|
1863
|
-
* Append a replay entry to the audit log.
|
|
1864
|
-
* Creates the state directory if it doesn't exist.
|
|
1865
|
-
*/
|
|
1866
|
-
declare function replayAppend(entry: ReplayEntry): void;
|
|
1867
|
-
/**
|
|
1868
|
-
* Read replay entries with optional filters.
|
|
1869
|
-
*/
|
|
1870
|
-
declare function replayList(opts?: ReplayOptions): ReplayEntry[];
|
|
1871
|
-
/**
|
|
1872
|
-
* Trim the replay log to MAX_ENTRIES, keeping the most recent.
|
|
1873
|
-
* Async to avoid blocking the event loop on large logs.
|
|
1874
|
-
*/
|
|
1875
|
-
declare function replayTrim(): Promise<number>;
|
|
1876
|
-
/**
|
|
1877
|
-
* Clear the entire replay log.
|
|
1878
|
-
*/
|
|
1879
|
-
declare function replayClear(): void;
|
|
1880
|
-
/**
|
|
1881
|
-
* Helper: create a replay entry from a tool invocation.
|
|
1882
|
-
* Use as a wrapper around tool execution.
|
|
1883
|
-
*/
|
|
1884
|
-
declare function replayCapture(source: 'mcp' | 'cli', tool: string, input: unknown, fn: () => Promise<unknown>, traceId?: string): Promise<unknown>;
|
|
1885
|
-
//#endregion
|
|
1886
1910
|
//#region packages/tools/src/restore-points.d.ts
|
|
1887
1911
|
interface RestorePoint {
|
|
1888
1912
|
id: string;
|
|
@@ -1928,6 +1952,37 @@ interface SchemaValidateResult {
|
|
|
1928
1952
|
}
|
|
1929
1953
|
declare function schemaValidate(options: SchemaValidateOptions): SchemaValidateResult;
|
|
1930
1954
|
//#endregion
|
|
1955
|
+
//#region packages/tools/src/search-response.d.ts
|
|
1956
|
+
interface SearchResponseItem {
|
|
1957
|
+
sourcePath: string;
|
|
1958
|
+
contentType: string;
|
|
1959
|
+
score: number;
|
|
1960
|
+
headingPath?: string;
|
|
1961
|
+
startLine?: number;
|
|
1962
|
+
endLine?: number;
|
|
1963
|
+
origin?: string;
|
|
1964
|
+
category?: string;
|
|
1965
|
+
tags?: string[];
|
|
1966
|
+
}
|
|
1967
|
+
interface SearchResponseData {
|
|
1968
|
+
results: SearchResponseItem[];
|
|
1969
|
+
totalResults: number;
|
|
1970
|
+
searchMode: string;
|
|
1971
|
+
query: string;
|
|
1972
|
+
}
|
|
1973
|
+
interface SearchSuccessResponseOptions {
|
|
1974
|
+
text: string;
|
|
1975
|
+
query: string;
|
|
1976
|
+
searchMode: string;
|
|
1977
|
+
limit: number;
|
|
1978
|
+
results: SearchResponseItem[];
|
|
1979
|
+
durationMs: number;
|
|
1980
|
+
truncated?: boolean;
|
|
1981
|
+
caveats?: string[];
|
|
1982
|
+
}
|
|
1983
|
+
declare function createSearchSuccessResponse(opts: SearchSuccessResponseOptions): AikitResponse<SearchResponseData>;
|
|
1984
|
+
declare function createSearchErrorResponse(message: string, durationMs: number): AikitResponse<never>;
|
|
1985
|
+
//#endregion
|
|
1931
1986
|
//#region packages/tools/src/stash.d.ts
|
|
1932
1987
|
interface StashEntry {
|
|
1933
1988
|
key: string;
|
|
@@ -1989,6 +2044,26 @@ interface SessionDigestDeps {
|
|
|
1989
2044
|
declare function sessionDigest(options?: SessionDigestOptions, deps?: SessionDigestDeps): SessionDigestResult;
|
|
1990
2045
|
declare function sessionDigestSampling(options: SessionDigestOptions, samplingFn: (prompt: string, systemPrompt: string, maxTokens: number) => Promise<string>, deps?: SessionDigestDeps): Promise<SessionDigestResult>;
|
|
1991
2046
|
//#endregion
|
|
2047
|
+
//#region packages/tools/src/skill-matcher.d.ts
|
|
2048
|
+
interface SkillTriggerExamples {
|
|
2049
|
+
positive: string[];
|
|
2050
|
+
negative: string[];
|
|
2051
|
+
}
|
|
2052
|
+
interface SkillTriggerMeta {
|
|
2053
|
+
name: string;
|
|
2054
|
+
triggerKeywords: string[];
|
|
2055
|
+
triggerPatterns: string[];
|
|
2056
|
+
triggerExamples: SkillTriggerExamples;
|
|
2057
|
+
priority: number;
|
|
2058
|
+
}
|
|
2059
|
+
interface SkillMatch {
|
|
2060
|
+
name: string;
|
|
2061
|
+
score: number;
|
|
2062
|
+
matchedKeywords: string[];
|
|
2063
|
+
matchedPatterns: string[];
|
|
2064
|
+
}
|
|
2065
|
+
declare function matchSkills(query: string, skills: SkillTriggerMeta[]): SkillMatch[];
|
|
2066
|
+
//#endregion
|
|
1992
2067
|
//#region packages/tools/src/stratum-card.d.ts
|
|
1993
2068
|
interface StratumCardOptions {
|
|
1994
2069
|
files: string[];
|
|
@@ -2382,4 +2457,4 @@ declare function addToWorkset(name: string, files: string[], cwd?: string): Work
|
|
|
2382
2457
|
*/
|
|
2383
2458
|
declare function removeFromWorkset(name: string, files: string[], cwd?: string): Workset | null;
|
|
2384
2459
|
//#endregion
|
|
2385
|
-
export { type AikitNextHint, type AikitResponse, type AikitResponseMeta, type AikitToolError, type AikitToolErrorCode, type AuditCheck, type AuditData, type AuditOptions, type AuditRecommendation, type ChangelogEntry, type ChangelogFormat, type ChangelogOptions, type ChangelogResult, type CheckOptions, type CheckResult, type CheckSummaryResult, type Checkpoint, type CheckpointSummary, type ClassifyTrigger, type CodemodChange, type CodemodOptions, type CodemodResult, type CodemodRule, type CompactOptions, type CompactResult, type CompressOutputOptions, type CompressionContext, type CompressionMode, type CompressionResult, type CompressionRule, type ConstraintRef, type DeadSymbol, type DeadSymbolOptions, type DeadSymbolResult, type DelegateOptions, type DelegateResult, type DiffChange, type DiffFile, type DiffHunk, type DiffParseOptions, type DigestFieldEntry, type DigestOptions, type DigestResult, type DigestSource, type DogfoodLogEntry, type DogfoodLogGroupedEntry, type DogfoodLogOptions, type DogfoodLogResult, type EncodeOperation, type EncodeOptions, type EncodeResult, type EnvInfoOptions, type EnvInfoResult, type EvalOptions, type EvalResult, type EvidenceEntry, type EvidenceMapAction, type EvidenceMapResult, type EvidenceMapState, type EvidenceStatus, type Example, FileCache, type FileCacheEntry, type FileCacheStats, type FileMetrics, type FileSummaryOptions, type FileSummaryResult, type FindExamplesOptions, type FindExamplesResult, type FindOptions, type FindResult, type FindResults, type ForgeClassifyCeremony, type ForgeClassifyOptions, type ForgeClassifyResult, type ForgeGroundOptions, type ForgeGroundResult, type ForgeTier, GIT_REF_SLUG_PATTERN, type GateConfig, type GateDecision, type GateResult, type GitContextOptions, type GitContextResult, type GraphAugmentOptions, type GraphAugmentedResult, type GraphQueryOptions, type GraphQueryResult, type GuideRecommendation, type GuideResult, type HealthCheck, type HealthResult, type HotspotEntry, type HttpMethod, type HttpRequestOptions, type HttpRequestResult, type LaneDiffEntry, type LaneDiffResult, type LaneMergeResult, type LaneMeta, type Lease, type LeaseConflict, type LegacyStashOptions, type ManagedProcess, type MeasureOptions, type MeasureResult, type OnboardMode, type OnboardOptions, type OnboardResult, type OnboardStepResult, type ParsedError, type ParsedGitStatus, type ParsedOutput, type ParsedTestResult, type ParsedTestSummary, type PruneOptions, type PruneResult, type QueueItem, type QueueState, type RegexTestOptions, type RegexTestResult, type RenameChange, type RenameOptions, type RenameResult, type ReplayEntry, type ReplayOptions, type RestorePoint, type SafetyGate, type SafetyGateResult, type SchemaValidateOptions, type SchemaValidateResult, type ScopeMapEntry, type ScopeMapOptions, type ScopeMapResult, type SessionDigestOptions, type SessionDigestResult, type StashEntry, type StashStore, type StratumCard, type StratumCardOptions, type StratumCardResult, type SymbolGraphContext, type SymbolInfo, type SymbolOptions, type TestRunOptions, type TestRunResult, type TimeOptions, type TimeResult, type TimeoutAction, type TraceNode, type TraceOptions, type TraceResult, type TransformOptions, type TransformResult, type TypedUnknownSeed, type UnknownType, type ValidationError, type WatchEvent, type WatchHandle, type WatchOptions, type WebFetchMode, type WebFetchOptions, type WebFetchResult, type WebSearchOptions, type WebSearchResult, type WebSearchResultItem, type Workset, acquireLease, addToWorkset, analyzeFile, audit, autoClaimTestFailures, bookendReorder, bpeSurprise, changelog, check, checkpointDiff, checkpointGC, checkpointHistory, checkpointLatest, checkpointList, checkpointLoad, checkpointSave, classifyExitCode, codemod, compact, compressOutput, compressTerminalOutput, cosineSimilarity, createRestorePoint, dataTransform, delegate, delegateListModels, deleteWorkset, detectOutputTool, diffParse, digest, dogfoodLog, encode, ensureLegacyStashImported, envInfo, errorResponse, escapeRegExp, estimateTokens, evaluate, evidenceMap, fileSummary, find, findDeadSymbols, findExamples, forgeClassify, forgeGround, formatBytes, formatChangelog, getRegisteredRules, getWorkset, gitAvailable, gitCommitToRef, gitContext, gitExec, graphAugmentSearch, graphQuery, guide, headTailTruncate, health, httpRequest, laneCreate, laneDiff, laneDiscard, laneList, laneMerge, laneStatus, listActiveLeases, listRestorePoints, listWorksets, markPruneRun, measure, okResponse, onboard, paragraphTruncate, parseBiome, parseGitStatus, parseOutput, parseSearchResults, parseTsc, parseVitest, processList, processLogs, processStart, processStatus, processStop, processStopAll, prune, queueClear, queueCreate, queueDag, queueDelete, queueDone, queueFail, queueGet, queueList, queueNext, queuePush, regexTest, registerRule, registerRules, releaseLease, removeFromWorkset, rename, replayAppend, replayCapture, replayClear, replayList, replayTrim, resetGitCache, resolvePath, restoreFromPoint, saveWorkset, schemaValidate, scopeMap, scoreLine, scoreLines, segment, sessionDigest, sessionDigestSampling, shannonEntropy, shouldRunStartupPrune, slugForRef, stashClear, stashDelete, stashGet, stashList, stashSet, stratumCard, summarizeCheckResult, symbol, testRun, timeUtils, trace, truncateToTokenBudget, watchList, watchStart, watchStop, webFetch, webSearch };
|
|
2460
|
+
export { type AikitNextHint, type AikitResponse, type AikitResponseMeta, type AikitToolError, type AikitToolErrorCode, type AuditCheck, type AuditData, type AuditOptions, type AuditRecommendation, type ChangelogEntry, type ChangelogFormat, type ChangelogOptions, type ChangelogResult, type CheckOptions, type CheckResult, type CheckSummaryResult, type Checkpoint, type CheckpointSummary, type ClassifyTrigger, type CodemodChange, type CodemodOptions, type CodemodResult, type CodemodRule, type CompactOptions, type CompactResult, type ComplianceReport, type ComplianceRule, type ComplianceScoreOptions, type ComplianceViolation, type CompressOutputOptions, type CompressionContext, type CompressionMode, type CompressionResult, type CompressionRule, type ConstraintRef, type DeadSymbol, type DeadSymbolOptions, type DeadSymbolResult, type DelegateOptions, type DelegateResult, type DiffChange, type DiffFile, type DiffHunk, type DiffParseOptions, type DigestFieldEntry, type DigestOptions, type DigestResult, type DigestSource, type DogfoodLogEntry, type DogfoodLogGroupedEntry, type DogfoodLogOptions, type DogfoodLogResult, type EncodeOperation, type EncodeOptions, type EncodeResult, type EnvInfoOptions, type EnvInfoResult, type EvalOptions, type EvalResult, type EvidenceEntry, type EvidenceMapAction, type EvidenceMapResult, type EvidenceMapState, type EvidenceStatus, type Example, FileCache, type FileCacheEntry, type FileCacheStats, type FileMetrics, type FileSummaryOptions, type FileSummaryResult, type FindExamplesOptions, type FindExamplesResult, type FindOptions, type FindResult, type FindResults, type ForgeClassifyCeremony, type ForgeClassifyOptions, type ForgeClassifyResult, type ForgeGroundOptions, type ForgeGroundResult, type ForgeTier, GIT_REF_SLUG_PATTERN, type GateConfig, type GateDecision, type GateResult, type GitContextOptions, type GitContextResult, type GraphAugmentOptions, type GraphAugmentedResult, type GraphQueryOptions, type GraphQueryResult, type GuideRecommendation, type GuideResult, type HealthCheck, type HealthResult, type HotspotEntry, type HttpMethod, type HttpRequestOptions, type HttpRequestResult, type LaneDiffEntry, type LaneDiffResult, type LaneMergeResult, type LaneMeta, type Lease, type LeaseConflict, type LegacyStashOptions, type ManagedProcess, type MeasureOptions, type MeasureResult, type OnboardMode, type OnboardOptions, type OnboardResult, type OnboardStepResult, type ParsedError, type ParsedGitStatus, type ParsedOutput, type ParsedTestResult, type ParsedTestSummary, type PruneOptions, type PruneResult, type QueueItem, type QueueState, type RegexTestOptions, type RegexTestResult, type RenameChange, type RenameOptions, type RenameResult, type ReplayEntry, type ReplayOptions, type RestorePoint, type SafetyGate, type SafetyGateResult, type SchemaValidateOptions, type SchemaValidateResult, type ScopeMapEntry, type ScopeMapOptions, type ScopeMapResult, type SearchResponseData, type SearchResponseItem, type SearchSuccessResponseOptions, type SessionDigestOptions, type SessionDigestResult, type SkillMatch, type SkillTriggerExamples, type SkillTriggerMeta, type StashEntry, type StashStore, type StratumCard, type StratumCardOptions, type StratumCardResult, type SymbolGraphContext, type SymbolInfo, type SymbolOptions, type TestRunOptions, type TestRunResult, type TimeOptions, type TimeResult, type TimeoutAction, type TraceNode, type TraceOptions, type TraceResult, type TransformOptions, type TransformResult, type TypedUnknownSeed, type UnknownType, type ValidationError, type WatchEvent, type WatchHandle, type WatchOptions, type WebFetchMode, type WebFetchOptions, type WebFetchResult, type WebSearchOptions, type WebSearchResult, type WebSearchResultItem, type Workset, acquireLease, addToWorkset, analyzeFile, audit, autoClaimTestFailures, bookendReorder, bpeSurprise, changelog, check, checkpointDiff, checkpointGC, checkpointHistory, checkpointLatest, checkpointList, checkpointLoad, checkpointSave, classifyExitCode, codemod, compact, compressOutput, compressTerminalOutput, cosineSimilarity, createRestorePoint, createSearchErrorResponse, createSearchSuccessResponse, dataTransform, delegate, delegateListModels, deleteWorkset, detectOutputTool, diffParse, digest, dogfoodLog, encode, ensureLegacyStashImported, envInfo, errorResponse, escapeRegExp, estimateTokens, evaluate, evidenceMap, fileSummary, find, findDeadSymbols, findExamples, forgeClassify, forgeGround, formatBytes, formatChangelog, getRegisteredRules, getWorkset, gitAvailable, gitCommitToRef, gitContext, gitExec, graphAugmentSearch, graphQuery, guide, headTailTruncate, health, httpRequest, laneCreate, laneDiff, laneDiscard, laneList, laneMerge, laneStatus, listActiveLeases, listRestorePoints, listWorksets, markPruneRun, matchSkills, measure, okResponse, onboard, paragraphTruncate, parseBiome, parseGitStatus, parseOutput, parseSearchResults, parseTsc, parseVitest, processList, processLogs, processStart, processStatus, processStop, processStopAll, prune, queueClear, queueCreate, queueDag, queueDelete, queueDone, queueFail, queueGet, queueList, queueNext, queuePush, regexTest, registerRule, registerRules, releaseLease, removeFromWorkset, rename, replayAppend, replayCapture, replayClear, replayList, replayTrim, resetGitCache, resolvePath, restoreFromPoint, saveWorkset, schemaValidate, scopeMap, scoreCompliance, scoreLine, scoreLines, segment, sessionDigest, sessionDigestSampling, shannonEntropy, shouldRunStartupPrune, slugForRef, stashClear, stashDelete, stashGet, stashList, stashSet, stratumCard, summarizeCheckResult, symbol, testRun, timeUtils, trace, truncateToTokenBudget, watchList, watchStart, watchStop, webFetch, webSearch };
|