@cleocode/adapters 2026.4.47 → 2026.4.49
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/cant-context.d.ts +132 -1
- package/dist/cant-context.d.ts.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19765 -375
- package/dist/index.js.map +4 -4
- package/dist/providers/claude-code/adapter.d.ts +12 -6
- package/dist/providers/claude-code/adapter.d.ts.map +1 -1
- package/dist/providers/claude-code/hooks.d.ts.map +1 -1
- package/dist/providers/claude-code/spawn.d.ts.map +1 -1
- package/dist/providers/claude-sdk/index.d.ts +18 -0
- package/dist/providers/claude-sdk/index.d.ts.map +1 -0
- package/dist/providers/claude-sdk/mcp-registry.d.ts +40 -0
- package/dist/providers/claude-sdk/mcp-registry.d.ts.map +1 -0
- package/dist/providers/claude-sdk/session-store.d.ts +78 -0
- package/dist/providers/claude-sdk/session-store.d.ts.map +1 -0
- package/dist/providers/claude-sdk/spawn.d.ts +79 -0
- package/dist/providers/claude-sdk/spawn.d.ts.map +1 -0
- package/dist/providers/claude-sdk/tool-bridge.d.ts +38 -0
- package/dist/providers/claude-sdk/tool-bridge.d.ts.map +1 -0
- package/dist/providers/openai-sdk/adapter.d.ts +77 -0
- package/dist/providers/openai-sdk/adapter.d.ts.map +1 -0
- package/dist/providers/openai-sdk/guardrails.d.ts +67 -0
- package/dist/providers/openai-sdk/guardrails.d.ts.map +1 -0
- package/dist/providers/openai-sdk/handoff.d.ts +94 -0
- package/dist/providers/openai-sdk/handoff.d.ts.map +1 -0
- package/dist/providers/openai-sdk/index.d.ts +39 -0
- package/dist/providers/openai-sdk/index.d.ts.map +1 -0
- package/dist/providers/openai-sdk/install.d.ts +61 -0
- package/dist/providers/openai-sdk/install.d.ts.map +1 -0
- package/dist/providers/openai-sdk/spawn.d.ts +146 -0
- package/dist/providers/openai-sdk/spawn.d.ts.map +1 -0
- package/dist/providers/openai-sdk/tracing.d.ts +89 -0
- package/dist/providers/openai-sdk/tracing.d.ts.map +1 -0
- package/dist/providers/shared/conduit-trace-writer.d.ts +72 -0
- package/dist/providers/shared/conduit-trace-writer.d.ts.map +1 -0
- package/dist/providers/shared/sdk-result-mapper.d.ts +51 -0
- package/dist/providers/shared/sdk-result-mapper.d.ts.map +1 -0
- package/package.json +5 -3
- package/src/cant-context.ts +397 -3
- package/src/index.ts +24 -2
- package/src/providers/claude-code/adapter.ts +41 -4
- package/src/providers/claude-code/hooks.ts +7 -1
- package/src/providers/claude-code/spawn.ts +5 -1
- package/src/providers/claude-sdk/__tests__/spawn.test.ts +448 -0
- package/src/providers/claude-sdk/index.ts +18 -0
- package/src/providers/claude-sdk/mcp-registry.ts +96 -0
- package/src/providers/claude-sdk/session-store.ts +103 -0
- package/src/providers/claude-sdk/spawn.ts +242 -0
- package/src/providers/claude-sdk/tool-bridge.ts +51 -0
- package/src/providers/openai-sdk/__tests__/openai-sdk-spawn.test.ts +716 -0
- package/src/providers/openai-sdk/adapter.ts +138 -0
- package/src/providers/openai-sdk/guardrails.ts +158 -0
- package/src/providers/openai-sdk/handoff.ts +187 -0
- package/src/providers/openai-sdk/index.ts +55 -0
- package/src/providers/openai-sdk/install.ts +135 -0
- package/src/providers/openai-sdk/manifest.json +45 -0
- package/src/providers/openai-sdk/spawn.ts +300 -0
- package/src/providers/openai-sdk/tracing.ts +175 -0
- package/src/providers/shared/conduit-trace-writer.ts +101 -0
- package/src/providers/shared/sdk-result-mapper.ts +83 -0
package/dist/cant-context.d.ts
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
* 1. Compiled CANT bundle (team topology, agent personas, tool ACLs)
|
|
9
9
|
* 2. Memory bridge (recent decisions, handoff notes, key patterns)
|
|
10
10
|
* 3. Mental model injection (validate-on-load agent-specific observations)
|
|
11
|
+
* 4. NEXUS code intelligence context (callers, callees, impact data) [T625]
|
|
11
12
|
*
|
|
12
13
|
* All operations are best-effort: if any step fails (missing packages, empty
|
|
13
14
|
* directories, compilation errors), the base prompt is returned unchanged.
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
* (Pi-only; this module generalizes the same logic for all providers)
|
|
18
19
|
*
|
|
19
20
|
* @task T555
|
|
21
|
+
* @task T625
|
|
20
22
|
*/
|
|
21
23
|
/** Per-tier file counts for diagnostic reporting. */
|
|
22
24
|
export interface TierDiscoveryStats {
|
|
@@ -52,6 +54,70 @@ export interface BuildCantEnrichedPromptOptions {
|
|
|
52
54
|
* Use this to avoid double-compilation when the Pi bridge already compiled the bundle.
|
|
53
55
|
*/
|
|
54
56
|
compiledBundle?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Task ID to inject NEXUS code intelligence context for.
|
|
59
|
+
* When provided, step 6b fetches callers/callees/impact for symbols
|
|
60
|
+
* mentioned in the task description and injects them into the prompt.
|
|
61
|
+
*
|
|
62
|
+
* @task T625
|
|
63
|
+
*/
|
|
64
|
+
taskId?: string;
|
|
65
|
+
}
|
|
66
|
+
/** A single symbol's NEXUS context entry (callers, callees, impact). */
|
|
67
|
+
export interface NexusSymbolContext {
|
|
68
|
+
/** Symbol name as resolved in the code index. */
|
|
69
|
+
name: string;
|
|
70
|
+
/** Symbol kind (function, method, class, etc.). */
|
|
71
|
+
kind: string;
|
|
72
|
+
/** File path (relative to project root) where the symbol is defined. */
|
|
73
|
+
filePath: string | null;
|
|
74
|
+
/** Symbols that call this one (direct callers). */
|
|
75
|
+
callers: Array<{
|
|
76
|
+
name: string;
|
|
77
|
+
kind: string;
|
|
78
|
+
filePath: string | null;
|
|
79
|
+
}>;
|
|
80
|
+
/** Symbols that this one calls (direct callees). */
|
|
81
|
+
callees: Array<{
|
|
82
|
+
name: string;
|
|
83
|
+
kind: string;
|
|
84
|
+
filePath: string | null;
|
|
85
|
+
}>;
|
|
86
|
+
/** Risk level from impact analysis. */
|
|
87
|
+
riskLevel: string;
|
|
88
|
+
/** Total number of transitively impacted nodes. */
|
|
89
|
+
totalImpacted: number;
|
|
90
|
+
}
|
|
91
|
+
/** Options for {@link buildNexusContext}. */
|
|
92
|
+
export interface BuildNexusContextOptions {
|
|
93
|
+
/** Symbols to query NEXUS for (extracted from task description). */
|
|
94
|
+
symbols: string[];
|
|
95
|
+
/** Project root directory (used to resolve project ID and run CLI commands). */
|
|
96
|
+
projectDir: string;
|
|
97
|
+
/** Maximum callers/callees to include per symbol (default: 10). */
|
|
98
|
+
limit?: number;
|
|
99
|
+
/**
|
|
100
|
+
* CLI timeout in milliseconds for each `cleo nexus context` call (default: 10000).
|
|
101
|
+
*/
|
|
102
|
+
timeoutMs?: number;
|
|
103
|
+
}
|
|
104
|
+
/** Result of a post-modification NEXUS check (T625). */
|
|
105
|
+
export interface NexusModificationCheckResult {
|
|
106
|
+
/**
|
|
107
|
+
* True if the incremental re-analysis completed successfully.
|
|
108
|
+
* False if the analysis failed (non-fatal — agents should still continue).
|
|
109
|
+
*/
|
|
110
|
+
success: boolean;
|
|
111
|
+
/** Files that were re-indexed. */
|
|
112
|
+
reindexedFiles: string[];
|
|
113
|
+
/** Relations that exist in the post-check index but not in the snapshot. */
|
|
114
|
+
newRelations: number;
|
|
115
|
+
/** Relations that existed in the snapshot but are missing after re-analysis. */
|
|
116
|
+
removedRelations: number;
|
|
117
|
+
/** Human-readable summary of what changed. */
|
|
118
|
+
summary: string;
|
|
119
|
+
/** Any regressions detected (broken call chains, missing symbols). */
|
|
120
|
+
regressions: string[];
|
|
55
121
|
}
|
|
56
122
|
/**
|
|
57
123
|
* Recursively discover `.cant` files in a directory.
|
|
@@ -140,6 +206,70 @@ export declare function readIdentityFile(projectDir: string): string | null;
|
|
|
140
206
|
* @returns The fully assembled identity block, or "" if unavailable.
|
|
141
207
|
*/
|
|
142
208
|
export declare function buildIdentityBootstrap(projectDir: string): Promise<string>;
|
|
209
|
+
/**
|
|
210
|
+
* Extract candidate symbol names from a task description or title.
|
|
211
|
+
*
|
|
212
|
+
* Uses a simple heuristic: camelCase, PascalCase, and snake_case tokens
|
|
213
|
+
* longer than 3 characters that look like code identifiers.
|
|
214
|
+
*
|
|
215
|
+
* Pure function — no I/O.
|
|
216
|
+
*
|
|
217
|
+
* @param text - Raw text to scan for symbol names (task title + description).
|
|
218
|
+
* @returns Deduplicated array of candidate symbol names, longest first.
|
|
219
|
+
*/
|
|
220
|
+
export declare function extractSymbolsFromText(text: string): string[];
|
|
221
|
+
/**
|
|
222
|
+
* Build a NEXUS code intelligence context block for a set of symbols.
|
|
223
|
+
*
|
|
224
|
+
* Queries `cleo nexus context <symbol> --json` for each symbol and
|
|
225
|
+
* returns a formatted prompt block with callers, callees, and impact data.
|
|
226
|
+
*
|
|
227
|
+
* All CLI calls are best-effort with a configurable timeout. Failures
|
|
228
|
+
* for individual symbols are silently skipped.
|
|
229
|
+
*
|
|
230
|
+
* @param options - Symbols, project dir, and optional limits.
|
|
231
|
+
* @returns Array of resolved NEXUS symbol contexts.
|
|
232
|
+
* @task T625
|
|
233
|
+
*/
|
|
234
|
+
export declare function buildNexusContext(options: BuildNexusContextOptions): Promise<NexusSymbolContext[]>;
|
|
235
|
+
/**
|
|
236
|
+
* Format a NEXUS context array into a system-prompt block.
|
|
237
|
+
*
|
|
238
|
+
* Pure function — no I/O, safe to call in tests without a real DB.
|
|
239
|
+
*
|
|
240
|
+
* @param contexts - Resolved NEXUS symbol contexts.
|
|
241
|
+
* @returns Formatted prompt block, or empty string when contexts is empty.
|
|
242
|
+
* @task T625
|
|
243
|
+
*/
|
|
244
|
+
export declare function buildNexusContextBlock(contexts: NexusSymbolContext[]): string;
|
|
245
|
+
/**
|
|
246
|
+
* Inject NEXUS context for a task into the agent prompt.
|
|
247
|
+
*
|
|
248
|
+
* Fetches the task details from CLEO, extracts symbol names from the
|
|
249
|
+
* task title and description, then queries NEXUS for each symbol.
|
|
250
|
+
* Returns a formatted prompt block or empty string on any failure.
|
|
251
|
+
*
|
|
252
|
+
* @param taskId - CLEO task ID (e.g. "T625").
|
|
253
|
+
* @param projectDir - Project root directory.
|
|
254
|
+
* @returns Formatted NEXUS context block, or "" if unavailable.
|
|
255
|
+
* @task T625
|
|
256
|
+
*/
|
|
257
|
+
export declare function buildNexusContextForTask(taskId: string, projectDir: string): Promise<string>;
|
|
258
|
+
/**
|
|
259
|
+
* Run a post-modification NEXUS check on a set of changed files.
|
|
260
|
+
*
|
|
261
|
+
* Performs an incremental re-analysis of the changed files and compares
|
|
262
|
+
* relation counts before/after. Regressions (net loss of relations after
|
|
263
|
+
* modification) are flagged and returned for BRAIN storage.
|
|
264
|
+
*
|
|
265
|
+
* All operations are best-effort — never throws.
|
|
266
|
+
*
|
|
267
|
+
* @param changedFiles - Absolute paths to files that were modified.
|
|
268
|
+
* @param projectDir - Project root directory.
|
|
269
|
+
* @returns Check result with regression data.
|
|
270
|
+
* @task T625
|
|
271
|
+
*/
|
|
272
|
+
export declare function runNexusPostModificationCheck(changedFiles: string[], projectDir: string): Promise<NexusModificationCheckResult>;
|
|
143
273
|
/**
|
|
144
274
|
* Build an enriched prompt with CANT context, memory bridge, and mental model.
|
|
145
275
|
*
|
|
@@ -152,7 +282,8 @@ export declare function buildIdentityBootstrap(projectDir: string): Promise<stri
|
|
|
152
282
|
* 3. Renders the compiled system prompt
|
|
153
283
|
* 4. Reads the memory bridge from `.cleo/memory-bridge.md`
|
|
154
284
|
* 5. Fetches mental model observations for the named agent
|
|
155
|
-
*
|
|
285
|
+
* 6b. Injects NEXUS code intelligence context for the task (T625)
|
|
286
|
+
* 7. Concatenates: basePrompt + CANT bundle + memory bridge + mental model + NEXUS
|
|
156
287
|
*
|
|
157
288
|
* All operations are best-effort. If any step fails, the base prompt is
|
|
158
289
|
* returned unchanged. CANT context is an enrichment, not a gate — agents
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cant-context.d.ts","sourceRoot":"","sources":["../src/cant-context.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"cant-context.d.ts","sourceRoot":"","sources":["../src/cant-context.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -12,9 +12,11 @@
|
|
|
12
12
|
* The {@link discoverProviders} function and {@link getProviderManifests}
|
|
13
13
|
* registry enable dynamic adapter loading by AdapterManager.
|
|
14
14
|
*/
|
|
15
|
-
export type { BuildCantEnrichedPromptOptions, TierDiscoveryStats } from './cant-context.js';
|
|
16
|
-
export { buildCantEnrichedPrompt } from './cant-context.js';
|
|
15
|
+
export type { BuildCantEnrichedPromptOptions, BuildNexusContextOptions, NexusModificationCheckResult, NexusSymbolContext, TierDiscoveryStats, } from './cant-context.js';
|
|
16
|
+
export { buildCantEnrichedPrompt, buildNexusContext, buildNexusContextBlock, buildNexusContextForTask, extractSymbolsFromText, runNexusPostModificationCheck, } from './cant-context.js';
|
|
17
17
|
export { ClaudeCodeAdapter, ClaudeCodeContextMonitorProvider, ClaudeCodeHookProvider, ClaudeCodeInstallProvider, ClaudeCodePathProvider, ClaudeCodeSpawnProvider, ClaudeCodeTransportProvider, checkStatuslineIntegration, createAdapter as createClaudeCodeAdapter, getSetupInstructions, getStatuslineConfig, } from './providers/claude-code/index.js';
|
|
18
|
+
export type { McpServerMap, McpStdioConfig, SessionEntry } from './providers/claude-sdk/index.js';
|
|
19
|
+
export { ClaudeSDKSpawnProvider, DEFAULT_TOOLS, getServers, resolveTools, SessionStore, } from './providers/claude-sdk/index.js';
|
|
18
20
|
export { CodexAdapter, CodexHookProvider, CodexInstallProvider, createAdapter as createCodexAdapter, } from './providers/codex/index.js';
|
|
19
21
|
export { CursorAdapter, CursorHookProvider, CursorInstallProvider, createAdapter as createCursorAdapter, } from './providers/cursor/index.js';
|
|
20
22
|
export { createAdapter as createGeminiCliAdapter, GeminiCliAdapter, GeminiCliHookProvider, GeminiCliInstallProvider, } from './providers/gemini-cli/index.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,YAAY,EACV,8BAA8B,EAC9B,wBAAwB,EACxB,4BAA4B,EAC5B,kBAAkB,EAClB,kBAAkB,GACnB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EACL,uBAAuB,EAEvB,iBAAiB,EACjB,sBAAsB,EACtB,wBAAwB,EACxB,sBAAsB,EACtB,6BAA6B,GAC9B,MAAM,mBAAmB,CAAC;AAG3B,OAAO,EACL,iBAAiB,EACjB,gCAAgC,EAChC,sBAAsB,EACtB,yBAAyB,EACzB,sBAAsB,EACtB,uBAAuB,EACvB,2BAA2B,EAC3B,0BAA0B,EAC1B,aAAa,IAAI,uBAAuB,EACxC,oBAAoB,EACpB,mBAAmB,GACpB,MAAM,kCAAkC,CAAC;AAC1C,YAAY,EAAE,YAAY,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAClG,OAAO,EACL,sBAAsB,EACtB,aAAa,EACb,UAAU,EACV,YAAY,EACZ,YAAY,GACb,MAAM,iCAAiC,CAAC;AACzC,OAAO,EACL,YAAY,EACZ,iBAAiB,EACjB,oBAAoB,EACpB,aAAa,IAAI,kBAAkB,GACpC,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,aAAa,EACb,kBAAkB,EAClB,qBAAqB,EACrB,aAAa,IAAI,mBAAmB,GACrC,MAAM,6BAA6B,CAAC;AACrC,OAAO,EACL,aAAa,IAAI,sBAAsB,EACvC,gBAAgB,EAChB,qBAAqB,EACrB,wBAAwB,GACzB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EACL,aAAa,IAAI,iBAAiB,EAClC,WAAW,EACX,gBAAgB,EAChB,mBAAmB,GACpB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,aAAa,IAAI,qBAAqB,EACtC,eAAe,EACf,oBAAoB,EACpB,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,+BAA+B,CAAC;AACvC,YAAY,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC"}
|