@lucascouts/claude-agent-acp-plus 0.8.1 → 0.10.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/dist/acp-agent.d.ts +132 -103
- package/dist/acp-agent.d.ts.map +1 -1
- package/dist/acp-agent.js +1096 -830
- package/dist/clear-context-coordinator.d.ts +58 -0
- package/dist/clear-context-coordinator.d.ts.map +1 -0
- package/dist/clear-context-coordinator.js +79 -0
- package/dist/exit-plan.d.ts +42 -0
- package/dist/exit-plan.d.ts.map +1 -0
- package/dist/exit-plan.js +154 -0
- package/dist/file-change-audit.d.ts +56 -0
- package/dist/file-change-audit.d.ts.map +1 -0
- package/dist/file-change-audit.js +379 -0
- package/dist/index.js +24 -1
- package/dist/permissions/effects.d.ts +19 -0
- package/dist/permissions/effects.d.ts.map +1 -0
- package/dist/permissions/effects.js +166 -0
- package/dist/permissions/modes.d.ts +8 -0
- package/dist/permissions/modes.d.ts.map +1 -0
- package/dist/permissions/modes.js +41 -0
- package/dist/permissions/normalization.d.ts +6 -0
- package/dist/permissions/normalization.d.ts.map +1 -0
- package/dist/permissions/normalization.js +100 -0
- package/dist/permissions/options/filesystem.d.ts +9 -0
- package/dist/permissions/options/filesystem.d.ts.map +1 -0
- package/dist/permissions/options/filesystem.js +124 -0
- package/dist/permissions/options/shared.d.ts +39 -0
- package/dist/permissions/options/shared.d.ts.map +1 -0
- package/dist/permissions/options/shared.js +64 -0
- package/dist/permissions/options/shell.d.ts +5 -0
- package/dist/permissions/options/shell.d.ts.map +1 -0
- package/dist/permissions/options/shell.js +100 -0
- package/dist/permissions/options/tools.d.ts +11 -0
- package/dist/permissions/options/tools.d.ts.map +1 -0
- package/dist/permissions/options/tools.js +135 -0
- package/dist/permissions/options.d.ts +5 -0
- package/dist/permissions/options.d.ts.map +1 -0
- package/dist/permissions/options.js +60 -0
- package/dist/permissions/presentation.d.ts +15 -0
- package/dist/permissions/presentation.d.ts.map +1 -0
- package/dist/permissions/presentation.js +83 -0
- package/dist/permissions/response.d.ts +11 -0
- package/dist/permissions/response.d.ts.map +1 -0
- package/dist/permissions/response.js +19 -0
- package/dist/session-config-ids.d.ts +5 -0
- package/dist/session-config-ids.d.ts.map +1 -0
- package/dist/session-config-ids.js +4 -0
- package/dist/session-failure-extension.d.ts +104 -0
- package/dist/session-failure-extension.d.ts.map +1 -0
- package/dist/session-failure-extension.js +352 -0
- package/dist/session-mode.d.ts +66 -0
- package/dist/session-mode.d.ts.map +1 -0
- package/dist/session-mode.js +249 -0
- package/dist/session-titles.d.ts +77 -0
- package/dist/session-titles.d.ts.map +1 -0
- package/dist/session-titles.js +199 -0
- package/dist/tool-result-meta.d.ts +8 -0
- package/dist/tool-result-meta.d.ts.map +1 -0
- package/dist/tool-result-meta.js +19 -0
- package/dist/tools.d.ts +4 -6
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +179 -24
- package/package.json +4 -4
package/dist/acp-agent.d.ts
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import { AuthenticateRequest, CancelNotification, ClientCapabilities, CompleteElicitationNotification, CreateElicitationRequest, CreateElicitationResponse, DisableProviderRequest, DisableProviderResponse, ForkSessionRequest, ForkSessionResponse, InitializeRequest, InitializeResponse, ListProvidersRequest, ListProvidersResponse, LlmProtocol, ListSessionsRequest, ListSessionsResponse, LoadSessionRequest, LoadSessionResponse, LogoutRequest, NewSessionRequest, NewSessionResponse, PromptRequest, PromptResponse, ReadTextFileRequest, ReadTextFileResponse, SetProviderRequest, SetProviderResponse, RequestPermissionRequest, RequestPermissionResponse, ResumeSessionRequest, ResumeSessionResponse, SessionConfigOption, SessionModeState, SessionNotification, SetSessionConfigOptionRequest, SetSessionConfigOptionResponse, SetSessionModeRequest, SetSessionModeResponse, CloseSessionRequest, CloseSessionResponse, DeleteSessionRequest, DeleteSessionResponse, WriteTextFileRequest, WriteTextFileResponse } from "@agentclientprotocol/sdk";
|
|
2
|
-
import { AgentInfo, CanUseTool, FastModeDisabledReason, FastModeState, ModelInfo, Options, PermissionMode,
|
|
2
|
+
import { AgentInfo, CanUseTool, FastModeDisabledReason, FastModeState, ModelInfo, Options, PermissionMode, Query, SDKMessageOrigin, SDKPartialAssistantMessage, SDKUserMessage } from "@anthropic-ai/claude-agent-sdk";
|
|
3
3
|
import { GoalRequest, GoalControlResponse, GoalSnapshot } from "./goal-extension.js";
|
|
4
|
+
import { SessionTitles } from "./session-titles.js";
|
|
4
5
|
import { ContentBlockParam } from "@anthropic-ai/sdk/resources";
|
|
5
6
|
import { BetaContentBlock, BetaRawContentBlockDelta } from "@anthropic-ai/sdk/resources/beta.mjs";
|
|
6
7
|
import { SettingsManager } from "./settings.js";
|
|
8
|
+
import { type SessionFailureState } from "./session-failure-extension.js";
|
|
9
|
+
import { type FileChangeAuditSupport, type FileChangeAuditTurnState } from "./file-change-audit.js";
|
|
7
10
|
import { TaskState } from "./tools.js";
|
|
8
11
|
import { Pushable } from "./utils.js";
|
|
12
|
+
export { DEFAULT_AGENT_ID, EFFORT_CONFIG_ID } from "./session-config-ids.js";
|
|
13
|
+
import { MODE_CONFIG_ID } from "./session-mode.js";
|
|
9
14
|
export declare const CLAUDE_CONFIG_DIR: string;
|
|
10
15
|
/**
|
|
11
16
|
* Logger interface for customizing logging output
|
|
@@ -31,7 +36,7 @@ type SteerMeta = {
|
|
|
31
36
|
/** Params of a {@link STEER_METHOD} request. Shaped like the relevant subset of
|
|
32
37
|
* a `PromptRequest` so the same `promptToClaude` conversion applies. Delivery
|
|
33
38
|
* priority is deliberately NOT exposed here — it's an internal detail the agent
|
|
34
|
-
* chooses (see {@link
|
|
39
|
+
* chooses (see {@link STEER_PRIORITY_NOW} / {@link STEER_PRIORITY_LATER}). */
|
|
35
40
|
export type SteerRequest = {
|
|
36
41
|
sessionId: string;
|
|
37
42
|
prompt: PromptRequest["prompt"];
|
|
@@ -73,6 +78,10 @@ type Turn = {
|
|
|
73
78
|
* so the consumer can't promote them via the replay; it falls back to
|
|
74
79
|
* promoting the queue head when the result arrives. */
|
|
75
80
|
isLocalOnlyCommand: boolean;
|
|
81
|
+
/** Optional hidden, model-authored file-change audit requested by the ACP
|
|
82
|
+
* client for this turn. The state is turn-owned so a late tool call can
|
|
83
|
+
* never be rebound to a newer prompt. */
|
|
84
|
+
fileChangeAudit?: FileChangeAuditTurnState;
|
|
76
85
|
/** Set once the deferred has been resolved/rejected, so the consumer never
|
|
77
86
|
* settles a turn twice (idle + handoff + stream-end can all race). */
|
|
78
87
|
settled: boolean;
|
|
@@ -85,11 +94,11 @@ type Turn = {
|
|
|
85
94
|
* uuid while the turn is still queued (msg_lifecycle_v1 CLIs). The command
|
|
86
95
|
* is already finished SDK-side, so a later cancel() must not seed an
|
|
87
96
|
* orphan entry for it — no terminal frame will ever come to drain it.
|
|
88
|
-
* "completed"/"discarded" leave nothing outstanding; "cancelled"
|
|
89
|
-
* dispatch means the dead turn's result may still arrive (seeded
|
|
90
|
-
* zombie) unless it already passed (`commandResultSeen`), and without
|
|
91
|
-
* dispatch means dropped (nothing coming). */
|
|
92
|
-
commandFinished?: "completed" | "discarded" | "cancelled";
|
|
97
|
+
* "completed"/"discarded"/"refused" leave nothing outstanding; "cancelled"
|
|
98
|
+
* after a dispatch means the dead turn's result may still arrive (seeded
|
|
99
|
+
* as a zombie) unless it already passed (`commandResultSeen`), and without
|
|
100
|
+
* a dispatch means dropped (nothing coming). */
|
|
101
|
+
commandFinished?: "completed" | "discarded" | "cancelled" | "refused";
|
|
93
102
|
/** Set when a user-turn result arrives while this command is known
|
|
94
103
|
* dispatched (`commandStarted`) with no terminal frame yet. Turns run
|
|
95
104
|
* sequentially and frames arrive in stream order, so the turn this command
|
|
@@ -149,8 +158,8 @@ type Turn = {
|
|
|
149
158
|
deferredSettle?: PromptResponse;
|
|
150
159
|
/** Uuids of `steer()`-injected messages the SDK has not replayed back yet.
|
|
151
160
|
*
|
|
152
|
-
* A steer is delivered at {@link
|
|
153
|
-
* the running cycle: it emits its own human-origin `result` —
|
|
161
|
+
* A steer is normally delivered at {@link STEER_PRIORITY_NOW}, so the CLI
|
|
162
|
+
* ABORTS the running cycle: it emits its own human-origin `result` —
|
|
154
163
|
* indistinguishable from a turn's terminal one — and the steered message runs
|
|
155
164
|
* as a SECOND cycle. Settling at that result would answer `session/prompt`
|
|
156
165
|
* mid-work, so a steered turn's results only RECORD their outcome
|
|
@@ -167,10 +176,13 @@ type Turn = {
|
|
|
167
176
|
/** What a steered turn settles with once its steered work has run: the outcome
|
|
168
177
|
* of its latest result, so its usage covers every cycle the turn ran. */
|
|
169
178
|
steeredSettle?: PromptResponse;
|
|
179
|
+
carriedUsage?: AccumulatedUsage;
|
|
170
180
|
resolve: (response: PromptResponse) => void;
|
|
171
181
|
reject: (error: unknown) => void;
|
|
182
|
+
/** Settles after the ACP prompt request completes, regardless of outcome. */
|
|
183
|
+
completion?: Promise<void>;
|
|
172
184
|
};
|
|
173
|
-
type Session = {
|
|
185
|
+
export type Session = {
|
|
174
186
|
query: Query;
|
|
175
187
|
input: Pushable<SDKUserMessage>;
|
|
176
188
|
cancelled: boolean;
|
|
@@ -180,6 +192,14 @@ type Session = {
|
|
|
180
192
|
/** The turn whose messages the consumer is currently attributing output to
|
|
181
193
|
* (the head of `turnQueue` once its user message has been echoed). */
|
|
182
194
|
activeTurn?: Turn | null;
|
|
195
|
+
/** Request ids already accepted for hidden agent file-change reports. Kept
|
|
196
|
+
* for the session lifetime so a redelivered prompt cannot publish the same
|
|
197
|
+
* audit twice or bind a late report to another turn. */
|
|
198
|
+
fileChangeReportRequestIds: Set<string>;
|
|
199
|
+
/** Session-owned publisher for negotiated file-change audits. Turn state
|
|
200
|
+
* stays on each Turn; this controller supplies the single idempotent
|
|
201
|
+
* unavailable terminal used by every non-report settlement path. */
|
|
202
|
+
fileChangeAuditSupport?: FileChangeAuditSupport;
|
|
183
203
|
/** Optimistic goal state published for a submitted `/goal` command whose
|
|
184
204
|
* matching runtime update has not arrived yet. Runtime updates for the old
|
|
185
205
|
* goal are suppressed until this command is echoed or completes, otherwise
|
|
@@ -238,6 +258,11 @@ type Session = {
|
|
|
238
258
|
* cancel() routes orphan accounting to `orphanCommands` (exact, per-uuid)
|
|
239
259
|
* instead of `pendingOrphanResults` (count, coalescing-blind). */
|
|
240
260
|
msgLifecycleV1?: boolean;
|
|
261
|
+
/** Latched from `system`/init `terminal_slash_commands` (CLI 2.1.232+):
|
|
262
|
+
* names of advertised slash commands whose UX is bound to the CLI's own
|
|
263
|
+
* terminal (e.g. /doctor, /color). ACP clients aren't that terminal, so
|
|
264
|
+
* these are filtered out of `available_commands_update` payloads. */
|
|
265
|
+
terminalSlashCommands?: string[];
|
|
241
266
|
/** The long-lived consumer task. Lazily started on the first `prompt()` and
|
|
242
267
|
* kept alive for the session so between-turn/background messages are still
|
|
243
268
|
* drained and forwarded. */
|
|
@@ -252,11 +277,19 @@ type Session = {
|
|
|
252
277
|
/** Serialized snapshot of session-defining params (cwd, mcpServers) used to
|
|
253
278
|
* detect when loadSession/resumeSession is called with changed values. */
|
|
254
279
|
sessionFingerprint: string;
|
|
280
|
+
/** Original ACP parameters used to recreate this query with a new provider. */
|
|
281
|
+
creationParams?: NewSessionRequest;
|
|
255
282
|
settingsManager: SettingsManager;
|
|
283
|
+
/** This session's title state and the turn-end logic that maintains it. */
|
|
284
|
+
titles: SessionTitles;
|
|
256
285
|
accumulatedUsage: AccumulatedUsage;
|
|
257
286
|
modes: SessionModeState;
|
|
258
287
|
models: SessionModelState;
|
|
259
288
|
modelInfos: ModelInfo[];
|
|
289
|
+
/** Prevents the model-specific Auto fallback from spamming the transcript. */
|
|
290
|
+
autoModeFallbackWarningShown?: boolean;
|
|
291
|
+
/** Initial mode fallback is reported after session/new, on the first prompt. */
|
|
292
|
+
autoModeFallbackWarningPending?: boolean;
|
|
260
293
|
configOptions: SessionConfigOption[];
|
|
261
294
|
/** Custom main-thread agent personas the user (or a plugin/project) has
|
|
262
295
|
* configured, discovered via `supportedAgents()` with Claude Code's built-in
|
|
@@ -324,6 +357,12 @@ type Session = {
|
|
|
324
357
|
/** Whether nested subagent text/thinking is forwarded to the ACP client.
|
|
325
358
|
* Enabled by either the ACP capability or the pre-existing SDK option. */
|
|
326
359
|
forwardSubagentText: boolean;
|
|
360
|
+
/** Number of ACP permission/elicitation requests currently awaiting user
|
|
361
|
+
* input. A counter rather than a boolean because parallel subagents can ask
|
|
362
|
+
* concurrently; steering must stay non-interrupting until the LAST of them
|
|
363
|
+
* settles. Maintained by `withPendingUserInput`, which owns every increment
|
|
364
|
+
* and decrement. */
|
|
365
|
+
pendingUserInputCount?: number;
|
|
327
366
|
/** Context window size of the session's current model, carried across
|
|
328
367
|
* prompts so mid-stream usage_update notifications report a correct `size`
|
|
329
368
|
* before the turn's first result message arrives. Seeded synchronously at
|
|
@@ -335,6 +374,7 @@ type Session = {
|
|
|
335
374
|
* fresh session it stalls until the first turn runs (see the seeding call
|
|
336
375
|
* sites and `contextWindowCache`). */
|
|
337
376
|
contextWindowSize: number;
|
|
377
|
+
contextUsedTokens?: number;
|
|
338
378
|
/** Whether `contextWindowSize` came from an authoritative source (the
|
|
339
379
|
* cross-session cache, a resumed session's `getContextUsage` report, or a
|
|
340
380
|
* `result.modelUsage`) rather than the text heuristic / default. Guards the
|
|
@@ -355,12 +395,6 @@ type Session = {
|
|
|
355
395
|
/** Accumulated task list for the session, keyed by task ID. Task IDs are
|
|
356
396
|
* per-session, so this state must not be shared across sessions. */
|
|
357
397
|
taskState: TaskState;
|
|
358
|
-
/** Last session title we pushed to the client via `session_info_update`.
|
|
359
|
-
* The SDK auto-generates a title in a background task and persists it to the
|
|
360
|
-
* session file; we poll it on each turn-end (`session_state_changed: idle`)
|
|
361
|
-
* and only notify the client when it actually changes. Undefined until the
|
|
362
|
-
* first title is observed. */
|
|
363
|
-
lastTitle?: string;
|
|
364
398
|
/** Caches `tool_use` blocks by id so the matching `tool_result` can recover
|
|
365
399
|
* the tool name/input when mapping it to a `tool_call_update`. Per-session
|
|
366
400
|
* (tool_use ids are only unique within a session) and pruned at
|
|
@@ -375,6 +409,17 @@ type Session = {
|
|
|
375
409
|
* tool_use block streams; this set makes the two paths converge regardless of
|
|
376
410
|
* order. Pruned at `tool_result` time alongside `toolUseCache`. */
|
|
377
411
|
emittedToolCalls: Set<string>;
|
|
412
|
+
/** ExitPlanMode denial that intentionally interrupts the current Claude
|
|
413
|
+
* cycle. Correlated by tool-use id until the terminal result arrives. */
|
|
414
|
+
pendingExitPlanModeInterruption?: {
|
|
415
|
+
toolUseId: string;
|
|
416
|
+
toolResultSeen: boolean;
|
|
417
|
+
};
|
|
418
|
+
pendingExitPlanContextReset?: {
|
|
419
|
+
toolUseId: string;
|
|
420
|
+
plan: string;
|
|
421
|
+
mode: PermissionMode;
|
|
422
|
+
};
|
|
378
423
|
/** Registry of live background tasks, keyed by task id: populated at
|
|
379
424
|
* `task_started`, pruned when the task settles (a `task_notification` or
|
|
380
425
|
* a terminal `task_updated` patch), and reconciled against
|
|
@@ -500,6 +545,10 @@ type Session = {
|
|
|
500
545
|
* NOT READ YET — recorded now so the mapping exists if/when we wire up
|
|
501
546
|
* fork/rewind. */
|
|
502
547
|
messageIdToUuid: Map<string, string>;
|
|
548
|
+
/** Durable-for-this-consumer failure state shared with session/load replay.
|
|
549
|
+
* Keeping it on the Session lets replay seed a failure that the persistent
|
|
550
|
+
* consumer can later clear with the same id and a higher revision. */
|
|
551
|
+
sessionFailureState: SessionFailureState;
|
|
503
552
|
};
|
|
504
553
|
export type SDKMessageFilter = {
|
|
505
554
|
type: string;
|
|
@@ -584,6 +633,8 @@ export type ToolUpdateMeta = {
|
|
|
584
633
|
nonExecutionKind?: string;
|
|
585
634
|
userFeedback?: string;
|
|
586
635
|
subagent?: true;
|
|
636
|
+
skill?: string;
|
|
637
|
+
skillPath?: string;
|
|
587
638
|
};
|
|
588
639
|
terminal_info?: {
|
|
589
640
|
terminal_id: string;
|
|
@@ -651,22 +702,6 @@ export declare function isLocalCommandMetadata(content: unknown): boolean;
|
|
|
651
702
|
* all both paths have to match on.
|
|
652
703
|
*/
|
|
653
704
|
export declare function isSyntheticLoginMessage(apiMessage: unknown): boolean;
|
|
654
|
-
export declare function resolvePermissionMode(defaultMode?: unknown, logger?: Logger): PermissionMode;
|
|
655
|
-
/**
|
|
656
|
-
* Builds the label for the "Always Allow" permission option so the user can see
|
|
657
|
-
* the exact scope they are committing to. Uses the SDK-provided suggestions
|
|
658
|
-
* when available (e.g. `Bash(npm test:*)`) and falls back to naming the whole
|
|
659
|
-
* tool so "Always Allow" is never a blank check without disclosure.
|
|
660
|
-
*
|
|
661
|
-
* Fork-only layer. Upstream #930 moved the scope disclosure out of the option
|
|
662
|
-
* label and into `_meta.permission.changes`, leaving the label as a fixed
|
|
663
|
-
* "Always Allow". No shipping client reads that metadata yet — Zed in
|
|
664
|
-
* particular has no reference to it — so on the label alone the user would be
|
|
665
|
-
* granting a rule they cannot see. This restores the disclosure in the label
|
|
666
|
-
* WITHOUT dropping the upstream metadata: both travel on the same option, and
|
|
667
|
-
* the label can be retired once a client renders the structured form.
|
|
668
|
-
*/
|
|
669
|
-
export declare function describeAlwaysAllow(suggestions: PermissionUpdate[] | undefined, toolName: string): string;
|
|
670
705
|
/**
|
|
671
706
|
* Client-facing surface the agent calls back into. This is the subset of ACP
|
|
672
707
|
* client methods the agent actually uses, expressed as a narrow interface so
|
|
@@ -695,11 +730,13 @@ export declare class ClaudeAcpAgent {
|
|
|
695
730
|
client: AcpClient;
|
|
696
731
|
clientCapabilities?: ClientCapabilities;
|
|
697
732
|
logger: Logger;
|
|
733
|
+
private readonly sessionModes;
|
|
698
734
|
gatewayAuthRequest?: GatewayAuthRequest;
|
|
699
|
-
/**
|
|
700
|
-
* never persisted to disk (see the Configurable LLM Providers RFD). When
|
|
701
|
-
* set, it takes precedence over {@link gatewayAuthRequest}. */
|
|
735
|
+
/** Set while ACP overrides the agent's native provider configuration. */
|
|
702
736
|
providerConfig?: ProviderConfig;
|
|
737
|
+
/** Serializes provider changes while every open query is recreated between turns. */
|
|
738
|
+
private providerUpdate;
|
|
739
|
+
private readonly exitPlan;
|
|
703
740
|
/** Grace period before a `session/cancel` forces a wedged prompt loop to
|
|
704
741
|
* return "cancelled". See {@link DEFAULT_FORCE_CANCEL_GRACE_MS}. Mutable so
|
|
705
742
|
* tests can shrink it. */
|
|
@@ -711,21 +748,7 @@ export declare class ClaudeAcpAgent {
|
|
|
711
748
|
resumeSession(params: ResumeSessionRequest): Promise<ResumeSessionResponse>;
|
|
712
749
|
loadSession(params: LoadSessionRequest): Promise<LoadSessionResponse>;
|
|
713
750
|
listSessions(params: ListSessionsRequest): Promise<ListSessionsResponse>;
|
|
714
|
-
/** Read the SDK-maintained title for a session and, if it changed since the
|
|
715
|
-
* last time we looked, notify the client with a `session_info_update`. The
|
|
716
|
-
* SDK has no push event for the title it auto-generates in the background, so
|
|
717
|
-
* we pull it at turn-end. A missing session file or read error is non-fatal:
|
|
718
|
-
* the title is best-effort and another turn will retry. */
|
|
719
|
-
private maybeUpdateSessionTitle;
|
|
720
751
|
authenticate(_params: AuthenticateRequest): Promise<void>;
|
|
721
|
-
/**
|
|
722
|
-
* `providers/list` — returns the single client-configurable custom gateway
|
|
723
|
-
* provider (`main`). `current` carries only non-secret routing (never headers,
|
|
724
|
-
* which may hold secrets); only `apiType`/`baseUrl` are surfaced for UI
|
|
725
|
-
* display, and is `null` when the provider is not configured/disabled. The
|
|
726
|
-
* provider is optional (`required: false`): while disabled/unconfigured the
|
|
727
|
-
* agent falls back to its own default routing (normal Claude login).
|
|
728
|
-
*/
|
|
729
752
|
unstable_listProviders(_params: ListProvidersRequest): Promise<ListProvidersResponse>;
|
|
730
753
|
/**
|
|
731
754
|
* `providers/set` — replace the full configuration for the `main` provider.
|
|
@@ -735,23 +758,17 @@ export declare class ClaudeAcpAgent {
|
|
|
735
758
|
*/
|
|
736
759
|
unstable_setProvider(params: SetProviderRequest): Promise<SetProviderResponse>;
|
|
737
760
|
/**
|
|
738
|
-
* `providers/disable`
|
|
739
|
-
*
|
|
740
|
-
* so the agent reverts to its own default routing and `providers/list` reports
|
|
741
|
-
* `current: null`. Disabling any other (unknown) ID is treated as a successful
|
|
742
|
-
* no-op per the RFD's idempotency rule.
|
|
761
|
+
* `providers/disable` ends ACP ownership of the single mutually exclusive
|
|
762
|
+
* backend slot and restores the agent's native routing state.
|
|
743
763
|
*/
|
|
744
764
|
unstable_disableProvider(params: DisableProviderRequest): Promise<DisableProviderResponse>;
|
|
745
|
-
/**
|
|
746
|
-
* Resolve the effective client-managed routing config. `providers/set` takes
|
|
747
|
-
* precedence; otherwise fall back to the legacy gateway auth request. Returns
|
|
748
|
-
* `null` when neither is configured.
|
|
749
|
-
*/
|
|
750
765
|
resolveProviderConfig(): ProviderConfig | null;
|
|
766
|
+
private defaultProviderConfig;
|
|
751
767
|
logout(_params: LogoutRequest): Promise<void>;
|
|
752
768
|
prompt(params: PromptRequest): Promise<PromptResponse>;
|
|
753
769
|
goal(params: GoalRequest): Promise<GoalControlResponse>;
|
|
754
770
|
private publishGoal;
|
|
771
|
+
private publishTaskPlan;
|
|
755
772
|
private publishGoalFromPrompt;
|
|
756
773
|
private publishRuntimeGoal;
|
|
757
774
|
/** Steer the session per the ACP steering wire protocol: inject a follow-up
|
|
@@ -764,11 +781,14 @@ export declare class ClaudeAcpAgent {
|
|
|
764
781
|
* an `SDKUserMessage` onto the same streaming input, which the SDK routes
|
|
765
782
|
* into the in-flight turn. The injected message's echo carries a uuid that
|
|
766
783
|
* matches no queued turn, so the consumer drops it as an unrelated replay
|
|
767
|
-
* without promoting/settling anything. It is delivered at {@link
|
|
768
|
-
*
|
|
769
|
-
*
|
|
770
|
-
* calls).
|
|
771
|
-
*
|
|
784
|
+
* without promoting/settling anything. It is normally delivered at {@link
|
|
785
|
+
* STEER_PRIORITY_NOW} so it pre-empts the current generation (interrupting a
|
|
786
|
+
* single-shot response, or slotting in between a multi-step turn's tool
|
|
787
|
+
* calls). While a permission or elicitation is awaiting user input it uses
|
|
788
|
+
* {@link STEER_PRIORITY_LATER} instead, because interrupting that SDK
|
|
789
|
+
* callback cancels the ACP request and can strand the prompt (IJAI-1191).
|
|
790
|
+
* The steered message's own output streams via `session/update`, not this
|
|
791
|
+
* response.
|
|
772
792
|
*
|
|
773
793
|
* Pre-empting means ABORTING: the interrupted cycle emits a `result` of its
|
|
774
794
|
* own and the steered message runs as a second one, so the turn is marked
|
|
@@ -780,6 +800,11 @@ export declare class ClaudeAcpAgent {
|
|
|
780
800
|
* `session/prompt`. Without the opt-in, the existing detached `prompt()` and
|
|
781
801
|
* `startedNewTurn` result are preserved for compatibility. */
|
|
782
802
|
steer(params: SteerRequest): Promise<SteerResponse>;
|
|
803
|
+
/** Publish the audit terminal for every turn path that did not reach the
|
|
804
|
+
* report tool. The support flips the turn state synchronously before its
|
|
805
|
+
* transport await, so callers can stay fail-open and settle the ACP prompt
|
|
806
|
+
* immediately without allowing a racing lifecycle path to publish twice. */
|
|
807
|
+
private finishFileChangeAudit;
|
|
783
808
|
/** Lazily start the per-session consumer that drains the SDK query stream for
|
|
784
809
|
* the session's whole life. Idempotent: only the first `prompt()` starts it. */
|
|
785
810
|
private ensureConsumer;
|
|
@@ -835,17 +860,23 @@ export declare class ClaudeAcpAgent {
|
|
|
835
860
|
deleteSession(params: DeleteSessionRequest): Promise<DeleteSessionResponse>;
|
|
836
861
|
setSessionMode(params: SetSessionModeRequest): Promise<SetSessionModeResponse>;
|
|
837
862
|
setSessionConfigOption(params: SetSessionConfigOptionRequest): Promise<SetSessionConfigOptionResponse>;
|
|
838
|
-
private applySessionMode;
|
|
839
863
|
private replaySessionHistory;
|
|
840
864
|
readTextFile(params: ReadTextFileRequest): Promise<ReadTextFileResponse>;
|
|
841
865
|
writeTextFile(params: WriteTextFileRequest): Promise<WriteTextFileResponse>;
|
|
866
|
+
/** Mark a client request as blocking on user input for exactly the lifetime
|
|
867
|
+
* of its promise. Steering consults this session-local count synchronously,
|
|
868
|
+
* so a message arriving while any permission/elicitation card is open uses
|
|
869
|
+
* non-interrupting SDK delivery. The decrement sits in `finally` (and is
|
|
870
|
+
* clamped at zero), so accepted, declined, cancelled, aborted and failed
|
|
871
|
+
* requests all settle the count — a request that ends by throwing must not
|
|
872
|
+
* pin the session at `later` for the rest of its life. */
|
|
873
|
+
private withPendingUserInput;
|
|
842
874
|
/** Forward a permission request to the client, wiring the tool call's
|
|
843
875
|
* `signal` through as a `cancellationSignal`. When the turn is cancelled
|
|
844
876
|
* while the client's prompt is still open the signal aborts, the SDK sends
|
|
845
|
-
* `$/cancel_request`, and
|
|
846
|
-
*
|
|
847
|
-
* "Tool use aborted" the callers already expect
|
|
848
|
-
* longer leaves the `await` hanging. */
|
|
877
|
+
* `$/cancel_request`, and our local abort race settles even if the client
|
|
878
|
+
* ignores it. A `cancelled` outcome, request rejection, and local abort all
|
|
879
|
+
* surface the same "Tool use aborted" the callers already expect. */
|
|
849
880
|
private requestPermissionFromClient;
|
|
850
881
|
/** Emit the `tool_call` a permission request references if it hasn't been sent
|
|
851
882
|
* yet, so the client has the tool call before being asked to approve it. The
|
|
@@ -893,11 +924,9 @@ export declare class ClaudeAcpAgent {
|
|
|
893
924
|
* user-driven model change takes, then notifies the client. */
|
|
894
925
|
private syncModelAfterRefusalFallback;
|
|
895
926
|
/** Replace the Fast mode option in `session.configOptions` so it reflects
|
|
896
|
-
* `enabled` (and the
|
|
927
|
+
* `enabled` (and the client's current boolean-capability). A no-op when the
|
|
897
928
|
* option isn't present, so callers must confirm the current model surfaces
|
|
898
|
-
* it first.
|
|
899
|
-
* source of the option's shape — so the shape can't drift from what
|
|
900
|
-
* `buildConfigOptions` first emitted. */
|
|
929
|
+
* it first. */
|
|
901
930
|
private refreshFastModeOption;
|
|
902
931
|
/** Toggle Fast mode for a session: push the SDK flag, record the user's
|
|
903
932
|
* intent, and refresh the Fast mode config option in place. Only reached
|
|
@@ -976,9 +1005,14 @@ export declare class ClaudeAcpAgent {
|
|
|
976
1005
|
*/
|
|
977
1006
|
private validateCwd;
|
|
978
1007
|
private createSession;
|
|
1008
|
+
/**
|
|
1009
|
+
* Provider routing is baked into the environment of each SDK Query. Wait for
|
|
1010
|
+
* all submitted turns to settle, close every query, then resume each Claude
|
|
1011
|
+
* session with the same ID so subsequent turns inherit the new environment.
|
|
1012
|
+
*/
|
|
1013
|
+
private enqueueProviderUpdate;
|
|
979
1014
|
}
|
|
980
1015
|
export declare const BUILTIN_AGENT_NAMES: Set<string>;
|
|
981
|
-
export declare const DEFAULT_AGENT_ID = "default";
|
|
982
1016
|
/** Discover user/plugin/project-configured main-thread agents, excluding the
|
|
983
1017
|
* built-in subagents and the reserved "default" sentinel. Returns an empty
|
|
984
1018
|
* list if discovery fails so a flaky control request never blocks session
|
|
@@ -988,13 +1022,12 @@ export declare function discoverCustomAgents(q: Query): Promise<AgentInfo[]>;
|
|
|
988
1022
|
* Centralized so the option declarations in `buildConfigOptions` and the
|
|
989
1023
|
* handlers in `setSessionConfigOption`/`applyConfigOptionValue` reference the
|
|
990
1024
|
* same identifiers and can't drift apart. */
|
|
991
|
-
export
|
|
1025
|
+
export { MODE_CONFIG_ID };
|
|
992
1026
|
export declare const MODEL_CONFIG_ID = "model";
|
|
993
|
-
export declare const EFFORT_CONFIG_ID = "effort";
|
|
994
1027
|
export declare const AGENT_CONFIG_ID = "agent";
|
|
995
1028
|
export declare const FAST_MODE_CONFIG_ID = "fast";
|
|
996
|
-
/** Select values
|
|
997
|
-
* (see {@link createFastModeConfigOption}). */
|
|
1029
|
+
/** Select-fallback values used when the client has not opted into boolean
|
|
1030
|
+
* config options (see {@link createFastModeConfigOption}). */
|
|
998
1031
|
export declare const FAST_MODE_ON = "on";
|
|
999
1032
|
export declare const FAST_MODE_OFF = "off";
|
|
1000
1033
|
/** Map the SDK's tri-state `fast_mode_state` onto the boolean config toggle.
|
|
@@ -1008,36 +1041,33 @@ export declare function fastModeStateEnabled(state: FastModeState): boolean;
|
|
|
1008
1041
|
* exactly what the user can see, so routine reports like
|
|
1009
1042
|
* `sdk_opt_in_required` never churn the config option. */
|
|
1010
1043
|
export declare function normalizeFastModeDisabledReason(reason: FastModeDisabledReason | undefined): FastModeDisabledReason | undefined;
|
|
1011
|
-
/**
|
|
1012
|
-
*
|
|
1013
|
-
*
|
|
1014
|
-
*
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
*
|
|
1018
|
-
*
|
|
1019
|
-
*
|
|
1020
|
-
* folded into the description while the toggle reads off, so a user whose
|
|
1021
|
-
* account or provider can't serve Fast mode sees why instead of a switch that
|
|
1022
|
-
* silently refuses to stay on. Ignored while enabled: a reason reported
|
|
1023
|
-
* alongside an `on`/`cooldown` state isn't blocking anything right now.
|
|
1044
|
+
/** Whether the Client advertised support for boolean session config options
|
|
1045
|
+
* (`session.configOptions.boolean`). Agents MUST only send `type: "boolean"`
|
|
1046
|
+
* config options to Clients that opt in; otherwise we fall back to a `select`.
|
|
1047
|
+
* See https://agentclientprotocol.com/rfds/boolean-config-option. */
|
|
1048
|
+
export declare function clientSupportsBooleanConfigOptions(clientCapabilities?: ClientCapabilities | null): boolean;
|
|
1049
|
+
/** Build the Fast mode config option. When the Client supports boolean config
|
|
1050
|
+
* options we expose a native `type: "boolean"` toggle; otherwise we degrade to
|
|
1051
|
+
* a two-value `select` ("on"/"off") so older Clients still get a usable
|
|
1052
|
+
* control.
|
|
1024
1053
|
*
|
|
1025
|
-
*
|
|
1026
|
-
*
|
|
1027
|
-
*
|
|
1028
|
-
*
|
|
1029
|
-
|
|
1054
|
+
* `disabledReason` (the SDK's `fast_mode_disabled_reason`) is folded into the
|
|
1055
|
+
* description while the toggle reads off, so a user whose account or provider
|
|
1056
|
+
* can't serve Fast mode sees why instead of a switch that silently refuses to
|
|
1057
|
+
* stay on. Ignored while enabled: a reason reported alongside an `on`/`cooldown`
|
|
1058
|
+
* state isn't blocking anything right now. */
|
|
1059
|
+
export declare function createFastModeConfigOption(enabled: boolean, useBooleanOption: boolean, disabledReason?: FastModeDisabledReason): SessionConfigOption;
|
|
1030
1060
|
/** Resolve the requested Fast mode value from a `session/set_config_option`
|
|
1031
|
-
* request. Accepts
|
|
1032
|
-
*
|
|
1033
|
-
export declare function resolveFastModeEnabled(params:
|
|
1034
|
-
value: unknown;
|
|
1035
|
-
}): boolean;
|
|
1061
|
+
* request. Accepts a native boolean (boolean-capable Clients) or the
|
|
1062
|
+
* "on"/"off" select-fallback strings. */
|
|
1063
|
+
export declare function resolveFastModeEnabled(params: SetSessionConfigOptionRequest): boolean;
|
|
1036
1064
|
/** Per-model Fast mode state threaded into {@link buildConfigOptions}. The
|
|
1037
1065
|
* option is only surfaced when the current model `supported`s fast mode. */
|
|
1038
1066
|
export type FastModeOptionState = {
|
|
1039
1067
|
supported: boolean;
|
|
1040
1068
|
enabled: boolean;
|
|
1069
|
+
/** Whether the Client opted into boolean config options. */
|
|
1070
|
+
useBooleanOption: boolean;
|
|
1041
1071
|
/** Latest explainable `fast_mode_disabled_reason`, folded into the option's
|
|
1042
1072
|
* description while the toggle reads off. */
|
|
1043
1073
|
disabledReason?: FastModeDisabledReason;
|
|
@@ -1140,9 +1170,8 @@ export declare function streamEventToAcpNotifications(message: SDKPartialAssista
|
|
|
1140
1170
|
* subsequent turn. `signal` also aborts on connection close, in which case
|
|
1141
1171
|
* cancelling the in-flight turn is the desired behavior anyway. */
|
|
1142
1172
|
export declare function runPromptWithCancellation(agent: Pick<ClaudeAcpAgent, "prompt" | "cancel" | "logger">, params: PromptRequest, signal: AbortSignal): Promise<PromptResponse>;
|
|
1143
|
-
export declare function runAcp(): {
|
|
1173
|
+
export declare function runAcp(logger?: Logger): {
|
|
1144
1174
|
connection: import("@agentclientprotocol/sdk").AgentConnection;
|
|
1145
1175
|
agent: ClaudeAcpAgent;
|
|
1146
1176
|
};
|
|
1147
|
-
export {};
|
|
1148
1177
|
//# sourceMappingURL=acp-agent.d.ts.map
|
package/dist/acp-agent.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acp-agent.d.ts","sourceRoot":"","sources":["../src/acp-agent.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"acp-agent.d.ts","sourceRoot":"","sources":["../src/acp-agent.ts"],"names":[],"mappings":"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"}
|