@vpxa/aikit 0.1.107 → 0.1.108
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 +1 -1
- package/packages/cli/dist/index.js +10 -10
- package/packages/cli/dist/{init-BB9sfLbE.js → init-DqjJZClg.js} +1 -1
- package/packages/cli/dist/{templates-Dz2d2veK.js → templates-BRWMrqFI.js} +2 -3
- package/packages/cli/dist/{user-H68wV-dO.js → user-D4p6n-Q5.js} +1 -1
- package/packages/flows/dist/index.js +2 -2
- package/packages/server/dist/index.js +1 -1
- package/packages/server/dist/{server-DfCR_Bix.js → server-28XBH2md.js} +174 -183
- package/packages/tools/dist/index.d.ts +1 -57
- package/packages/tools/dist/index.js +72 -70
- package/scaffold/dist/adapters/claude-code.mjs +2 -2
- package/scaffold/dist/adapters/copilot.mjs +1 -1
- package/scaffold/dist/definitions/bodies.mjs +33 -42
- package/scaffold/dist/definitions/flows.mjs +13 -13
- package/scaffold/dist/definitions/prompts.mjs +18 -18
- package/scaffold/dist/definitions/skills.mjs +566 -5
- package/scaffold/dist/definitions/tools.mjs +1 -1
|
@@ -100,28 +100,6 @@ interface AuditData {
|
|
|
100
100
|
}
|
|
101
101
|
declare function audit(store: IKnowledgeStore, embedder: IEmbedder, options?: AuditOptions): Promise<AikitResponse<AuditData>>;
|
|
102
102
|
//#endregion
|
|
103
|
-
//#region packages/tools/src/batch.d.ts
|
|
104
|
-
interface BatchOperation {
|
|
105
|
-
/** Unique ID for this operation */
|
|
106
|
-
id: string;
|
|
107
|
-
/** Operation type */
|
|
108
|
-
type: string;
|
|
109
|
-
/** Arguments for the operation */
|
|
110
|
-
args: Record<string, unknown>;
|
|
111
|
-
}
|
|
112
|
-
interface BatchResult {
|
|
113
|
-
id: string;
|
|
114
|
-
status: 'success' | 'error';
|
|
115
|
-
result?: unknown;
|
|
116
|
-
error?: string;
|
|
117
|
-
durationMs: number;
|
|
118
|
-
}
|
|
119
|
-
interface BatchOptions {
|
|
120
|
-
/** Max concurrent operations (default: 4) */
|
|
121
|
-
concurrency?: number;
|
|
122
|
-
}
|
|
123
|
-
declare function batch(operations: BatchOperation[], executor: (op: BatchOperation) => Promise<unknown>, options?: BatchOptions): Promise<BatchResult[]>;
|
|
124
|
-
//#endregion
|
|
125
103
|
//#region packages/tools/src/changelog.d.ts
|
|
126
104
|
/**
|
|
127
105
|
* aikit_changelog — Generate a changelog from git history.
|
|
@@ -1925,40 +1903,6 @@ interface SessionDigestDeps {
|
|
|
1925
1903
|
declare function sessionDigest(options?: SessionDigestOptions, deps?: SessionDigestDeps): SessionDigestResult;
|
|
1926
1904
|
declare function sessionDigestSampling(options: SessionDigestOptions, samplingFn: (prompt: string, systemPrompt: string, maxTokens: number) => Promise<string>, deps?: SessionDigestDeps): Promise<SessionDigestResult>;
|
|
1927
1905
|
//#endregion
|
|
1928
|
-
//#region packages/tools/src/snippet.d.ts
|
|
1929
|
-
/**
|
|
1930
|
-
* aikit_snippet — Persistent code template storage with search.
|
|
1931
|
-
*/
|
|
1932
|
-
interface Snippet {
|
|
1933
|
-
name: string;
|
|
1934
|
-
language: string;
|
|
1935
|
-
code: string;
|
|
1936
|
-
tags: string[];
|
|
1937
|
-
created: string;
|
|
1938
|
-
updated: string;
|
|
1939
|
-
}
|
|
1940
|
-
type SnippetAction = 'save' | 'get' | 'list' | 'search' | 'delete';
|
|
1941
|
-
interface SnippetOptions {
|
|
1942
|
-
action: SnippetAction;
|
|
1943
|
-
name?: string;
|
|
1944
|
-
language?: string;
|
|
1945
|
-
code?: string;
|
|
1946
|
-
tags?: string[];
|
|
1947
|
-
query?: string;
|
|
1948
|
-
}
|
|
1949
|
-
type SnippetResult = Snippet | {
|
|
1950
|
-
snippets: SnippetSummary[];
|
|
1951
|
-
} | {
|
|
1952
|
-
deleted: boolean;
|
|
1953
|
-
};
|
|
1954
|
-
interface SnippetSummary {
|
|
1955
|
-
name: string;
|
|
1956
|
-
language: string;
|
|
1957
|
-
tags: string[];
|
|
1958
|
-
updated: string;
|
|
1959
|
-
}
|
|
1960
|
-
declare function snippet(options: SnippetOptions): SnippetResult;
|
|
1961
|
-
//#endregion
|
|
1962
1906
|
//#region packages/tools/src/stratum-card.d.ts
|
|
1963
1907
|
interface StratumCardOptions {
|
|
1964
1908
|
files: string[];
|
|
@@ -2352,4 +2296,4 @@ declare function addToWorkset(name: string, files: string[], cwd?: string): Work
|
|
|
2352
2296
|
*/
|
|
2353
2297
|
declare function removeFromWorkset(name: string, files: string[], cwd?: string): Workset | null;
|
|
2354
2298
|
//#endregion
|
|
2355
|
-
export { type AikitNextHint, type AikitResponse, type AikitResponseMeta, type AikitToolError, type AikitToolErrorCode, type AuditCheck, type AuditData, type AuditOptions, type AuditRecommendation, type
|
|
2299
|
+
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 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 ManagedProcess, type MeasureOptions, type MeasureResult, type OnboardMode, type OnboardOptions, type OnboardResult, type OnboardStepResult, type ParsedError, type ParsedGitStatus, type ParsedOutput, type ParsedTestResult, type ParsedTestSummary, 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 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, envInfo, errorResponse, escapeRegExp, estimateTokens, evaluate, evidenceMap, fileSummary, find, findDeadSymbols, findExamples, forgeClassify, forgeGround, formatChangelog, getRegisteredRules, getWorkset, gitAvailable, gitCommitToRef, gitContext, gitExec, graphAugmentSearch, graphQuery, guide, headTailTruncate, health, httpRequest, laneCreate, laneDiff, laneDiscard, laneList, laneMerge, laneStatus, listActiveLeases, listRestorePoints, listWorksets, measure, okResponse, onboard, paragraphTruncate, parseBiome, parseGitStatus, parseOutput, parseSearchResults, parseTsc, parseVitest, processList, processLogs, processStart, processStatus, processStop, 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, slugForRef, stashClear, stashDelete, stashGet, stashList, stashSet, stratumCard, summarizeCheckResult, symbol, testRun, timeUtils, trace, truncateToTokenBudget, watchList, watchStart, watchStop, webFetch, webSearch };
|