@agentproto/adapter-claude-code 0.1.0 → 0.2.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/CLAUDE-CODE.md +98 -4
- package/dist/index.mjs +134 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/CLAUDE-CODE.md
CHANGED
|
@@ -55,6 +55,15 @@ capabilities:
|
|
|
55
55
|
modes:
|
|
56
56
|
- id: default
|
|
57
57
|
description: Standard interactive mode with per-tool permission prompts.
|
|
58
|
+
- id: lean
|
|
59
|
+
description: >-
|
|
60
|
+
Drop Claude Code's bundled skills and workflows from context (built-in
|
|
61
|
+
slash commands stay typable but are hidden from the model). Plugins,
|
|
62
|
+
project `.claude/skills/`, and `.claude/commands/` are unaffected. The
|
|
63
|
+
wrapper has no CLI flag for this — the underlying `claude` binary reads
|
|
64
|
+
`CLAUDE_CODE_DISABLE_BUNDLED_SKILLS` directly, so this mode is env-only.
|
|
65
|
+
env:
|
|
66
|
+
CLAUDE_CODE_DISABLE_BUNDLED_SKILLS: "1"
|
|
58
67
|
- id: plan
|
|
59
68
|
description: Plan-only mode — Claude Code reasons and proposes but does not edit or run commands.
|
|
60
69
|
bin_args_append: ["--permission-mode", "plan"]
|
|
@@ -64,18 +73,103 @@ modes:
|
|
|
64
73
|
- id: bypass-permissions
|
|
65
74
|
description: Skip all permission prompts. Use only in trusted automation contexts.
|
|
66
75
|
bin_args_append: ["--permission-mode", "bypassPermissions"]
|
|
76
|
+
- id: moonshot
|
|
77
|
+
description: >-
|
|
78
|
+
Moonshot (Kimi) gateway. Pre-wires ANTHROPIC_BASE_URL to Moonshot's
|
|
79
|
+
Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY
|
|
80
|
+
(via env_unset) so it can't leak to the third-party host. Supply the
|
|
81
|
+
Moonshot key via the `auth_token` option and pick a model via `model`
|
|
82
|
+
(conventional: 'kimi-k2.7-code'). Without auth_token the spawn has no
|
|
83
|
+
credentials and fails cleanly.
|
|
84
|
+
env:
|
|
85
|
+
ANTHROPIC_BASE_URL: https://api.moonshot.ai/anthropic
|
|
86
|
+
env_unset:
|
|
87
|
+
- ANTHROPIC_API_KEY
|
|
88
|
+
- CLAUDE_CODE_USE_BEDROCK
|
|
89
|
+
- CLAUDE_CODE_USE_VERTEX
|
|
90
|
+
- CLAUDE_CODE_USE_FOUNDRY
|
|
91
|
+
- CLAUDE_CODE_USE_ANTHROPIC_AWS
|
|
92
|
+
- CLAUDE_CODE_USE_MANTLE
|
|
93
|
+
- CLAUDE_CODE_USE_GATEWAY
|
|
94
|
+
- id: openrouter
|
|
95
|
+
description: >-
|
|
96
|
+
OpenRouter gateway. Pre-wires ANTHROPIC_BASE_URL to OpenRouter's
|
|
97
|
+
Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY
|
|
98
|
+
(same auth-hygiene rationale as `moonshot`). Pick a model via `model`
|
|
99
|
+
(e.g. 'z-ai/glm-5.2', 'moonshotai/kimi-k2') and supply the OpenRouter
|
|
100
|
+
key via `auth_token`.
|
|
101
|
+
env:
|
|
102
|
+
ANTHROPIC_BASE_URL: https://openrouter.ai/api/v1
|
|
103
|
+
env_unset:
|
|
104
|
+
- ANTHROPIC_API_KEY
|
|
105
|
+
- CLAUDE_CODE_USE_BEDROCK
|
|
106
|
+
- CLAUDE_CODE_USE_VERTEX
|
|
107
|
+
- CLAUDE_CODE_USE_FOUNDRY
|
|
108
|
+
- CLAUDE_CODE_USE_ANTHROPIC_AWS
|
|
109
|
+
- CLAUDE_CODE_USE_MANTLE
|
|
110
|
+
- CLAUDE_CODE_USE_GATEWAY
|
|
111
|
+
- id: deepseek
|
|
112
|
+
description: >-
|
|
113
|
+
DeepSeek gateway. Pre-wires ANTHROPIC_BASE_URL to DeepSeek's
|
|
114
|
+
Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY
|
|
115
|
+
(same auth-hygiene rationale as `moonshot`/`openrouter`). Pick a model
|
|
116
|
+
via `model` (conventional: 'deepseek-v4-pro', 'deepseek-v4-flash') and
|
|
117
|
+
supply the DeepSeek key via `auth_token`.
|
|
118
|
+
env:
|
|
119
|
+
ANTHROPIC_BASE_URL: https://api.deepseek.com/anthropic
|
|
120
|
+
env_unset:
|
|
121
|
+
- ANTHROPIC_API_KEY
|
|
122
|
+
- CLAUDE_CODE_USE_BEDROCK
|
|
123
|
+
- CLAUDE_CODE_USE_VERTEX
|
|
124
|
+
- CLAUDE_CODE_USE_FOUNDRY
|
|
125
|
+
- CLAUDE_CODE_USE_ANTHROPIC_AWS
|
|
126
|
+
- CLAUDE_CODE_USE_MANTLE
|
|
127
|
+
- CLAUDE_CODE_USE_GATEWAY
|
|
67
128
|
options:
|
|
68
129
|
- id: model
|
|
69
|
-
type:
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
130
|
+
type: string
|
|
131
|
+
description: >-
|
|
132
|
+
Anthropic model ID or wrapper alias (e.g. 'claude-sonnet-5', 'sonnet',
|
|
133
|
+
'opus'), applied via ACP session/set_config_option after the session is
|
|
134
|
+
created. An id the wrapper can't resolve is warned about and ignored
|
|
135
|
+
(the session keeps the claude-code default). Omit to use the default.
|
|
136
|
+
Required for non-Claude models reached through a gateway mode
|
|
137
|
+
(e.g. 'deepseek-v4-pro' under `deepseek`, 'kimi-k2.7-code' under `moonshot`).
|
|
73
138
|
- id: max_turns
|
|
74
139
|
type: integer
|
|
75
140
|
min: 1
|
|
76
141
|
max: 200
|
|
77
142
|
description: Hard cap on tool-use turns within a single send. Claude Code stops after this many cycles.
|
|
78
143
|
bin_args_template: ["--max-turns", "{value}"]
|
|
144
|
+
- id: base_url
|
|
145
|
+
type: string
|
|
146
|
+
description: >-
|
|
147
|
+
Custom Anthropic base URL, injected as ANTHROPIC_BASE_URL. Front real
|
|
148
|
+
Anthropic, Bedrock/Vertex/Azure, or an Anthropic-compatible gateway.
|
|
149
|
+
Setting it auto-scrubs the ambient ANTHROPIC_API_KEY and all cloud-provider
|
|
150
|
+
toggles (Bedrock/Vertex/Foundry/Mantle) so it can't leak to a third-party
|
|
151
|
+
host — pair with `auth_token` to supply a per-spawn gateway key. The
|
|
152
|
+
`moonshot`/`openrouter`/`deepseek` modes are pre-wired presets over this
|
|
153
|
+
same shape.
|
|
154
|
+
env:
|
|
155
|
+
ANTHROPIC_BASE_URL: "{value}"
|
|
156
|
+
env_unset:
|
|
157
|
+
- ANTHROPIC_API_KEY
|
|
158
|
+
- CLAUDE_CODE_USE_BEDROCK
|
|
159
|
+
- CLAUDE_CODE_USE_VERTEX
|
|
160
|
+
- CLAUDE_CODE_USE_FOUNDRY
|
|
161
|
+
- CLAUDE_CODE_USE_ANTHROPIC_AWS
|
|
162
|
+
- CLAUDE_CODE_USE_MANTLE
|
|
163
|
+
- CLAUDE_CODE_USE_GATEWAY
|
|
164
|
+
- id: auth_token
|
|
165
|
+
type: string
|
|
166
|
+
description: >-
|
|
167
|
+
Bearer token for the Anthropic API or a compatible gateway, injected as
|
|
168
|
+
ANTHROPIC_AUTH_TOKEN (sent as `Authorization: Bearer`). Pair with
|
|
169
|
+
`base_url` (or a `moonshot`/`openrouter`/`deepseek` mode) to target a
|
|
170
|
+
gateway with a per-spawn key instead of the ambient ANTHROPIC_API_KEY.
|
|
171
|
+
env:
|
|
172
|
+
ANTHROPIC_AUTH_TOKEN: "{value}"
|
|
79
173
|
continuation:
|
|
80
174
|
# `native-resume` is the right default now that the wrapper supports
|
|
81
175
|
# `loadSession`: each turn cold-spawns claude with no overhead, then
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
import { defineAgentCli, createAgentCliRuntime } from '@agentproto/driver-agent-cli';
|
|
2
|
+
import { ANTHROPIC_CORE_SCRUB_ENV, ANTHROPIC_GATEWAY_PRESETS } from '@agentproto/provider-presets';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* @agentproto/adapter-claude-code v0.1.0-alpha
|
|
5
6
|
* AIP-45 adapter for Anthropic's Claude Code via @agentclientprotocol/claude-agent-acp.
|
|
6
7
|
*/
|
|
7
8
|
|
|
9
|
+
var CLAUDE_CODE_GATEWAY_ENV_UNSET = [
|
|
10
|
+
...ANTHROPIC_CORE_SCRUB_ENV,
|
|
11
|
+
"CLAUDE_CODE_USE_BEDROCK",
|
|
12
|
+
"CLAUDE_CODE_USE_VERTEX",
|
|
13
|
+
"CLAUDE_CODE_USE_FOUNDRY",
|
|
14
|
+
"CLAUDE_CODE_USE_ANTHROPIC_AWS",
|
|
15
|
+
"CLAUDE_CODE_USE_MANTLE",
|
|
16
|
+
"CLAUDE_CODE_USE_GATEWAY"
|
|
17
|
+
];
|
|
8
18
|
var claudeCode = defineAgentCli({
|
|
9
19
|
name: "claude-code",
|
|
10
20
|
id: "claude-code",
|
|
@@ -37,14 +47,20 @@ var claudeCode = defineAgentCli({
|
|
|
37
47
|
idle_timeout_ms: 18e5,
|
|
38
48
|
context_carryover: true
|
|
39
49
|
},
|
|
50
|
+
// Every id below is validated against the wrapper's live
|
|
51
|
+
// `session/new` → configOptions[model] selector: the wrapper resolves
|
|
52
|
+
// these (via its own `resolveModelPreference`) and rejects anything it
|
|
53
|
+
// can't — a rejected `session/set_config_option` used to kill the spawn
|
|
54
|
+
// (agentproto#186; the apply is now best-effort, see @agentproto/acp's
|
|
55
|
+
// newSession). Stale ids that the wrapper no longer offers were removed:
|
|
56
|
+
// `claude-sonnet-4-6` (the old default), `claude-opus-4-7`, `claude-opus-4-6`.
|
|
40
57
|
models: {
|
|
41
|
-
default: "claude-sonnet-
|
|
58
|
+
default: "claude-sonnet-5",
|
|
42
59
|
allowed: [
|
|
43
|
-
"claude-sonnet-
|
|
60
|
+
"claude-sonnet-5",
|
|
44
61
|
"claude-opus-4-8",
|
|
45
|
-
"claude-
|
|
46
|
-
"claude-
|
|
47
|
-
"claude-haiku-4-5"
|
|
62
|
+
"claude-haiku-4-5",
|
|
63
|
+
"claude-fable-5"
|
|
48
64
|
],
|
|
49
65
|
env: { anthropic: "ANTHROPIC_API_KEY" }
|
|
50
66
|
},
|
|
@@ -75,11 +91,42 @@ var claudeCode = defineAgentCli({
|
|
|
75
91
|
// multimodal round-trip needed; pure file-path injection.
|
|
76
92
|
file_attach: true
|
|
77
93
|
},
|
|
94
|
+
// `bin_args_append: ["--permission-mode", ...]` below is a no-op against
|
|
95
|
+
// the @agentclientprotocol/claude-agent-acp wrapper — it never reads
|
|
96
|
+
// `--permission-mode` from argv. The wrapper instead resolves
|
|
97
|
+
// `permissions.defaultMode` exclusively via the SDK's `resolveSettings`,
|
|
98
|
+
// which merges `${CLAUDE_CONFIG_DIR}/settings.json` (user tier),
|
|
99
|
+
// `<cwd>/.claude/settings(.local).json` (project tier), and a managed
|
|
100
|
+
// tier. The driver (`packages/driver/agent-cli/src/define-agent-cli.ts`,
|
|
101
|
+
// `resolveClaudeCodePermissionMode`) makes the mode actually take effect
|
|
102
|
+
// by pointing a per-session `CLAUDE_CONFIG_DIR` at a throwaway temp dir
|
|
103
|
+
// containing `{"permissions":{"defaultMode":"<value>"}}` — reading the
|
|
104
|
+
// same `--permission-mode <value>` pair declared here as its one source
|
|
105
|
+
// of truth for the value vocabulary. `bin_args_append` is kept for a
|
|
106
|
+
// future wrapper version that might start reading argv.
|
|
107
|
+
//
|
|
108
|
+
// Known limitation (empirically confirmed, not just theorized): a target
|
|
109
|
+
// repo that commits its own escalated `.claude/settings.json`
|
|
110
|
+
// `permissions.defaultMode` (e.g. "bypassPermissions") does NOT let the
|
|
111
|
+
// repo's escalation win — the wrapper's `filterEscalatingDefaultMode`
|
|
112
|
+
// strips an escalating project-tier value entirely — but it also means
|
|
113
|
+
// OUR requested mode is defeated in the same merge pass (project tier
|
|
114
|
+
// out-prioritizes the user tier for the raw merge, before the filter
|
|
115
|
+
// ever runs). The net effect for that adversarial case is the session
|
|
116
|
+
// falls back to "default" (normal per-action prompting) rather than the
|
|
117
|
+
// requested mode. This does not reintroduce the original bug (silent,
|
|
118
|
+
// zero-prompt writes) — it just doesn't guarantee plan-only reasoning
|
|
119
|
+
// against a repo actively trying to escalate its own trust level.
|
|
78
120
|
modes: [
|
|
79
121
|
{ id: "default", description: "Standard interactive mode." },
|
|
122
|
+
{
|
|
123
|
+
id: "lean",
|
|
124
|
+
description: "Drop Claude Code's bundled skills and workflows from context (built-in slash commands stay typable but are hidden from the model). Plugins, project `.claude/skills/`, and `.claude/commands/` are unaffected. The ACP wrapper has no CLI flag for this \u2014 the underlying claude binary reads CLAUDE_CODE_DISABLE_BUNDLED_SKILLS directly, so this mode is env-only.",
|
|
125
|
+
env: { CLAUDE_CODE_DISABLE_BUNDLED_SKILLS: "1" }
|
|
126
|
+
},
|
|
80
127
|
{
|
|
81
128
|
id: "plan",
|
|
82
|
-
description: "Plan-only mode \u2014 Claude Code reasons and proposes
|
|
129
|
+
description: "Plan-only mode \u2014 Claude Code reasons and proposes a plan, requesting explicit approval before writing files or running commands. Applied via a per-session CLAUDE_CONFIG_DIR override (see comment above `modes`); can be defeated by a target repo's own committed, escalated .claude/settings.json.",
|
|
83
130
|
bin_args_append: ["--permission-mode", "plan"]
|
|
84
131
|
},
|
|
85
132
|
{
|
|
@@ -91,6 +138,43 @@ var claudeCode = defineAgentCli({
|
|
|
91
138
|
id: "bypass-permissions",
|
|
92
139
|
description: "Skip all permission prompts. Use only in trusted automation contexts.",
|
|
93
140
|
bin_args_append: ["--permission-mode", "bypassPermissions"]
|
|
141
|
+
},
|
|
142
|
+
// ── Gateway modes ───────────────────────────────────────────────
|
|
143
|
+
// The claude binary honors ANTHROPIC_BASE_URL + ANTHROPIC_AUTH_TOKEN,
|
|
144
|
+
// so it can front any Anthropic-compatible gateway (Moonshot, OpenRouter,
|
|
145
|
+
// LiteLLM, claude-code-router) the same way @agentproto/adapter-claude-sdk
|
|
146
|
+
// does. These modes pre-wire the endpoint and — critically — scrub the
|
|
147
|
+
// ambient ANTHROPIC_API_KEY plus the cloud-provider redirect toggles
|
|
148
|
+
// (CLAUDE_CODE_USE_BEDROCK/_VERTEX/…) via env_unset so the real Anthropic
|
|
149
|
+
// credential can neither leak to nor 401 against a third-party host, and
|
|
150
|
+
// a leftover cloud toggle can't override the gateway base_url. The
|
|
151
|
+
// operator supplies the gateway key via the `auth_token` option (injected
|
|
152
|
+
// as ANTHROPIC_AUTH_TOKEN, sent as `Authorization: Bearer`) and picks a
|
|
153
|
+
// model via `model` (e.g. 'kimi-k2.7-code', 'z-ai/glm-5.2') — the ACP
|
|
154
|
+
// wrapper applies it via session/set_config_option after newSession.
|
|
155
|
+
{
|
|
156
|
+
id: ANTHROPIC_GATEWAY_PRESETS.moonshot.id,
|
|
157
|
+
description: "Moonshot (Kimi) gateway. Pre-wires ANTHROPIC_BASE_URL to Moonshot's Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY so it can't leak to the third-party host. Supply the Moonshot key via the `auth_token` option and pick a model via `model` (conventional: 'kimi-k2.7-code'). Without auth_token the spawn has no credentials and fails cleanly \u2014 the real Anthropic key is never sent.",
|
|
158
|
+
env: {
|
|
159
|
+
ANTHROPIC_BASE_URL: ANTHROPIC_GATEWAY_PRESETS.moonshot.baseUrl
|
|
160
|
+
},
|
|
161
|
+
env_unset: CLAUDE_CODE_GATEWAY_ENV_UNSET
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
id: ANTHROPIC_GATEWAY_PRESETS.openrouter.id,
|
|
165
|
+
description: "OpenRouter gateway. Pre-wires ANTHROPIC_BASE_URL to OpenRouter's Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY (same auth-hygiene rationale as `moonshot`). Pick a model via `model` (e.g. 'z-ai/glm-5.2', 'deepseek/deepseek-v4-pro', 'moonshotai/kimi-k2') and supply the OpenRouter key via `auth_token`.",
|
|
166
|
+
env: {
|
|
167
|
+
ANTHROPIC_BASE_URL: ANTHROPIC_GATEWAY_PRESETS.openrouter.baseUrl
|
|
168
|
+
},
|
|
169
|
+
env_unset: CLAUDE_CODE_GATEWAY_ENV_UNSET
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
id: ANTHROPIC_GATEWAY_PRESETS.deepseek.id,
|
|
173
|
+
description: "DeepSeek gateway. Pre-wires ANTHROPIC_BASE_URL to DeepSeek's Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY (same auth-hygiene rationale as `moonshot`/`openrouter`). Pick a model via `model` (conventional: 'deepseek-v4-pro', 'deepseek-v4-flash') and supply the DeepSeek key via `auth_token`.",
|
|
174
|
+
env: {
|
|
175
|
+
ANTHROPIC_BASE_URL: ANTHROPIC_GATEWAY_PRESETS.deepseek.baseUrl
|
|
176
|
+
},
|
|
177
|
+
env_unset: CLAUDE_CODE_GATEWAY_ENV_UNSET
|
|
94
178
|
}
|
|
95
179
|
],
|
|
96
180
|
options: [
|
|
@@ -103,7 +187,7 @@ var claudeCode = defineAgentCli({
|
|
|
103
187
|
// to the underlying claude process, so bin_args_template alone
|
|
104
188
|
// cannot select the model.
|
|
105
189
|
type: "string",
|
|
106
|
-
description: "Anthropic model ID (e.g. 'claude-opus-4-8', 'claude-sonnet-
|
|
190
|
+
description: "Anthropic model ID or wrapper alias (e.g. 'claude-opus-4-8', 'claude-sonnet-5', 'sonnet', 'opus'). Applied via ACP session/set_config_option after the session is created; an id the wrapper can't resolve is warned about and ignored (the session keeps the claude-code default). Omit to use the claude-code default."
|
|
107
191
|
},
|
|
108
192
|
{
|
|
109
193
|
id: "effort",
|
|
@@ -124,6 +208,35 @@ var claudeCode = defineAgentCli({
|
|
|
124
208
|
max: 200,
|
|
125
209
|
description: "Hard cap on tool-use turns within a single send. Claude Code stops after this many cycles.",
|
|
126
210
|
bin_args_template: ["--max-turns", "{value}"]
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
id: "base_url",
|
|
214
|
+
// Injected into the child env as ANTHROPIC_BASE_URL — the claude binary
|
|
215
|
+
// honors it, so this fronts real Anthropic, Bedrock/Vertex/Azure, or an
|
|
216
|
+
// Anthropic-compatible gateway (LiteLLM / claude-code-router / Moonshot
|
|
217
|
+
// / OpenRouter). Auto-scrubs the ambient ANTHROPIC_API_KEY + cloud
|
|
218
|
+
// redirect toggles the moment it's set (symmetric with the moonshot/
|
|
219
|
+
// openrouter modes and with claude-sdk's buildQueryOptions scrub) so the
|
|
220
|
+
// real Anthropic credential can never leak to a third-party host — pair
|
|
221
|
+
// with `auth_token` to supply the gateway key. A base_url pointed at a
|
|
222
|
+
// real-Anthropic mirror that still wants the ambient key is the one
|
|
223
|
+
// shape this breaks; that's an acceptable trade for the default being
|
|
224
|
+
// leak-safe (matches claude-sdk).
|
|
225
|
+
type: "string",
|
|
226
|
+
description: "Custom Anthropic base URL. Injected as ANTHROPIC_BASE_URL in the child env \u2014 front real Anthropic, Bedrock/Vertex/Azure, or an Anthropic-compatible gateway. Auto-scrubs the ambient ANTHROPIC_API_KEY + cloud redirect toggles when set (so the real key can't leak to a third-party host) \u2014 pair with `auth_token` to supply the gateway credential. For Moonshot/OpenRouter the dedicated modes pre-wire the URL too. Omit to use the default endpoint.",
|
|
227
|
+
env: { ANTHROPIC_BASE_URL: "{value}" },
|
|
228
|
+
env_unset: CLAUDE_CODE_GATEWAY_ENV_UNSET
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
id: "auth_token",
|
|
232
|
+
// Injected into the child env as ANTHROPIC_AUTH_TOKEN — the claude
|
|
233
|
+
// binary sends it as `Authorization: Bearer <token>`, which
|
|
234
|
+
// Anthropic-compatible gateways (Moonshot, OpenRouter) accept. Pair
|
|
235
|
+
// with base_url (or a gateway mode) for a per-spawn key instead of the
|
|
236
|
+
// ambient ANTHROPIC_API_KEY.
|
|
237
|
+
type: "string",
|
|
238
|
+
description: "Bearer token for the Anthropic API or a compatible gateway. Injected as ANTHROPIC_AUTH_TOKEN in the child env (sent as `Authorization: Bearer`). Pair with `base_url` (or a `moonshot`/`openrouter` mode) to target a gateway with a per-spawn key instead of the ambient ANTHROPIC_API_KEY. Omit to use ANTHROPIC_API_KEY from the environment.",
|
|
239
|
+
env: { ANTHROPIC_AUTH_TOKEN: "{value}" }
|
|
127
240
|
}
|
|
128
241
|
],
|
|
129
242
|
continuation: {
|
|
@@ -144,7 +257,20 @@ var claudeCode = defineAgentCli({
|
|
|
144
257
|
key_scope: ["conversation", "operator"]
|
|
145
258
|
}
|
|
146
259
|
},
|
|
147
|
-
tags: ["claude-code", "anthropic", "acp", "agent-runtime", "coding"]
|
|
260
|
+
tags: ["claude-code", "anthropic", "acp", "agent-runtime", "coding"],
|
|
261
|
+
metadata: {
|
|
262
|
+
// Opts claude-code into `agentproto install skill/<slug>` fan-out (no
|
|
263
|
+
// --target given). Claude Code skills install as a whole plugin
|
|
264
|
+
// bundle, not per-skill drops — `unit: "whole-pack"` tells the
|
|
265
|
+
// fan-out dispatcher to emit the pack once, not once per requested
|
|
266
|
+
// skill slug. See
|
|
267
|
+
// packages/cli/src/commands/skill-install/types.ts `AdapterSkillsTarget`.
|
|
268
|
+
skills: {
|
|
269
|
+
format: "claude-plugin",
|
|
270
|
+
unit: "whole-pack",
|
|
271
|
+
outDir: "~/.claude/plugins/agentproto"
|
|
272
|
+
}
|
|
273
|
+
}
|
|
148
274
|
});
|
|
149
275
|
function claudeCodeRuntime() {
|
|
150
276
|
return createAgentCliRuntime(claudeCode);
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"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","file":"index.mjs","sourcesContent":["/**\n * @agentproto/adapter-claude-code — AIP-45 adapter for Anthropic's\n * Claude Code via the @agentclientprotocol/claude-agent-acp wrapper.\n */\n\nimport {\n createAgentCliRuntime,\n defineAgentCli,\n type AgentCliHandle,\n type AgentCliRuntime,\n} from \"@agentproto/driver-agent-cli\"\n\nexport const claudeCode: AgentCliHandle = defineAgentCli({\n name: \"claude-code\",\n id: \"claude-code\",\n description:\n \"Anthropic's Claude Code wrapped as an ACP agent via @agentclientprotocol/claude-agent-acp. Spawned via `npx -y @agentclientprotocol/claude-agent-acp` and driven over stdio JSON-RPC.\",\n version: \"0.1.0\",\n bin: \"npx\",\n bin_args: [\"-y\", \"@agentclientprotocol/claude-agent-acp\"],\n install: [\n {\n method: \"npm\",\n package: \"@agentclientprotocol/claude-agent-acp\",\n global: true,\n },\n ],\n version_check: {\n cmd: \"npm view @agentclientprotocol/claude-agent-acp version\",\n parse: \"(\\\\d+\\\\.\\\\d+\\\\.\\\\d+)\",\n range: \">=0.30.0\",\n timeout_ms: 15_000,\n },\n auth: {\n ref: \"./SECRETS.md\",\n state: { env: [\"ANTHROPIC_API_KEY\"] },\n },\n sandbox: \"./SANDBOX.md\",\n protocol: \"acp\",\n acp: \"./claude-code-acp.ACP.md\",\n session: {\n mode: \"persistent\",\n idle_timeout_ms: 1_800_000,\n context_carryover: true,\n },\n models: {\n default: \"claude-sonnet-4-6\",\n allowed: [\n \"claude-sonnet-4-6\",\n \"claude-opus-4-8\",\n \"claude-opus-4-7\",\n \"claude-opus-4-6\",\n \"claude-haiku-4-5\",\n ],\n env: { anthropic: \"ANTHROPIC_API_KEY\" },\n },\n capabilities: {\n streaming: true,\n tool_calls: true,\n sub_agents: false,\n file_io: true,\n // ACP wrapper forwards `image` content blocks in user prompts\n // straight to Anthropic Messages API. Hosts SHOULD send images\n // inline (see CLAUDE-CODE.md) instead of passing paths and\n // hoping the model uses Read.\n multimodal: true,\n // The wrapper (@agentclientprotocol/claude-agent-acp >= 0.30)\n // advertises `loadSession: true` and exposes the full session\n // lifecycle (newSession / loadSession / resumeSession / forkSession)\n // over JSON-RPC. Pairs with `continuation.default: native-resume`\n // below — the host persists the sessionId and reattaches to the\n // existing session across cold starts (api restart, sandbox reap,\n // multi-machine).\n resumable: true,\n bidirectional: true,\n // Claude Code's Read tool can ingest any absolute path the host\n // surfaces via the prompt. Pair with the daemon's POST /files/upload\n // route + a host UI drag-drop handler: drop a file → daemon writes\n // to `cwd/.agentproto-attachments/<name>` → host pastes the path\n // into the terminal → Claude reads it natively. No protocol-level\n // multimodal round-trip needed; pure file-path injection.\n file_attach: true,\n },\n modes: [\n { id: \"default\", description: \"Standard interactive mode.\" },\n {\n id: \"plan\",\n description:\n \"Plan-only mode — Claude Code reasons and proposes but does not edit or run commands.\",\n bin_args_append: [\"--permission-mode\", \"plan\"],\n },\n {\n id: \"accept-edits\",\n description: \"Auto-accept file edits; commands still prompt.\",\n bin_args_append: [\"--permission-mode\", \"acceptEdits\"],\n },\n {\n id: \"bypass-permissions\",\n description:\n \"Skip all permission prompts. Use only in trusted automation contexts.\",\n bin_args_append: [\"--permission-mode\", \"bypassPermissions\"],\n },\n ],\n options: [\n {\n id: \"model\",\n // string (not enum) so any valid Anthropic model ID is accepted\n // without requiring a code change to expand the list. Applied via\n // ACP session/set_config_option(configId:\"model\") after newSession\n // — the claude-agent-acp wrapper does not forward its own CLI args\n // to the underlying claude process, so bin_args_template alone\n // cannot select the model.\n type: \"string\" as const,\n description:\n \"Anthropic model ID (e.g. 'claude-opus-4-8', 'claude-sonnet-4-6'). \" +\n \"Applied via ACP session/set_config_option after the session is created. \" +\n \"Omit to use the claude-code default.\",\n },\n {\n id: \"effort\",\n type: \"enum\" as const,\n // Effort is model-dependent: the same label maps to different\n // underlying compute budgets across models, and the model's own\n // default differs (Sonnet 4.6 / Opus 4.8 default to \"high\";\n // Opus 4.7 defaults to \"xhigh\"). \"max\" and \"ultracode\" are\n // session-only — not valid in persisted settings. Omit to keep\n // the model's own default rather than hardcoding one here.\n enum: [\"low\", \"medium\", \"high\", \"xhigh\", \"max\", \"ultracode\"],\n description:\n \"Reasoning effort level. Model-dependent: the same label ≠ the same \" +\n \"compute budget across models, and defaults differ by model \" +\n \"(e.g. Sonnet 4.6 / Opus 4.8 default to 'high'; Opus 4.7 to 'xhigh'). \" +\n \"'max' and 'ultracode' are session-only. Omit to keep the model's own default.\",\n },\n {\n id: \"max_turns\",\n type: \"integer\" as const,\n min: 1,\n max: 200,\n description:\n \"Hard cap on tool-use turns within a single send. Claude Code stops after this many cycles.\",\n bin_args_template: [\"--max-turns\", \"{value}\"],\n },\n ],\n continuation: {\n // native-resume: each turn cold-spawns claude, then ACP `loadSession`\n // reattaches to the saved sessionId. Survives api restarts, sandbox\n // reaps, multi-machine — claude reads its own JSONL session store.\n // Requires the host to register `configureNativeResume({load, save})`\n // hooks; without them the strategy degrades to per-spawn behaviour\n // (no continuity).\n //\n // pinned-session is still supported as a fallback for hosts that\n // haven't wired the resume hooks yet — same warm-process semantics\n // as pre-AIP-45-extension behaviour.\n default: \"native-resume\",\n supported: [\"native-resume\", \"pinned-session\", \"transcript\", \"none\"],\n pinned_session: {\n idle_timeout_ms: 1_800_000,\n key_scope: [\"conversation\", \"operator\"],\n },\n },\n tags: [\"claude-code\", \"anthropic\", \"acp\", \"agent-runtime\", \"coding\"],\n})\n\nexport function claudeCodeRuntime(): AgentCliRuntime {\n return createAgentCliRuntime(claudeCode)\n}\n\nexport type { AgentCliHandle, AgentCliRuntime }\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;AAwBA,IAAM,6BAAA,GAA0C;AAAA,EAC9C,GAAG,wBAAA;AAAA,EACH,yBAAA;AAAA,EACA,wBAAA;AAAA,EACA,yBAAA;AAAA,EACA,+BAAA;AAAA,EACA,wBAAA;AAAA,EACA;AACF,CAAA;AAEO,IAAM,aAA6B,cAAA,CAAe;AAAA,EACvD,IAAA,EAAM,aAAA;AAAA,EACN,EAAA,EAAI,aAAA;AAAA,EACJ,WAAA,EACE,uLAAA;AAAA,EACF,OAAA,EAAS,OAAA;AAAA,EACT,GAAA,EAAK,KAAA;AAAA,EACL,QAAA,EAAU,CAAC,IAAA,EAAM,uCAAuC,CAAA;AAAA,EACxD,OAAA,EAAS;AAAA,IACP;AAAA,MACE,MAAA,EAAQ,KAAA;AAAA,MACR,OAAA,EAAS,uCAAA;AAAA,MACT,MAAA,EAAQ;AAAA;AACV,GACF;AAAA,EACA,aAAA,EAAe;AAAA,IACb,GAAA,EAAK,wDAAA;AAAA,IACL,KAAA,EAAO,sBAAA;AAAA,IACP,KAAA,EAAO,UAAA;AAAA,IACP,UAAA,EAAY;AAAA,GACd;AAAA,EACA,IAAA,EAAM;AAAA,IACJ,GAAA,EAAK,cAAA;AAAA,IACL,KAAA,EAAO,EAAE,GAAA,EAAK,CAAC,mBAAmB,CAAA;AAAE,GACtC;AAAA,EACA,OAAA,EAAS,cAAA;AAAA,EACT,QAAA,EAAU,KAAA;AAAA,EACV,GAAA,EAAK,0BAAA;AAAA,EACL,OAAA,EAAS;AAAA,IACP,IAAA,EAAM,YAAA;AAAA,IACN,eAAA,EAAiB,IAAA;AAAA,IACjB,iBAAA,EAAmB;AAAA,GACrB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,MAAA,EAAQ;AAAA,IACN,OAAA,EAAS,iBAAA;AAAA,IACT,OAAA,EAAS;AAAA,MACP,iBAAA;AAAA,MACA,iBAAA;AAAA,MACA,kBAAA;AAAA,MACA;AAAA,KACF;AAAA,IACA,GAAA,EAAK,EAAE,SAAA,EAAW,mBAAA;AAAoB,GACxC;AAAA,EACA,YAAA,EAAc;AAAA,IACZ,SAAA,EAAW,IAAA;AAAA,IACX,UAAA,EAAY,IAAA;AAAA,IACZ,UAAA,EAAY,KAAA;AAAA,IACZ,OAAA,EAAS,IAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAKT,UAAA,EAAY,IAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAQZ,SAAA,EAAW,IAAA;AAAA,IACX,aAAA,EAAe,IAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAOf,WAAA,EAAa;AAAA,GACf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA2BA,KAAA,EAAO;AAAA,IACL,EAAE,EAAA,EAAI,SAAA,EAAW,WAAA,EAAa,4BAAA,EAA6B;AAAA,IAC3D;AAAA,MACE,EAAA,EAAI,MAAA;AAAA,MACJ,WAAA,EACE,0WAAA;AAAA,MAKF,GAAA,EAAK,EAAE,kCAAA,EAAoC,GAAA;AAAI,KACjD;AAAA,IACA;AAAA,MACE,EAAA,EAAI,MAAA;AAAA,MACJ,WAAA,EACE,4SAAA;AAAA,MAIF,eAAA,EAAiB,CAAC,mBAAA,EAAqB,MAAM;AAAA,KAC/C;AAAA,IACA;AAAA,MACE,EAAA,EAAI,cAAA;AAAA,MACJ,WAAA,EAAa,gDAAA;AAAA,MACb,eAAA,EAAiB,CAAC,mBAAA,EAAqB,aAAa;AAAA,KACtD;AAAA,IACA;AAAA,MACE,EAAA,EAAI,oBAAA;AAAA,MACJ,WAAA,EACE,uEAAA;AAAA,MACF,eAAA,EAAiB,CAAC,mBAAA,EAAqB,mBAAmB;AAAA,KAC5D;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAcA;AAAA,MACE,EAAA,EAAI,0BAA0B,QAAA,CAAS,EAAA;AAAA,MACvC,WAAA,EACE,wZAAA;AAAA,MAMF,GAAA,EAAK;AAAA,QACH,kBAAA,EAAoB,0BAA0B,QAAA,CAAS;AAAA,OACzD;AAAA,MACA,SAAA,EAAW;AAAA,KACb;AAAA,IACA;AAAA,MACE,EAAA,EAAI,0BAA0B,UAAA,CAAW,EAAA;AAAA,MACzC,WAAA,EACE,uUAAA;AAAA,MAKF,GAAA,EAAK;AAAA,QACH,kBAAA,EAAoB,0BAA0B,UAAA,CAAW;AAAA,OAC3D;AAAA,MACA,SAAA,EAAW;AAAA,KACb;AAAA,IACA;AAAA,MACE,EAAA,EAAI,0BAA0B,QAAA,CAAS,EAAA;AAAA,MACvC,WAAA,EACE,6TAAA;AAAA,MAKF,GAAA,EAAK;AAAA,QACH,kBAAA,EAAoB,0BAA0B,QAAA,CAAS;AAAA,OACzD;AAAA,MACA,SAAA,EAAW;AAAA;AACb,GACF;AAAA,EACA,OAAA,EAAS;AAAA,IACP;AAAA,MACE,EAAA,EAAI,OAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAOJ,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE;AAAA,KAKJ;AAAA,IACA;AAAA,MACE,EAAA,EAAI,QAAA;AAAA,MACJ,IAAA,EAAM,MAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAON,MAAM,CAAC,KAAA,EAAO,UAAU,MAAA,EAAQ,OAAA,EAAS,OAAO,WAAW,CAAA;AAAA,MAC3D,WAAA,EACE;AAAA,KAIJ;AAAA,IACA;AAAA,MACE,EAAA,EAAI,WAAA;AAAA,MACJ,IAAA,EAAM,SAAA;AAAA,MACN,GAAA,EAAK,CAAA;AAAA,MACL,GAAA,EAAK,GAAA;AAAA,MACL,WAAA,EACE,4FAAA;AAAA,MACF,iBAAA,EAAmB,CAAC,aAAA,EAAe,SAAS;AAAA,KAC9C;AAAA,IACA;AAAA,MACE,EAAA,EAAI,UAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAYJ,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE,scAAA;AAAA,MAOF,GAAA,EAAK,EAAE,kBAAA,EAAoB,SAAA,EAAU;AAAA,MACrC,SAAA,EAAW;AAAA,KACb;AAAA,IACA;AAAA,MACE,EAAA,EAAI,YAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAMJ,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE,kVAAA;AAAA,MAKF,GAAA,EAAK,EAAE,oBAAA,EAAsB,SAAA;AAAU;AACzC,GACF;AAAA,EACA,YAAA,EAAc;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAWZ,OAAA,EAAS,eAAA;AAAA,IACT,SAAA,EAAW,CAAC,eAAA,EAAiB,gBAAA,EAAkB,cAAc,MAAM,CAAA;AAAA,IACnE,cAAA,EAAgB;AAAA,MACd,eAAA,EAAiB,IAAA;AAAA,MACjB,SAAA,EAAW,CAAC,cAAA,EAAgB,UAAU;AAAA;AACxC,GACF;AAAA,EACA,MAAM,CAAC,aAAA,EAAe,WAAA,EAAa,KAAA,EAAO,iBAAiB,QAAQ,CAAA;AAAA,EACnE,QAAA,EAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAOR,MAAA,EAAQ;AAAA,MACN,MAAA,EAAQ,eAAA;AAAA,MACR,IAAA,EAAM,YAAA;AAAA,MACN,MAAA,EAAQ;AAAA;AACV;AAEJ,CAAC;AAEM,SAAS,iBAAA,GAAqC;AACnD,EAAA,OAAO,sBAAsB,UAAU,CAAA;AACzC","file":"index.mjs","sourcesContent":["/**\n * @agentproto/adapter-claude-code — AIP-45 adapter for Anthropic's\n * Claude Code via the @agentclientprotocol/claude-agent-acp wrapper.\n */\n\nimport {\n createAgentCliRuntime,\n defineAgentCli,\n type AgentCliHandle,\n type AgentCliRuntime,\n} from \"@agentproto/driver-agent-cli\"\nimport {\n ANTHROPIC_CORE_SCRUB_ENV,\n ANTHROPIC_GATEWAY_PRESETS,\n} from \"@agentproto/provider-presets\"\n\n// Cloud-provider redirect toggles that must be scrubbed alongside the core\n// ANTHROPIC_API_KEY whenever the claude binary is pointed at a non-Anthropic\n// gateway — a leftover toggle would override ANTHROPIC_BASE_URL and silently\n// route back to Bedrock/Vertex/etc. The core ANTHROPIC_API_KEY scrub itself\n// is sourced from @agentproto/provider-presets (the single source of truth for\n// gateway facts), so a new native-Anthropic credential env var added there is\n// picked up here automatically. Shared by the moonshot/openrouter modes and\n// the base_url option.\nconst CLAUDE_CODE_GATEWAY_ENV_UNSET: string[] = [\n ...ANTHROPIC_CORE_SCRUB_ENV,\n \"CLAUDE_CODE_USE_BEDROCK\",\n \"CLAUDE_CODE_USE_VERTEX\",\n \"CLAUDE_CODE_USE_FOUNDRY\",\n \"CLAUDE_CODE_USE_ANTHROPIC_AWS\",\n \"CLAUDE_CODE_USE_MANTLE\",\n \"CLAUDE_CODE_USE_GATEWAY\",\n]\n\nexport const claudeCode: AgentCliHandle = defineAgentCli({\n name: \"claude-code\",\n id: \"claude-code\",\n description:\n \"Anthropic's Claude Code wrapped as an ACP agent via @agentclientprotocol/claude-agent-acp. Spawned via `npx -y @agentclientprotocol/claude-agent-acp` and driven over stdio JSON-RPC.\",\n version: \"0.1.0\",\n bin: \"npx\",\n bin_args: [\"-y\", \"@agentclientprotocol/claude-agent-acp\"],\n install: [\n {\n method: \"npm\",\n package: \"@agentclientprotocol/claude-agent-acp\",\n global: true,\n },\n ],\n version_check: {\n cmd: \"npm view @agentclientprotocol/claude-agent-acp version\",\n parse: \"(\\\\d+\\\\.\\\\d+\\\\.\\\\d+)\",\n range: \">=0.30.0\",\n timeout_ms: 15_000,\n },\n auth: {\n ref: \"./SECRETS.md\",\n state: { env: [\"ANTHROPIC_API_KEY\"] },\n },\n sandbox: \"./SANDBOX.md\",\n protocol: \"acp\",\n acp: \"./claude-code-acp.ACP.md\",\n session: {\n mode: \"persistent\",\n idle_timeout_ms: 1_800_000,\n context_carryover: true,\n },\n // Every id below is validated against the wrapper's live\n // `session/new` → configOptions[model] selector: the wrapper resolves\n // these (via its own `resolveModelPreference`) and rejects anything it\n // can't — a rejected `session/set_config_option` used to kill the spawn\n // (agentproto#186; the apply is now best-effort, see @agentproto/acp's\n // newSession). Stale ids that the wrapper no longer offers were removed:\n // `claude-sonnet-4-6` (the old default), `claude-opus-4-7`, `claude-opus-4-6`.\n models: {\n default: \"claude-sonnet-5\",\n allowed: [\n \"claude-sonnet-5\",\n \"claude-opus-4-8\",\n \"claude-haiku-4-5\",\n \"claude-fable-5\",\n ],\n env: { anthropic: \"ANTHROPIC_API_KEY\" },\n },\n capabilities: {\n streaming: true,\n tool_calls: true,\n sub_agents: false,\n file_io: true,\n // ACP wrapper forwards `image` content blocks in user prompts\n // straight to Anthropic Messages API. Hosts SHOULD send images\n // inline (see CLAUDE-CODE.md) instead of passing paths and\n // hoping the model uses Read.\n multimodal: true,\n // The wrapper (@agentclientprotocol/claude-agent-acp >= 0.30)\n // advertises `loadSession: true` and exposes the full session\n // lifecycle (newSession / loadSession / resumeSession / forkSession)\n // over JSON-RPC. Pairs with `continuation.default: native-resume`\n // below — the host persists the sessionId and reattaches to the\n // existing session across cold starts (api restart, sandbox reap,\n // multi-machine).\n resumable: true,\n bidirectional: true,\n // Claude Code's Read tool can ingest any absolute path the host\n // surfaces via the prompt. Pair with the daemon's POST /files/upload\n // route + a host UI drag-drop handler: drop a file → daemon writes\n // to `cwd/.agentproto-attachments/<name>` → host pastes the path\n // into the terminal → Claude reads it natively. No protocol-level\n // multimodal round-trip needed; pure file-path injection.\n file_attach: true,\n },\n // `bin_args_append: [\"--permission-mode\", ...]` below is a no-op against\n // the @agentclientprotocol/claude-agent-acp wrapper — it never reads\n // `--permission-mode` from argv. The wrapper instead resolves\n // `permissions.defaultMode` exclusively via the SDK's `resolveSettings`,\n // which merges `${CLAUDE_CONFIG_DIR}/settings.json` (user tier),\n // `<cwd>/.claude/settings(.local).json` (project tier), and a managed\n // tier. The driver (`packages/driver/agent-cli/src/define-agent-cli.ts`,\n // `resolveClaudeCodePermissionMode`) makes the mode actually take effect\n // by pointing a per-session `CLAUDE_CONFIG_DIR` at a throwaway temp dir\n // containing `{\"permissions\":{\"defaultMode\":\"<value>\"}}` — reading the\n // same `--permission-mode <value>` pair declared here as its one source\n // of truth for the value vocabulary. `bin_args_append` is kept for a\n // future wrapper version that might start reading argv.\n //\n // Known limitation (empirically confirmed, not just theorized): a target\n // repo that commits its own escalated `.claude/settings.json`\n // `permissions.defaultMode` (e.g. \"bypassPermissions\") does NOT let the\n // repo's escalation win — the wrapper's `filterEscalatingDefaultMode`\n // strips an escalating project-tier value entirely — but it also means\n // OUR requested mode is defeated in the same merge pass (project tier\n // out-prioritizes the user tier for the raw merge, before the filter\n // ever runs). The net effect for that adversarial case is the session\n // falls back to \"default\" (normal per-action prompting) rather than the\n // requested mode. This does not reintroduce the original bug (silent,\n // zero-prompt writes) — it just doesn't guarantee plan-only reasoning\n // against a repo actively trying to escalate its own trust level.\n modes: [\n { id: \"default\", description: \"Standard interactive mode.\" },\n {\n id: \"lean\",\n description:\n \"Drop Claude Code's bundled skills and workflows from context (built-in slash \" +\n \"commands stay typable but are hidden from the model). Plugins, project \" +\n \"`.claude/skills/`, and `.claude/commands/` are unaffected. The ACP wrapper has \" +\n \"no CLI flag for this — the underlying claude binary reads \" +\n \"CLAUDE_CODE_DISABLE_BUNDLED_SKILLS directly, so this mode is env-only.\",\n env: { CLAUDE_CODE_DISABLE_BUNDLED_SKILLS: \"1\" },\n },\n {\n id: \"plan\",\n description:\n \"Plan-only mode — Claude Code reasons and proposes a plan, requesting explicit \" +\n \"approval before writing files or running commands. Applied via a per-session \" +\n \"CLAUDE_CONFIG_DIR override (see comment above `modes`); can be defeated by a \" +\n \"target repo's own committed, escalated .claude/settings.json.\",\n bin_args_append: [\"--permission-mode\", \"plan\"],\n },\n {\n id: \"accept-edits\",\n description: \"Auto-accept file edits; commands still prompt.\",\n bin_args_append: [\"--permission-mode\", \"acceptEdits\"],\n },\n {\n id: \"bypass-permissions\",\n description:\n \"Skip all permission prompts. Use only in trusted automation contexts.\",\n bin_args_append: [\"--permission-mode\", \"bypassPermissions\"],\n },\n // ── Gateway modes ───────────────────────────────────────────────\n // The claude binary honors ANTHROPIC_BASE_URL + ANTHROPIC_AUTH_TOKEN,\n // so it can front any Anthropic-compatible gateway (Moonshot, OpenRouter,\n // LiteLLM, claude-code-router) the same way @agentproto/adapter-claude-sdk\n // does. These modes pre-wire the endpoint and — critically — scrub the\n // ambient ANTHROPIC_API_KEY plus the cloud-provider redirect toggles\n // (CLAUDE_CODE_USE_BEDROCK/_VERTEX/…) via env_unset so the real Anthropic\n // credential can neither leak to nor 401 against a third-party host, and\n // a leftover cloud toggle can't override the gateway base_url. The\n // operator supplies the gateway key via the `auth_token` option (injected\n // as ANTHROPIC_AUTH_TOKEN, sent as `Authorization: Bearer`) and picks a\n // model via `model` (e.g. 'kimi-k2.7-code', 'z-ai/glm-5.2') — the ACP\n // wrapper applies it via session/set_config_option after newSession.\n {\n id: ANTHROPIC_GATEWAY_PRESETS.moonshot.id,\n description:\n \"Moonshot (Kimi) gateway. Pre-wires ANTHROPIC_BASE_URL to Moonshot's \" +\n \"Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY \" +\n \"so it can't leak to the third-party host. Supply the Moonshot key via \" +\n \"the `auth_token` option and pick a model via `model` (conventional: \" +\n \"'kimi-k2.7-code'). Without auth_token the spawn has no credentials and \" +\n \"fails cleanly — the real Anthropic key is never sent.\",\n env: {\n ANTHROPIC_BASE_URL: ANTHROPIC_GATEWAY_PRESETS.moonshot.baseUrl,\n },\n env_unset: CLAUDE_CODE_GATEWAY_ENV_UNSET,\n },\n {\n id: ANTHROPIC_GATEWAY_PRESETS.openrouter.id,\n description:\n \"OpenRouter gateway. Pre-wires ANTHROPIC_BASE_URL to OpenRouter's \" +\n \"Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY \" +\n \"(same auth-hygiene rationale as `moonshot`). Pick a model via `model` \" +\n \"(e.g. 'z-ai/glm-5.2', 'deepseek/deepseek-v4-pro', 'moonshotai/kimi-k2') \" +\n \"and supply the OpenRouter key via `auth_token`.\",\n env: {\n ANTHROPIC_BASE_URL: ANTHROPIC_GATEWAY_PRESETS.openrouter.baseUrl,\n },\n env_unset: CLAUDE_CODE_GATEWAY_ENV_UNSET,\n },\n {\n id: ANTHROPIC_GATEWAY_PRESETS.deepseek.id,\n description:\n \"DeepSeek gateway. Pre-wires ANTHROPIC_BASE_URL to DeepSeek's \" +\n \"Anthropic-compatible endpoint and scrubs the ambient ANTHROPIC_API_KEY \" +\n \"(same auth-hygiene rationale as `moonshot`/`openrouter`). Pick a model \" +\n \"via `model` (conventional: 'deepseek-v4-pro', 'deepseek-v4-flash') and \" +\n \"supply the DeepSeek key via `auth_token`.\",\n env: {\n ANTHROPIC_BASE_URL: ANTHROPIC_GATEWAY_PRESETS.deepseek.baseUrl,\n },\n env_unset: CLAUDE_CODE_GATEWAY_ENV_UNSET,\n },\n ],\n options: [\n {\n id: \"model\",\n // string (not enum) so any valid Anthropic model ID is accepted\n // without requiring a code change to expand the list. Applied via\n // ACP session/set_config_option(configId:\"model\") after newSession\n // — the claude-agent-acp wrapper does not forward its own CLI args\n // to the underlying claude process, so bin_args_template alone\n // cannot select the model.\n type: \"string\" as const,\n description:\n \"Anthropic model ID or wrapper alias (e.g. 'claude-opus-4-8', \" +\n \"'claude-sonnet-5', 'sonnet', 'opus'). Applied via ACP \" +\n \"session/set_config_option after the session is created; an id the \" +\n \"wrapper can't resolve is warned about and ignored (the session keeps \" +\n \"the claude-code default). Omit to use the claude-code default.\",\n },\n {\n id: \"effort\",\n type: \"enum\" as const,\n // Effort is model-dependent: the same label maps to different\n // underlying compute budgets across models, and the model's own\n // default differs (Sonnet 4.6 / Opus 4.8 default to \"high\";\n // Opus 4.7 defaults to \"xhigh\"). \"max\" and \"ultracode\" are\n // session-only — not valid in persisted settings. Omit to keep\n // the model's own default rather than hardcoding one here.\n enum: [\"low\", \"medium\", \"high\", \"xhigh\", \"max\", \"ultracode\"],\n description:\n \"Reasoning effort level. Model-dependent: the same label ≠ the same \" +\n \"compute budget across models, and defaults differ by model \" +\n \"(e.g. Sonnet 4.6 / Opus 4.8 default to 'high'; Opus 4.7 to 'xhigh'). \" +\n \"'max' and 'ultracode' are session-only. Omit to keep the model's own default.\",\n },\n {\n id: \"max_turns\",\n type: \"integer\" as const,\n min: 1,\n max: 200,\n description:\n \"Hard cap on tool-use turns within a single send. Claude Code stops after this many cycles.\",\n bin_args_template: [\"--max-turns\", \"{value}\"],\n },\n {\n id: \"base_url\",\n // Injected into the child env as ANTHROPIC_BASE_URL — the claude binary\n // honors it, so this fronts real Anthropic, Bedrock/Vertex/Azure, or an\n // Anthropic-compatible gateway (LiteLLM / claude-code-router / Moonshot\n // / OpenRouter). Auto-scrubs the ambient ANTHROPIC_API_KEY + cloud\n // redirect toggles the moment it's set (symmetric with the moonshot/\n // openrouter modes and with claude-sdk's buildQueryOptions scrub) so the\n // real Anthropic credential can never leak to a third-party host — pair\n // with `auth_token` to supply the gateway key. A base_url pointed at a\n // real-Anthropic mirror that still wants the ambient key is the one\n // shape this breaks; that's an acceptable trade for the default being\n // leak-safe (matches claude-sdk).\n type: \"string\" as const,\n description:\n \"Custom Anthropic base URL. Injected as ANTHROPIC_BASE_URL in the \" +\n \"child env — front real Anthropic, Bedrock/Vertex/Azure, or an \" +\n \"Anthropic-compatible gateway. Auto-scrubs the ambient \" +\n \"ANTHROPIC_API_KEY + cloud redirect toggles when set (so the real \" +\n \"key can't leak to a third-party host) — pair with `auth_token` to \" +\n \"supply the gateway credential. For Moonshot/OpenRouter the dedicated \" +\n \"modes pre-wire the URL too. Omit to use the default endpoint.\",\n env: { ANTHROPIC_BASE_URL: \"{value}\" },\n env_unset: CLAUDE_CODE_GATEWAY_ENV_UNSET,\n },\n {\n id: \"auth_token\",\n // Injected into the child env as ANTHROPIC_AUTH_TOKEN — the claude\n // binary sends it as `Authorization: Bearer <token>`, which\n // Anthropic-compatible gateways (Moonshot, OpenRouter) accept. Pair\n // with base_url (or a gateway mode) for a per-spawn key instead of the\n // ambient ANTHROPIC_API_KEY.\n type: \"string\" as const,\n description:\n \"Bearer token for the Anthropic API or a compatible gateway. Injected \" +\n \"as ANTHROPIC_AUTH_TOKEN in the child env (sent as `Authorization: \" +\n \"Bearer`). Pair with `base_url` (or a `moonshot`/`openrouter` mode) \" +\n \"to target a gateway with a per-spawn key instead of the ambient \" +\n \"ANTHROPIC_API_KEY. Omit to use ANTHROPIC_API_KEY from the environment.\",\n env: { ANTHROPIC_AUTH_TOKEN: \"{value}\" },\n },\n ],\n continuation: {\n // native-resume: each turn cold-spawns claude, then ACP `loadSession`\n // reattaches to the saved sessionId. Survives api restarts, sandbox\n // reaps, multi-machine — claude reads its own JSONL session store.\n // Requires the host to register `configureNativeResume({load, save})`\n // hooks; without them the strategy degrades to per-spawn behaviour\n // (no continuity).\n //\n // pinned-session is still supported as a fallback for hosts that\n // haven't wired the resume hooks yet — same warm-process semantics\n // as pre-AIP-45-extension behaviour.\n default: \"native-resume\",\n supported: [\"native-resume\", \"pinned-session\", \"transcript\", \"none\"],\n pinned_session: {\n idle_timeout_ms: 1_800_000,\n key_scope: [\"conversation\", \"operator\"],\n },\n },\n tags: [\"claude-code\", \"anthropic\", \"acp\", \"agent-runtime\", \"coding\"],\n metadata: {\n // Opts claude-code into `agentproto install skill/<slug>` fan-out (no\n // --target given). Claude Code skills install as a whole plugin\n // bundle, not per-skill drops — `unit: \"whole-pack\"` tells the\n // fan-out dispatcher to emit the pack once, not once per requested\n // skill slug. See\n // packages/cli/src/commands/skill-install/types.ts `AdapterSkillsTarget`.\n skills: {\n format: \"claude-plugin\",\n unit: \"whole-pack\",\n outDir: \"~/.claude/plugins/agentproto\",\n },\n },\n})\n\nexport function claudeCodeRuntime(): AgentCliRuntime {\n return createAgentCliRuntime(claudeCode)\n}\n\nexport type { AgentCliHandle, AgentCliRuntime }\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentproto/adapter-claude-code",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "@agentproto/adapter-claude-code — AIP-45 AGENT-CLI adapter for Anthropic's Claude Code via @agentclientprotocol/claude-agent-acp. Spawns the ACP wrapper and drives Claude Code as an agentproto agent CLI.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agentproto",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@agentproto/driver-agent-cli": "0.
|
|
44
|
+
"@agentproto/driver-agent-cli": "0.4.0",
|
|
45
|
+
"@agentproto/provider-presets": "0.2.0"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@types/node": "^25.6.2",
|