@autohq/cli 0.1.121 → 0.1.122
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/agent-bridge.js +9 -3
- package/dist/index.js +9 -3
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -19528,7 +19528,12 @@ var AgentBridgeMcpServerConfigSchema = external_exports.object({
|
|
|
19528
19528
|
var AgentBridgeClaudeConfigSchema = external_exports.object({
|
|
19529
19529
|
cwd: external_exports.string().trim().min(1).optional(),
|
|
19530
19530
|
env: external_exports.record(external_exports.string().trim().min(1), external_exports.string()),
|
|
19531
|
-
mcpServers: external_exports.record(external_exports.string().trim().min(1), AgentBridgeMcpServerConfigSchema).optional()
|
|
19531
|
+
mcpServers: external_exports.record(external_exports.string().trim().min(1), AgentBridgeMcpServerConfigSchema).optional(),
|
|
19532
|
+
// Profile instructions, delivered as a system-prompt append (the Claude
|
|
19533
|
+
// Agent SDK's `{ type: "preset", preset: "claude_code", append }`) so an
|
|
19534
|
+
// agent's identity is part of its frame rather than its first user message.
|
|
19535
|
+
// Optional and strip-tolerant per the bootstrap-skew contract above.
|
|
19536
|
+
systemPromptAppend: external_exports.string().trim().min(1).optional()
|
|
19532
19537
|
});
|
|
19533
19538
|
var RuntimeBridgeBootstrapPlaintextSchema = external_exports.object({
|
|
19534
19539
|
version: external_exports.literal(1),
|
|
@@ -26254,7 +26259,7 @@ Object.assign(lookup, {
|
|
|
26254
26259
|
// package.json
|
|
26255
26260
|
var package_default = {
|
|
26256
26261
|
name: "@autohq/cli",
|
|
26257
|
-
version: "0.1.
|
|
26262
|
+
version: "0.1.122",
|
|
26258
26263
|
license: "SEE LICENSE IN README.md",
|
|
26259
26264
|
publishConfig: {
|
|
26260
26265
|
access: "public"
|
|
@@ -46420,7 +46425,8 @@ function claudeAgentOptions(config2, input = {}) {
|
|
|
46420
46425
|
...config2.mcpServers ? { mcpServers: config2.mcpServers, strictMcpConfig: true } : {},
|
|
46421
46426
|
systemPrompt: {
|
|
46422
46427
|
type: "preset",
|
|
46423
|
-
preset: "claude_code"
|
|
46428
|
+
preset: "claude_code",
|
|
46429
|
+
...config2.systemPromptAppend ? { append: config2.systemPromptAppend } : {}
|
|
46424
46430
|
},
|
|
46425
46431
|
settingSources: [],
|
|
46426
46432
|
tools: {
|
package/dist/index.js
CHANGED
|
@@ -21220,7 +21220,7 @@ var init_package = __esm({
|
|
|
21220
21220
|
"package.json"() {
|
|
21221
21221
|
package_default = {
|
|
21222
21222
|
name: "@autohq/cli",
|
|
21223
|
-
version: "0.1.
|
|
21223
|
+
version: "0.1.122",
|
|
21224
21224
|
license: "SEE LICENSE IN README.md",
|
|
21225
21225
|
publishConfig: {
|
|
21226
21226
|
access: "public"
|
|
@@ -27899,7 +27899,12 @@ var AgentBridgeMcpServerConfigSchema = external_exports.object({
|
|
|
27899
27899
|
var AgentBridgeClaudeConfigSchema = external_exports.object({
|
|
27900
27900
|
cwd: external_exports.string().trim().min(1).optional(),
|
|
27901
27901
|
env: external_exports.record(external_exports.string().trim().min(1), external_exports.string()),
|
|
27902
|
-
mcpServers: external_exports.record(external_exports.string().trim().min(1), AgentBridgeMcpServerConfigSchema).optional()
|
|
27902
|
+
mcpServers: external_exports.record(external_exports.string().trim().min(1), AgentBridgeMcpServerConfigSchema).optional(),
|
|
27903
|
+
// Profile instructions, delivered as a system-prompt append (the Claude
|
|
27904
|
+
// Agent SDK's `{ type: "preset", preset: "claude_code", append }`) so an
|
|
27905
|
+
// agent's identity is part of its frame rather than its first user message.
|
|
27906
|
+
// Optional and strip-tolerant per the bootstrap-skew contract above.
|
|
27907
|
+
systemPromptAppend: external_exports.string().trim().min(1).optional()
|
|
27903
27908
|
});
|
|
27904
27909
|
var RuntimeBridgeBootstrapPlaintextSchema = external_exports.object({
|
|
27905
27910
|
version: external_exports.literal(1),
|
|
@@ -28657,7 +28662,8 @@ function claudeAgentOptions(config2, input = {}) {
|
|
|
28657
28662
|
...config2.mcpServers ? { mcpServers: config2.mcpServers, strictMcpConfig: true } : {},
|
|
28658
28663
|
systemPrompt: {
|
|
28659
28664
|
type: "preset",
|
|
28660
|
-
preset: "claude_code"
|
|
28665
|
+
preset: "claude_code",
|
|
28666
|
+
...config2.systemPromptAppend ? { append: config2.systemPromptAppend } : {}
|
|
28661
28667
|
},
|
|
28662
28668
|
settingSources: [],
|
|
28663
28669
|
tools: {
|