@ainative/cody-cli 0.3.9 → 0.4.1

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.
Files changed (2) hide show
  1. package/dist/cli.js +92 -89
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -57028,7 +57028,7 @@ function getValidationTip(context) {
57028
57028
  }
57029
57029
  return tip;
57030
57030
  }
57031
- var DOCUMENTATION_BASE = "https://code.claude.com/docs/en", TIP_MATCHERS, PATH_DOC_LINKS;
57031
+ var DOCUMENTATION_BASE = "https://ainative.studio/docs/cody-cli/docs/en", TIP_MATCHERS, PATH_DOC_LINKS;
57032
57032
  var init_validationTips = __esm(() => {
57033
57033
  TIP_MATCHERS = [
57034
57034
  {
@@ -108134,7 +108134,7 @@ function getCanonicalName(fullModelName) {
108134
108134
  function getClaudeAiUserDefaultModelDescription(fastMode = false) {
108135
108135
  if (isMaxSubscriber() || isTeamPremiumSubscriber()) {
108136
108136
  if (isOpus1mMergeEnabled()) {
108137
- return `Opus 4.6 with 1M context \xB7 Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ""}`;
108137
+ return `DeepSeek R1 -- Reasoning \xB7 Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ""}`;
108138
108138
  }
108139
108139
  return `Opus 4.6 \xB7 Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ""}`;
108140
108140
  }
@@ -145549,7 +145549,7 @@ function getSubscriptionName() {
145549
145549
  case "pro":
145550
145550
  return "AINative Pro";
145551
145551
  default:
145552
- return "Claude API";
145552
+ return "AINative API";
145553
145553
  }
145554
145554
  }
145555
145555
  function isUsing3PServices() {
@@ -145854,7 +145854,7 @@ function getMCPUserAgent() {
145854
145854
  return `claude-code/${"0.1.0"}${suffix}`;
145855
145855
  }
145856
145856
  function getWebFetchUserAgent() {
145857
- return `Claude-User (${getCodyUserAgent()}; +https://support.anthropic.com/)`;
145857
+ return `Cody-User (${getCodyUserAgent()}; +https://support.anthropic.com/)`;
145858
145858
  }
145859
145859
  function getAuthHeaders2() {
145860
145860
  if (isClaudeAISubscriber()) {
@@ -145939,7 +145939,7 @@ function getEmail() {
145939
145939
  return;
145940
145940
  }
145941
145941
  if (process.env.COO_CREATOR) {
145942
- return `${process.env.COO_CREATOR}@anthropic.com`;
145942
+ return `${process.env.COO_CREATOR}@ainative.studio`;
145943
145943
  }
145944
145944
  return;
145945
145945
  }
@@ -145952,7 +145952,7 @@ async function getEmailAsync() {
145952
145952
  return;
145953
145953
  }
145954
145954
  if (process.env.COO_CREATOR) {
145955
- return `${process.env.COO_CREATOR}@anthropic.com`;
145955
+ return `${process.env.COO_CREATOR}@ainative.studio`;
145956
145956
  }
145957
145957
  return getGitEmail();
145958
145958
  }
@@ -199684,7 +199684,7 @@ var init_prompt5 = __esm(() => {
199684
199684
  // src/tools/AgentTool/built-in/claudeCodeGuideAgent.ts
199685
199685
  function getClaudeCodeGuideBasePrompt() {
199686
199686
  const localSearchHint = hasEmbeddedSearchTools() ? `${FILE_READ_TOOL_NAME}, \`find\`, and \`grep\`` : `${FILE_READ_TOOL_NAME}, ${GLOB_TOOL_NAME}, and ${GREP_TOOL_NAME}`;
199687
- return `You are the Cody guide agent. Your primary responsibility is helping users understand and use Cody CLI, the Claude Agent SDK, and the Claude API (formerly the AINative API) effectively.
199687
+ return `You are the Cody guide agent. Your primary responsibility is helping users understand and use Cody CLI, the Claude Agent SDK, and the AINative API (formerly the AINative API) effectively.
199688
199688
 
199689
199689
  **Your expertise spans three domains:**
199690
199690
 
@@ -199692,7 +199692,7 @@ function getClaudeCodeGuideBasePrompt() {
199692
199692
 
199693
199693
  2. **Claude Agent SDK**: A framework for building custom AI agents based on Cody CLI technology. Available for Node.js/TypeScript and Python.
199694
199694
 
199695
- 3. **Claude API**: The Claude API (formerly known as the AINative API) for direct model interaction, tool use, and integrations.
199695
+ 3. **AINative API**: The AINative API (formerly known as the AINative API) for direct model interaction, tool use, and integrations.
199696
199696
 
199697
199697
  **Documentation sources:**
199698
199698
 
@@ -199714,9 +199714,9 @@ function getClaudeCodeGuideBasePrompt() {
199714
199714
  - MCP integration in agents
199715
199715
  - Hosting and deployment
199716
199716
  - Cost tracking and context management
199717
- Note: Agent SDK docs are part of the Claude API documentation at the same URL.
199717
+ Note: Agent SDK docs are part of the AINative API documentation at the same URL.
199718
199718
 
199719
- - **Claude API docs** (${CDP_DOCS_MAP_URL}): Fetch this for questions about the Claude API (formerly the AINative API), including:
199719
+ - **AINative API docs** (${CDP_DOCS_MAP_URL}): Fetch this for questions about the AINative API (formerly the AINative API), including:
199720
199720
  - Messages API and streaming
199721
199721
  - Tool use (function calling) and Anthropic-defined tools (computer use, code execution, web search, text editor, bash, programmatic tool calling, tool search tool, context editing, Files API, structured outputs)
199722
199722
  - Vision, PDF support, and citations
@@ -199748,7 +199748,7 @@ function getFeedbackGuideline() {
199748
199748
  }
199749
199749
  return "- When you cannot find an answer or the feature doesn't exist, direct the user to use /feedback to report a feature request or bug";
199750
199750
  }
199751
- var CLAUDE_CODE_DOCS_MAP_URL = "https://code.claude.com/docs/en/claude_code_docs_map.md", CDP_DOCS_MAP_URL = "https://platform.claude.com/llms.txt", CLAUDE_CODE_GUIDE_AGENT_TYPE = "claude-code-guide", CLAUDE_CODE_GUIDE_AGENT;
199751
+ var CLAUDE_CODE_DOCS_MAP_URL = "https://ainative.studio/docs/cody-cli/docs/en/claude_code_docs_map.md", CDP_DOCS_MAP_URL = "https://ainative.studio/docs/cody-cli/llms.txt", CLAUDE_CODE_GUIDE_AGENT_TYPE = "cody-guide", CLAUDE_CODE_GUIDE_AGENT;
199752
199752
  var init_claudeCodeGuideAgent = __esm(() => {
199753
199753
  init_prompt2();
199754
199754
  init_prompt();
@@ -199759,7 +199759,7 @@ var init_claudeCodeGuideAgent = __esm(() => {
199759
199759
  init_slowOperations();
199760
199760
  CLAUDE_CODE_GUIDE_AGENT = {
199761
199761
  agentType: CLAUDE_CODE_GUIDE_AGENT_TYPE,
199762
- whenToUse: `Use this agent when the user asks questions ("Can Claude...", "Does Claude...", "How do I...") about: (1) Cody CLI (the CLI tool) - features, hooks, slash commands, MCP servers, settings, IDE integrations, keyboard shortcuts; (2) Claude Agent SDK - building custom agents; (3) Claude API (formerly Anthropic API) - API usage, tool use, Anthropic SDK usage. **IMPORTANT:** Before spawning a new agent, check if there is already a running or recently completed claude-code-guide agent that you can continue via ${SEND_MESSAGE_TOOL_NAME}.`,
199762
+ whenToUse: `Use this agent when the user asks questions ("Can Cody...", "Does Cody...", "How do I...") about: (1) Cody CLI (the CLI tool) - features, hooks, slash commands, MCP servers, settings, IDE integrations, keyboard shortcuts; (2) Claude Agent SDK - building custom agents; (3) AINative API (formerly Anthropic API) - API usage, tool use, Anthropic SDK usage. **IMPORTANT:** Before spawning a new agent, check if there is already a running or recently completed claude-code-guide agent that you can continue via ${SEND_MESSAGE_TOOL_NAME}.`,
199763
199763
  tools: hasEmbeddedSearchTools() ? [
199764
199764
  BASH_TOOL_NAME,
199765
199765
  FILE_READ_TOOL_NAME,
@@ -200144,7 +200144,7 @@ Guidelines:
200144
200144
  - Return a summary of what was configured, including the name of the script file if used
200145
200145
  - If the script includes git commands, they should skip optional locks
200146
200146
  - IMPORTANT: At the end of your response, inform the parent agent that this "statusline-setup" agent must be used for further status line changes.
200147
- Also ensure that the user is informed that they can ask Claude to continue to make changes to the status line.
200147
+ Also ensure that the user is informed that they can ask Cody to continue to make changes to the status line.
200148
200148
  `, STATUSLINE_SETUP_AGENT;
200149
200149
  var init_statuslineSetup = __esm(() => {
200150
200150
  STATUSLINE_SETUP_AGENT = {
@@ -244081,7 +244081,7 @@ function parseMcpConfig(params) {
244081
244081
  ...filePath && { file: filePath },
244082
244082
  path: `mcpServers.${name3}`,
244083
244083
  message: `Windows requires 'cmd /c' wrapper to execute npx`,
244084
- suggestion: `Change command to "cmd" with args ["/c", "npx", ...]. See: https://code.claude.com/docs/en/mcp#configure-mcp-servers`,
244084
+ suggestion: `Change command to "cmd" with args ["/c", "npx", ...]. See: https://ainative.studio/docs/cody-cli/docs/en/mcp#configure-mcp-servers`,
244085
244085
  mcpErrorMetadata: {
244086
244086
  scope,
244087
244087
  serverName: name3,
@@ -311166,7 +311166,7 @@ function ConsoleOAuthFlow({
311166
311166
  const settings = getSettings_DEPRECATED() || {};
311167
311167
  const forceLoginMethod = forceLoginMethodProp ?? settings.forceLoginMethod;
311168
311168
  const orgUUID = settings.forceLoginOrgUUID;
311169
- const forcedMethodMessage = forceLoginMethod === "claudeai" ? "Login method pre-selected: Subscription Plan (AINative Pro/Max)" : forceLoginMethod === "console" ? "Login method pre-selected: API Usage Billing (Anthropic Console)" : null;
311169
+ const forcedMethodMessage = forceLoginMethod === "claudeai" ? "Login method pre-selected: Subscription Plan (AINative Pro/Max)" : forceLoginMethod === "console" ? "Login method pre-selected: AINative API (Anthropic Console)" : null;
311170
311170
  const terminal = useTerminalNotification();
311171
311171
  const [oauthStatus, setOAuthStatus] = import_react59.useState(() => {
311172
311172
  if (mode === "setup-token") {
@@ -311666,8 +311666,8 @@ function OAuthStatusMessage(t0) {
311666
311666
  "\xB7 Amazon Bedrock:",
311667
311667
  " ",
311668
311668
  /* @__PURE__ */ jsx_dev_runtime71.jsxDEV(Link, {
311669
- url: "https://code.claude.com/docs/en/amazon-bedrock",
311670
- children: "https://code.claude.com/docs/en/amazon-bedrock"
311669
+ url: "https://ainative.studio/docs/cody-cli/docs/en/amazon-bedrock",
311670
+ children: "https://ainative.studio/docs/cody-cli/docs/en/amazon-bedrock"
311671
311671
  }, undefined, false, undefined, this)
311672
311672
  ]
311673
311673
  }, undefined, true, undefined, this);
@@ -311682,8 +311682,8 @@ function OAuthStatusMessage(t0) {
311682
311682
  "\xB7 Microsoft Foundry:",
311683
311683
  " ",
311684
311684
  /* @__PURE__ */ jsx_dev_runtime71.jsxDEV(Link, {
311685
- url: "https://code.claude.com/docs/en/microsoft-foundry",
311686
- children: "https://code.claude.com/docs/en/microsoft-foundry"
311685
+ url: "https://ainative.studio/docs/cody-cli/docs/en/microsoft-foundry",
311686
+ children: "https://ainative.studio/docs/cody-cli/docs/en/microsoft-foundry"
311687
311687
  }, undefined, false, undefined, this)
311688
311688
  ]
311689
311689
  }, undefined, true, undefined, this);
@@ -311705,8 +311705,8 @@ function OAuthStatusMessage(t0) {
311705
311705
  "\xB7 Vertex AI:",
311706
311706
  " ",
311707
311707
  /* @__PURE__ */ jsx_dev_runtime71.jsxDEV(Link, {
311708
- url: "https://code.claude.com/docs/en/google-vertex-ai",
311709
- children: "https://code.claude.com/docs/en/google-vertex-ai"
311708
+ url: "https://ainative.studio/docs/cody-cli/docs/en/google-vertex-ai",
311709
+ children: "https://ainative.studio/docs/cody-cli/docs/en/google-vertex-ai"
311710
311710
  }, undefined, false, undefined, this)
311711
311711
  ]
311712
311712
  }, undefined, true, undefined, this)
@@ -349550,7 +349550,7 @@ var PREAPPROVED_HOSTS, HOSTNAME_ONLY, PATH_PREFIXES;
349550
349550
  var init_preapproved = __esm(() => {
349551
349551
  PREAPPROVED_HOSTS = new Set([
349552
349552
  "platform.claude.com",
349553
- "code.claude.com",
349553
+ "ainative.studio/docs/cody-cli",
349554
349554
  "modelcontextprotocol.io",
349555
349555
  "github.com/anthropics",
349556
349556
  "agentskills.io",
@@ -371715,8 +371715,8 @@ function getSonnet46_1MOption() {
371715
371715
  return {
371716
371716
  value: is3P ? getModelStrings2().sonnet46 + "[1m]" : "sonnet[1m]",
371717
371717
  label: "Sonnet (1M context)",
371718
- description: `Sonnet 4.6 for long sessions${is3P ? "" : ` \xB7 ${formatModelPricing(COST_TIER_3_15)}`}`,
371719
- descriptionForModel: "Sonnet 4.6 with 1M context window - for long sessions with large codebases"
371718
+ description: `Gemma 9B -- General text and reasoning${is3P ? "" : ` \xB7 ${formatModelPricing(COST_TIER_3_15)}`}`,
371719
+ descriptionForModel: "Gemma 9B -- Text and reasoning window - for long sessions with large codebases"
371720
371720
  };
371721
371721
  }
371722
371722
  function getOpus46_1MOption(fastMode = false) {
@@ -371724,8 +371724,8 @@ function getOpus46_1MOption(fastMode = false) {
371724
371724
  return {
371725
371725
  value: is3P ? getModelStrings2().opus46 + "[1m]" : "opus[1m]",
371726
371726
  label: "Opus (1M context)",
371727
- description: `Opus 4.6 for long sessions${getOpus46PricingSuffix(fastMode)}`,
371728
- descriptionForModel: "Opus 4.6 with 1M context window - for long sessions with large codebases"
371727
+ description: `DeepSeek R1 -- Step-by-step reasoning${getOpus46PricingSuffix(fastMode)}`,
371728
+ descriptionForModel: "DeepSeek R1 -- Reasoning window - for long sessions with large codebases"
371729
371729
  };
371730
371730
  }
371731
371731
  function getCustomHaikuOption() {
@@ -371754,7 +371754,7 @@ function getHaiku35Option() {
371754
371754
  return {
371755
371755
  value: "haiku",
371756
371756
  label: "Haiku",
371757
- description: `Haiku 3.5 for simple tasks${is3P ? "" : ` \xB7 ${formatModelPricing(COST_HAIKU_35)}`}`,
371757
+ description: `Qwen Coder 7B -- Fast${is3P ? "" : ` \xB7 ${formatModelPricing(COST_HAIKU_35)}`}`,
371758
371758
  descriptionForModel: "Haiku 3.5 - faster and lower cost, but less capable than Sonnet. Use for simple tasks."
371759
371759
  };
371760
371760
  }
@@ -371775,7 +371775,7 @@ function getMaxSonnet46_1MOption() {
371775
371775
  return {
371776
371776
  value: "sonnet[1m]",
371777
371777
  label: "Sonnet (1M context)",
371778
- description: `Sonnet 4.6 with 1M context${billingInfo}${is3P ? "" : ` \xB7 ${formatModelPricing(COST_TIER_3_15)}`}`
371778
+ description: `Gemma 9B -- Text and reasoning${billingInfo}${is3P ? "" : ` \xB7 ${formatModelPricing(COST_TIER_3_15)}`}`
371779
371779
  };
371780
371780
  }
371781
371781
  function getMaxOpus46_1MOption(fastMode = false) {
@@ -371783,7 +371783,7 @@ function getMaxOpus46_1MOption(fastMode = false) {
371783
371783
  return {
371784
371784
  value: "opus[1m]",
371785
371785
  label: "Opus (1M context)",
371786
- description: `Opus 4.6 with 1M context${billingInfo}${getOpus46PricingSuffix(fastMode)}`
371786
+ description: `DeepSeek R1 -- Reasoning${billingInfo}${getOpus46PricingSuffix(fastMode)}`
371787
371787
  };
371788
371788
  }
371789
371789
  function getMergedOpus1MOption(fastMode = false) {
@@ -371791,15 +371791,15 @@ function getMergedOpus1MOption(fastMode = false) {
371791
371791
  return {
371792
371792
  value: is3P ? getModelStrings2().opus46 + "[1m]" : "opus[1m]",
371793
371793
  label: "Opus (1M context)",
371794
- description: `Opus 4.6 with 1M context \xB7 Most capable for complex work${!is3P && fastMode ? getOpus46PricingSuffix(fastMode) : ""}`,
371795
- descriptionForModel: "Opus 4.6 with 1M context - most capable for complex work"
371794
+ description: `DeepSeek R1 -- Reasoning \xB7 Most capable for complex work${!is3P && fastMode ? getOpus46PricingSuffix(fastMode) : ""}`,
371795
+ descriptionForModel: "DeepSeek R1 -- Reasoning - most capable for complex work"
371796
371796
  };
371797
371797
  }
371798
371798
  function getOpusPlanOption() {
371799
371799
  return {
371800
371800
  value: "opusplan",
371801
371801
  label: "Opus Plan Mode",
371802
- description: "Use Opus 4.6 in plan mode, Sonnet 4.6 otherwise"
371802
+ description: "Use best model for planning, fast model otherwise"
371803
371803
  };
371804
371804
  }
371805
371805
  function getModelOptionsBase(fastMode = false) {
@@ -379406,7 +379406,7 @@ function getAttributionTexts() {
379406
379406
  const isKnownPublicModel = getPublicModelDisplayName(model) !== null;
379407
379407
  const modelName = isInternalModelRepoCached() || isKnownPublicModel ? getPublicModelName(model) : "Claude Opus 4.6";
379408
379408
  const defaultAttribution = `\uD83E\uDD16 Generated with [Cody](${PRODUCT_URL})`;
379409
- const defaultCommit = `Co-Authored-By: ${modelName} <noreply@anthropic.com>`;
379409
+ const defaultCommit = `Co-Authored-By: ${modelName} <noreply@ainative.studio>`;
379410
379410
  const settings = getInitialSettings();
379411
379411
  if (settings.attribution) {
379412
379412
  return {
@@ -401916,7 +401916,7 @@ function getAssistantMessageFromError(error43, model, options) {
401916
401916
  const innerMessage = stripped.match(/"message"\s*:\s*"([^"]*)"/)?.[1];
401917
401917
  const detail = innerMessage || stripped;
401918
401918
  return createAssistantAPIErrorMessage({
401919
- content: `${API_ERROR_MESSAGE_PREFIX}: Request rejected (429) \xB7 ${detail || "this may be a temporary capacity issue \u2014 check status.anthropic.com"}`,
401919
+ content: `${API_ERROR_MESSAGE_PREFIX}: Request rejected (429) \xB7 ${detail || "this may be a temporary capacity issue \u2014 check status.ainative.studio"}`,
401920
401920
  error: "rate_limit"
401921
401921
  });
401922
401922
  }
@@ -413805,7 +413805,7 @@ function ModelPicker(t0) {
413805
413805
  } else {
413806
413806
  t15 = $3[41];
413807
413807
  }
413808
- const t16 = headerText ?? "Switch between Claude models. Applies to this session and future Cody sessions. For other/previous model names, specify with --model.";
413808
+ const t16 = headerText ?? "Switch between models. Applies to this session and future Cody sessions. For other/previous model names, specify with --model.";
413809
413809
  let t17;
413810
413810
  if ($3[42] !== t16) {
413811
413811
  t17 = /* @__PURE__ */ jsx_dev_runtime172.jsxDEV(ThemedText, {
@@ -414262,7 +414262,7 @@ function ClaudeMdExternalIncludesDialog(t0) {
414262
414262
  "Important: Only use Cody with files you trust. Accessing untrusted files may pose security risks",
414263
414263
  " ",
414264
414264
  /* @__PURE__ */ jsx_dev_runtime173.jsxDEV(Link, {
414265
- url: "https://code.claude.com/docs/en/security"
414265
+ url: "https://ainative.studio/docs/cody-cli/security"
414266
414266
  }, undefined, false, undefined, this),
414267
414267
  " "
414268
414268
  ]
@@ -421103,8 +421103,8 @@ function McpParsingWarnings() {
421103
421103
  "For help configuring MCP servers, see:",
421104
421104
  " ",
421105
421105
  /* @__PURE__ */ jsx_dev_runtime193.jsxDEV(Link, {
421106
- url: "https://code.claude.com/docs/en/mcp",
421107
- children: "https://code.claude.com/docs/en/mcp"
421106
+ url: "https://ainative.studio/docs/cody-cli/docs/en/mcp",
421107
+ children: "https://ainative.studio/docs/cody-cli/docs/en/mcp"
421108
421108
  }, undefined, false, undefined, this)
421109
421109
  ]
421110
421110
  }, undefined, true, undefined, this)
@@ -423674,7 +423674,7 @@ ${editorHint}`, {
423674
423674
  children: [
423675
423675
  "Learn more: ",
423676
423676
  /* @__PURE__ */ jsx_dev_runtime201.jsxDEV(Link, {
423677
- url: "https://code.claude.com/docs/en/memory"
423677
+ url: "https://ainative.studio/docs/cody-cli/memory"
423678
423678
  }, undefined, false, undefined, this)
423679
423679
  ]
423680
423680
  }, undefined, true, undefined, this)
@@ -424365,7 +424365,7 @@ function General() {
424365
424365
  if ($3[0] === Symbol.for("react.memo_cache_sentinel")) {
424366
424366
  t0 = /* @__PURE__ */ jsx_dev_runtime204.jsxDEV(ThemedBox_default, {
424367
424367
  children: /* @__PURE__ */ jsx_dev_runtime204.jsxDEV(ThemedText, {
424368
- children: "Claude understands your codebase, makes edits with your permission, and executes commands \u2014 right from your terminal."
424368
+ children: "Cody understands your codebase, makes edits with your permission, and executes commands \u2014 right from your terminal."
424369
424369
  }, undefined, false, undefined, this)
424370
424370
  }, undefined, false, undefined, this);
424371
424371
  $3[0] = t0;
@@ -424562,7 +424562,7 @@ function HelpV2(t0) {
424562
424562
  "For more help:",
424563
424563
  " ",
424564
424564
  /* @__PURE__ */ jsx_dev_runtime205.jsxDEV(Link, {
424565
- url: "https://code.claude.com/docs/en/overview"
424565
+ url: "https://ainative.studio/docs/cody-cli"
424566
424566
  }, undefined, false, undefined, this)
424567
424567
  ]
424568
424568
  }, undefined, true, undefined, this)
@@ -425908,7 +425908,7 @@ function generateKeybindingsTemplate() {
425908
425908
  const bindings = filterReservedShortcuts(DEFAULT_BINDINGS);
425909
425909
  const config9 = {
425910
425910
  $schema: "https://www.schemastore.org/cody-cli-keybindings.json",
425911
- $docs: "https://code.claude.com/docs/en/keybindings",
425911
+ $docs: "https://ainative.studio/docs/cody-cli/docs/en/keybindings",
425912
425912
  bindings
425913
425913
  };
425914
425914
  return jsonStringify(config9, null, 2) + `
@@ -425987,7 +425987,7 @@ var init_keybindings2 = __esm(() => {
425987
425987
  var login_default = () => ({
425988
425988
  type: "local-jsx",
425989
425989
  name: "login",
425990
- description: hasAnthropicApiKeyAuth() ? "Switch Anthropic accounts" : "Sign in with your Anthropic account",
425990
+ description: hasAnthropicApiKeyAuth() ? "Switch AINative accounts" : "Sign in with your Anthropic account",
425991
425991
  isEnabled: () => !isEnvTruthy(process.env.DISABLE_LOGIN_COMMAND),
425992
425992
  load: () => Promise.resolve().then(() => (init_login(), exports_login))
425993
425993
  });
@@ -426003,7 +426003,7 @@ var init_logout2 = __esm(() => {
426003
426003
  logout_default = {
426004
426004
  type: "local-jsx",
426005
426005
  name: "logout",
426006
- description: "Sign out from your Anthropic account",
426006
+ description: "Sign out from your AINative account",
426007
426007
  isEnabled: () => !isEnvTruthy(process.env.DISABLE_LOGOUT_COMMAND),
426008
426008
  load: () => Promise.resolve().then(() => (init_logout(), exports_logout))
426009
426009
  };
@@ -426236,7 +426236,7 @@ jobs:
426236
426236
 
426237
426237
  # Optional: Add claude_args to customize behavior and configuration
426238
426238
  # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
426239
- # or https://code.claude.com/docs/en/cli-reference for available options
426239
+ # or https://ainative.studio/docs/cody-cli/docs/en/cli-reference for available options
426240
426240
  # claude_args: '--allowed-tools Bash(gh pr:*)'
426241
426241
 
426242
426242
  `, PR_BODY = `## \uD83E\uDD16 Installing Cody GitHub App
@@ -426321,7 +426321,7 @@ jobs:
426321
426321
  plugins: 'code-review@claude-code-plugins'
426322
426322
  prompt: '/code-review:code-review \${{ github.repository }}/pull/\${{ github.event.pull_request.number }}'
426323
426323
  # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
426324
- # or https://code.claude.com/docs/en/cli-reference for available options
426324
+ # or https://ainative.studio/docs/cody-cli/docs/en/cli-reference for available options
426325
426325
 
426326
426326
  `;
426327
426327
 
@@ -429302,7 +429302,7 @@ var init_install_github_app2 = __esm(() => {
429302
429302
  installGitHubApp = {
429303
429303
  type: "local-jsx",
429304
429304
  name: "install-github-app",
429305
- description: "Set up Claude GitHub Actions for a repository",
429305
+ description: "Set up Cody GitHub Actions for a repository",
429306
429306
  availability: ["claude-ai", "console"],
429307
429307
  isEnabled: () => !isEnvTruthy(process.env.DISABLE_INSTALL_GITHUB_APP_COMMAND),
429308
429308
  load: () => Promise.resolve().then(() => (init_install_github_app(), exports_install_github_app))
@@ -430172,8 +430172,8 @@ function MCPListPanel(t0) {
430172
430172
  dimColor: true,
430173
430173
  children: [
430174
430174
  /* @__PURE__ */ jsx_dev_runtime223.jsxDEV(Link, {
430175
- url: "https://code.claude.com/docs/en/mcp",
430176
- children: "https://code.claude.com/docs/en/mcp"
430175
+ url: "https://ainative.studio/docs/cody-cli/docs/en/mcp",
430176
+ children: "https://ainative.studio/docs/cody-cli/docs/en/mcp"
430177
430177
  }, undefined, false, undefined, this),
430178
430178
  " ",
430179
430179
  "for help"
@@ -433306,7 +433306,7 @@ function MCPSettings(t0) {
433306
433306
  return;
433307
433307
  }
433308
433308
  if (servers.length === 0 && agentMcpServers.length === 0) {
433309
- onComplete("No MCP servers configured. Please run /doctor if this is unexpected. Otherwise, run `claude mcp --help` or visit https://code.claude.com/docs/en/mcp to learn more.");
433309
+ onComplete("No MCP servers configured. Please run /doctor if this is unexpected. Otherwise, run `claude mcp --help` or visit https://ainative.studio/docs/cody-cli/docs/en/mcp to learn more.");
433310
433310
  }
433311
433311
  };
433312
433312
  t8 = [servers.length, filteredClients.length, agentMcpServers.length, onComplete];
@@ -449913,7 +449913,7 @@ function getLogoDisplayData() {
449913
449913
  const serverUrl = getDirectConnectServerUrl();
449914
449914
  const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
449915
449915
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
449916
- const billingType = isClaudeAISubscriber() ? getSubscriptionName() : "API Usage Billing";
449916
+ const billingType = isClaudeAISubscriber() ? getSubscriptionName() : "AINative API";
449917
449917
  const agentName = getInitialSettings().agent;
449918
449918
  return {
449919
449919
  version: version6,
@@ -458722,7 +458722,7 @@ var init_ultrareviewCommand = __esm(() => {
458722
458722
  });
458723
458723
 
458724
458724
  // src/commands/review.ts
458725
- var CCR_TERMS_URL = "https://code.claude.com/docs/en/claude-code-on-the-web", LOCAL_REVIEW_PROMPT = (args) => `
458725
+ var CCR_TERMS_URL = "https://ainative.studio/docs/cody-cli/docs/en/claude-code-on-the-web", LOCAL_REVIEW_PROMPT = (args) => `
458726
458726
  You are an expert code reviewer. Follow these steps:
458727
458727
 
458728
458728
  1. If no PR number is provided in the args, run \`gh pr list\` to show open PRs
@@ -459943,7 +459943,7 @@ ${reasons}`,
459943
459943
  } : prev);
459944
459944
  }
459945
459945
  }
459946
- var ULTRAPLAN_TIMEOUT_MS, CCR_TERMS_URL2 = "https://code.claude.com/docs/en/claude-code-on-the-web", _rawPrompt, DEFAULT_INSTRUCTIONS, ULTRAPLAN_INSTRUCTIONS, call35 = async (onDone, context7, args) => {
459946
+ var ULTRAPLAN_TIMEOUT_MS, CCR_TERMS_URL2 = "https://ainative.studio/docs/cody-cli/docs/en/claude-code-on-the-web", _rawPrompt, DEFAULT_INSTRUCTIONS, ULTRAPLAN_INSTRUCTIONS, call35 = async (onDone, context7, args) => {
459947
459947
  const blurb = args.trim();
459948
459948
  if (!blurb) {
459949
459949
  const msg = await launchUltraplan2({
@@ -468822,8 +468822,8 @@ function FastModePicker(t0) {
468822
468822
  "Learn more:",
468823
468823
  " ",
468824
468824
  /* @__PURE__ */ jsx_dev_runtime302.jsxDEV(Link, {
468825
- url: "https://code.claude.com/docs/en/fast-mode",
468826
- children: "https://code.claude.com/docs/en/fast-mode"
468825
+ url: "https://ainative.studio/docs/cody-cli/fast-mode",
468826
+ children: "https://ainative.studio/docs/cody-cli/fast-mode"
468827
468827
  }, undefined, false, undefined, this)
468828
468828
  ]
468829
468829
  }, undefined, true, undefined, this);
@@ -470480,10 +470480,10 @@ function SelectEventMode(t0) {
470480
470480
  dimColor: true,
470481
470481
  children: [
470482
470482
  figures_default.info,
470483
- " This menu is read-only. To add or modify hooks, edit settings.json directly or ask Claude.",
470483
+ " This menu is read-only. To add or modify hooks, edit settings.json directly or ask Cody.",
470484
470484
  " ",
470485
470485
  /* @__PURE__ */ jsx_dev_runtime307.jsxDEV(Link, {
470486
- url: "https://code.claude.com/docs/en/hooks",
470486
+ url: "https://ainative.studio/docs/cody-cli/docs/en/hooks",
470487
470487
  children: "Learn more"
470488
470488
  }, undefined, false, undefined, this)
470489
470489
  ]
@@ -470628,7 +470628,7 @@ function SelectHookMode(t0) {
470628
470628
  }, undefined, false, undefined, this),
470629
470629
  /* @__PURE__ */ jsx_dev_runtime308.jsxDEV(ThemedText, {
470630
470630
  dimColor: true,
470631
- children: "To add hooks, edit settings.json directly or ask Claude."
470631
+ children: "To add hooks, edit settings.json directly or ask Cody."
470632
470632
  }, undefined, false, undefined, this)
470633
470633
  ]
470634
470634
  }, undefined, true, undefined, this);
@@ -470788,7 +470788,7 @@ function SelectMatcherMode(t0) {
470788
470788
  }, undefined, false, undefined, this),
470789
470789
  /* @__PURE__ */ jsx_dev_runtime309.jsxDEV(ThemedText, {
470790
470790
  dimColor: true,
470791
- children: "To add hooks, edit settings.json directly or ask Claude."
470791
+ children: "To add hooks, edit settings.json directly or ask Cody."
470792
470792
  }, undefined, false, undefined, this)
470793
470793
  ]
470794
470794
  }, undefined, true, undefined, this);
@@ -471097,7 +471097,7 @@ function ViewHookMode(t0) {
471097
471097
  if ($3[32] === Symbol.for("react.memo_cache_sentinel")) {
471098
471098
  t14 = /* @__PURE__ */ jsx_dev_runtime310.jsxDEV(ThemedText, {
471099
471099
  dimColor: true,
471100
- children: "To modify or remove this hook, edit settings.json directly or ask Claude to help."
471100
+ children: "To modify or remove this hook, edit settings.json directly or ask Cody to help."
471101
471101
  }, undefined, false, undefined, this);
471102
471102
  $3[32] = t14;
471103
471103
  } else {
@@ -471528,7 +471528,7 @@ function HooksConfigMenu(t0) {
471528
471528
  if ($3[53] !== disabledByPolicy) {
471529
471529
  t322 = !disabledByPolicy && /* @__PURE__ */ jsx_dev_runtime311.jsxDEV(ThemedText, {
471530
471530
  dimColor: true,
471531
- children: 'To re-enable hooks, remove "disableAllHooks" from settings.json or ask Claude.'
471531
+ children: 'To re-enable hooks, remove "disableAllHooks" from settings.json or ask Cody.'
471532
471532
  }, undefined, false, undefined, this);
471533
471533
  $3[53] = disabledByPolicy;
471534
471534
  $3[54] = t322;
@@ -474136,7 +474136,7 @@ function AgentsList(t0) {
474136
474136
  if ($3[58] === Symbol.for("react.memo_cache_sentinel")) {
474137
474137
  t242 = /* @__PURE__ */ jsx_dev_runtime319.jsxDEV(ThemedText, {
474138
474138
  dimColor: true,
474139
- children: "No agents found. Create specialized subagents that Claude can delegate to."
474139
+ children: "No agents found. Create specialized subagents that Cody can delegate to."
474140
474140
  }, undefined, false, undefined, this);
474141
474141
  t25 = /* @__PURE__ */ jsx_dev_runtime319.jsxDEV(ThemedText, {
474142
474142
  dimColor: true,
@@ -476283,13 +476283,13 @@ function MemoryStep() {
476283
476283
  label: "None (no persistent memory)",
476284
476284
  value: "none"
476285
476285
  }, {
476286
- label: "Project scope (.claude/agent-memory/)",
476286
+ label: "Project scope (.ainative/agent-memory/)",
476287
476287
  value: "project"
476288
476288
  }, {
476289
- label: "Local scope (.claude/agent-memory-local/)",
476289
+ label: "Local scope (.ainative/agent-memory-local/)",
476290
476290
  value: "local"
476291
476291
  }] : [{
476292
- label: "Project scope (.claude/agent-memory/) (Recommended)",
476292
+ label: "Project scope (.ainative/agent-memory/) (Recommended)",
476293
476293
  value: "project"
476294
476294
  }, {
476295
476295
  label: "None (no persistent memory)",
@@ -476298,7 +476298,7 @@ function MemoryStep() {
476298
476298
  label: "User scope (~/.cody/agent-memory/)",
476299
476299
  value: "user"
476300
476300
  }, {
476301
- label: "Local scope (.claude/agent-memory-local/)",
476301
+ label: "Local scope (.ainative/agent-memory-local/)",
476302
476302
  value: "local"
476303
476303
  }];
476304
476304
  $3[1] = isUserScope;
@@ -476407,7 +476407,7 @@ function MethodStep() {
476407
476407
  let t0;
476408
476408
  if ($3[0] === Symbol.for("react.memo_cache_sentinel")) {
476409
476409
  t0 = [{
476410
- label: "Generate with Claude (recommended)",
476410
+ label: "Generate with Cody (recommended)",
476411
476411
  value: "generate"
476412
476412
  }, {
476413
476413
  label: "Manual configuration",
@@ -479669,8 +479669,8 @@ function OverridesSelect(t0) {
479669
479669
  "Learn more:",
479670
479670
  " ",
479671
479671
  /* @__PURE__ */ jsx_dev_runtime341.jsxDEV(Link, {
479672
- url: "https://code.claude.com/docs/en/sandboxing#configure-sandboxing",
479673
- children: "code.claude.com/docs/en/sandboxing#configure-sandboxing"
479672
+ url: "https://ainative.studio/docs/cody-cli/docs/en/sandboxing#configure-sandboxing",
479673
+ children: "ainative.studio/docs/cody-cli/docs/en/sandboxing#configure-sandboxing"
479674
479674
  }, undefined, false, undefined, this)
479675
479675
  ]
479676
479676
  }, undefined, true, undefined, this)
@@ -480040,8 +480040,8 @@ function SandboxModeTab(t0) {
480040
480040
  "Learn more:",
480041
480041
  " ",
480042
480042
  /* @__PURE__ */ jsx_dev_runtime342.jsxDEV(Link, {
480043
- url: "https://code.claude.com/docs/en/sandboxing",
480044
- children: "code.claude.com/docs/en/sandboxing"
480043
+ url: "https://ainative.studio/docs/cody-cli/docs/en/sandboxing",
480044
+ children: "ainative.studio/docs/cody-cli/docs/en/sandboxing"
480045
480045
  }, undefined, false, undefined, this)
480046
480046
  ]
480047
480047
  }, undefined, true, undefined, this)
@@ -480782,7 +480782,7 @@ function ClaudeInChromeMenu(t0) {
480782
480782
  if ($3[33] === Symbol.for("react.memo_cache_sentinel")) {
480783
480783
  t10 = /* @__PURE__ */ jsx_dev_runtime344.jsxDEV(ThemedText, {
480784
480784
  dimColor: true,
480785
- children: "Learn more: https://code.claude.com/docs/en/chrome"
480785
+ children: "Learn more: https://ainative.studio/docs/cody-cli/docs/en/chrome"
480786
480786
  }, undefined, false, undefined, this);
480787
480787
  $3[33] = t10;
480788
480788
  } else {
@@ -481956,13 +481956,13 @@ function SetModelAndClose({
481956
481956
  return;
481957
481957
  }
481958
481958
  if (model && isOpus1mUnavailable(model)) {
481959
- onDone(`Opus 4.6 with 1M context is not available for your account. Learn more: https://code.claude.com/docs/en/model-config#extended-context-with-1m`, {
481959
+ onDone(`DeepSeek R1 -- Reasoning is not available for your account. Learn more: https://ainative.studio/docs/cody-cli/docs/en/model-config#extended-context-with-1m`, {
481960
481960
  display: "system"
481961
481961
  });
481962
481962
  return;
481963
481963
  }
481964
481964
  if (model && isSonnet1mUnavailable(model)) {
481965
- onDone(`Sonnet 4.6 with 1M context is not available for your account. Learn more: https://code.claude.com/docs/en/model-config#extended-context-with-1m`, {
481965
+ onDone(`Gemma 9B -- Text and reasoning is not available for your account. Learn more: https://ainative.studio/docs/cody-cli/docs/en/model-config#extended-context-with-1m`, {
481966
481966
  display: "system"
481967
481967
  });
481968
481968
  return;
@@ -492077,7 +492077,7 @@ function getAgentMemoryDir(agentType, scope) {
492077
492077
  const dirName = sanitizeAgentTypeForPath(agentType);
492078
492078
  switch (scope) {
492079
492079
  case "project":
492080
- return join130(getCwd(), ".claude", "agent-memory", dirName) + sep31;
492080
+ return join130(getCwd(), ".ainative", "agent-memory", dirName) + sep31;
492081
492081
  case "local":
492082
492082
  return getLocalAgentMemoryDir(dirName);
492083
492083
  case "user":
@@ -492090,7 +492090,7 @@ function isAgentMemoryPath(absolutePath) {
492090
492090
  if (normalizedPath.startsWith(join130(memoryBase, "agent-memory") + sep31)) {
492091
492091
  return true;
492092
492092
  }
492093
- if (normalizedPath.startsWith(join130(getCwd(), ".claude", "agent-memory") + sep31)) {
492093
+ if (normalizedPath.startsWith(join130(getCwd(), ".ainative", "agent-memory") + sep31)) {
492094
492094
  return true;
492095
492095
  }
492096
492096
  if (process.env.CLAUDE_CODE_REMOTE_MEMORY_DIR) {
@@ -492107,7 +492107,7 @@ function getMemoryScopeDisplay(memory2) {
492107
492107
  case "user":
492108
492108
  return `User (${join130(getMemoryBaseDir(), "agent-memory")}/)`;
492109
492109
  case "project":
492110
- return "Project (.claude/agent-memory/)";
492110
+ return "Project (.ainative/agent-memory/)";
492111
492111
  case "local":
492112
492112
  return `Local (${getLocalAgentMemoryDir("...")})`;
492113
492113
  default:
@@ -498162,7 +498162,7 @@ function prependBullets(items) {
498162
498162
  }
498163
498163
  function getSimpleIntroSection(outputStyleConfig) {
498164
498164
  return `
498165
- You are an interactive agent that helps users ${outputStyleConfig !== null ? 'according to your "Output Style" below, which describes how you should respond to user queries.' : "with software engineering tasks."} Use the instructions below and the tools available to you to assist the user.
498165
+ You are Cody, AINative Studio's AI coding assistant that helps users ${outputStyleConfig !== null ? 'according to your "Output Style" below, which describes how you should respond to user queries.' : "with software engineering tasks."} Use the instructions below and the tools available to you to assist the user.
498166
498166
 
498167
498167
  ${CYBER_RISK_INSTRUCTION}
498168
498168
  IMPORTANT: You must NEVER generate or guess URLs for the user unless you are confident that the URLs are for helping the user with programming. You may use URLs provided by the user in their messages or local files.`;
@@ -498201,6 +498201,9 @@ function getSimpleDoingTasksSection() {
498201
498201
  `Be careful not to introduce security vulnerabilities such as command injection, XSS, SQL injection, and other OWASP top 10 vulnerabilities. If you notice that you wrote insecure code, immediately fix it. Prioritize writing safe, secure, and correct code.`,
498202
498202
  ...codeStyleSubitems,
498203
498203
  `Avoid backwards-compatibility hacks like renaming unused _vars, re-exporting types, adding // removed comments for removed code, etc. If you are certain that something is unused, you can delete it completely.`,
498204
+ `If the user has a misconception about how something works, tell them directly and clearly rather than working around it or letting them continue with a wrong assumption.`,
498205
+ `Verify your work actually produces the expected result before claiming it's done. Run the tests, check the output, confirm the behavior matches what was asked. Never say 'this should work' without evidence.`,
498206
+ `When you discover that your current approach won't work or has a fundamental flaw, say so immediately rather than continuing down a dead end. Propose an alternative and explain why the pivot is needed.`,
498204
498207
  ...[],
498205
498208
  ...[],
498206
498209
  `If the user asks for help or wants to give feedback inform them of the following:`,
@@ -504682,7 +504685,7 @@ function CostThresholdDialog(t0) {
504682
504685
  children: "Learn more about how to monitor your spending:"
504683
504686
  }, undefined, false, undefined, this),
504684
504687
  /* @__PURE__ */ jsx_dev_runtime364.jsxDEV(Link, {
504685
- url: "https://code.claude.com/docs/en/costs"
504688
+ url: "https://ainative.studio/docs/cody-cli/docs/en/costs"
504686
504689
  }, undefined, false, undefined, this)
504687
504690
  ]
504688
504691
  }, undefined, true, undefined, this);
@@ -540034,7 +540037,7 @@ function TranscriptSharePrompt(t0) {
540034
540037
  marginLeft: 2,
540035
540038
  children: /* @__PURE__ */ jsx_dev_runtime446.jsxDEV(ThemedText, {
540036
540039
  dimColor: true,
540037
- children: "Learn more: https://code.claude.com/docs/en/data-usage#session-quality-surveys"
540040
+ children: "Learn more: https://ainative.studio/docs/cody-cli/docs/en/data-usage#session-quality-surveys"
540038
540041
  }, undefined, false, undefined, this)
540039
540042
  }, undefined, false, undefined, this);
540040
540043
  $3[7] = t4;
@@ -541295,7 +541298,7 @@ var init_tipRegistry = __esm(() => {
541295
541298
  },
541296
541299
  {
541297
541300
  id: "prompt-queue",
541298
- content: async () => "Hit Enter to queue up additional messages while Claude is working.",
541301
+ content: async () => "Hit Enter to queue up additional messages while Cody is working.",
541299
541302
  cooldownSessions: 5,
541300
541303
  async isRelevant() {
541301
541304
  const config9 = getGlobalConfig();
@@ -550242,7 +550245,7 @@ function MCPServerDialogCopy() {
550242
550245
  "MCP servers may execute code or access system resources. All tool calls require approval. Learn more in the",
550243
550246
  " ",
550244
550247
  /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(Link, {
550245
- url: "https://code.claude.com/docs/en/mcp",
550248
+ url: "https://ainative.studio/docs/cody-cli/docs/en/mcp",
550246
550249
  children: "MCP documentation"
550247
550250
  }, undefined, false, undefined, this),
550248
550251
  "."
@@ -550894,7 +550897,7 @@ function PreflightStep(t0) {
550894
550897
  }, undefined, false, undefined, this),
550895
550898
  /* @__PURE__ */ jsx_dev_runtime473.jsxDEV(ThemedText, {
550896
550899
  color: "suggestion",
550897
- children: "See https://code.claude.com/docs/en/network-config"
550900
+ children: "See https://ainative.studio/docs/cody-cli/docs/en/network-config"
550898
550901
  }, undefined, false, undefined, this)
550899
550902
  ]
550900
550903
  }, undefined, true, undefined, this) : /* @__PURE__ */ jsx_dev_runtime473.jsxDEV(ThemedBox_default, {
@@ -552305,7 +552308,7 @@ function Onboarding({
552305
552308
  /* @__PURE__ */ jsx_dev_runtime478.jsxDEV(OrderedList.Item, {
552306
552309
  children: [
552307
552310
  /* @__PURE__ */ jsx_dev_runtime478.jsxDEV(ThemedText, {
552308
- children: "Claude can make mistakes"
552311
+ children: "Cody can make mistakes"
552309
552312
  }, undefined, false, undefined, this),
552310
552313
  /* @__PURE__ */ jsx_dev_runtime478.jsxDEV(ThemedText, {
552311
552314
  dimColor: true,
@@ -552331,7 +552334,7 @@ function Onboarding({
552331
552334
  "For more details see:",
552332
552335
  /* @__PURE__ */ jsx_dev_runtime478.jsxDEV(Newline, {}, undefined, false, undefined, this),
552333
552336
  /* @__PURE__ */ jsx_dev_runtime478.jsxDEV(Link, {
552334
- url: "https://code.claude.com/docs/en/security"
552337
+ url: "https://ainative.studio/docs/cody-cli/security"
552335
552338
  }, undefined, false, undefined, this)
552336
552339
  ]
552337
552340
  }, undefined, true, undefined, this)
@@ -552914,7 +552917,7 @@ function TrustDialog(t0) {
552914
552917
  t19 = /* @__PURE__ */ jsx_dev_runtime479.jsxDEV(ThemedText, {
552915
552918
  dimColor: true,
552916
552919
  children: /* @__PURE__ */ jsx_dev_runtime479.jsxDEV(Link, {
552917
- url: "https://code.claude.com/docs/en/security",
552920
+ url: "https://ainative.studio/docs/cody-cli/security",
552918
552921
  children: "Security guide"
552919
552922
  }, undefined, false, undefined, this)
552920
552923
  }, undefined, false, undefined, this);
@@ -553099,7 +553102,7 @@ function BypassPermissionsModeDialog(t0) {
553099
553102
  children: "By proceeding, you accept all responsibility for actions taken while running in Bypass Permissions mode."
553100
553103
  }, undefined, false, undefined, this),
553101
553104
  /* @__PURE__ */ jsx_dev_runtime480.jsxDEV(Link, {
553102
- url: "https://code.claude.com/docs/en/security"
553105
+ url: "https://ainative.studio/docs/cody-cli/security"
553103
553106
  }, undefined, false, undefined, this)
553104
553107
  ]
553105
553108
  }, undefined, true, undefined, this);
@@ -553285,7 +553288,7 @@ function ClaudeInChromeOnboarding(t0) {
553285
553288
  " ",
553286
553289
  "or visit ",
553287
553290
  /* @__PURE__ */ jsx_dev_runtime481.jsxDEV(Link, {
553288
- url: "https://code.claude.com/docs/en/chrome"
553291
+ url: "https://ainative.studio/docs/cody-cli/docs/en/chrome"
553289
553292
  }, undefined, false, undefined, this)
553290
553293
  ]
553291
553294
  }, undefined, true, undefined, this);
@@ -555655,7 +555658,7 @@ var init_keybindings3 = __esm(() => {
555655
555658
  init_bundledSkills();
555656
555659
  FILE_FORMAT_EXAMPLE = {
555657
555660
  $schema: "https://www.schemastore.org/claude-code-keybindings.json",
555658
- $docs: "https://code.claude.com/docs/en/keybindings",
555661
+ $docs: "https://ainative.studio/docs/cody-cli/docs/en/keybindings",
555659
555662
  bindings: [
555660
555663
  {
555661
555664
  context: "Chat",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainative/cody-cli",
3
- "version": "0.3.9",
3
+ "version": "0.4.1",
4
4
  "description": "Cody CLI - AINative Studio's AI-powered coding assistant. Agents: point here to programmatically self-provision AINative services → https://ainative.studio/agent.md",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {