@ainative/cody-cli 0.7.20 → 0.7.21

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 +7 -7
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -57668,7 +57668,7 @@ var init_types3 = __esm(() => {
57668
57668
  ...isEnvTruthy(process.env.CLAUDE_CODE_ENABLE_XAA) ? {
57669
57669
  xaaIdp: exports_external.object({
57670
57670
  issuer: exports_external.string().url().describe("IdP issuer URL for OIDC discovery"),
57671
- clientId: exports_external.string().describe("Claude Code's client_id registered at the IdP"),
57671
+ clientId: exports_external.string().describe("Cody CLI's client_id registered at the IdP"),
57672
57672
  callbackPort: exports_external.number().int().positive().optional().describe("Fixed loopback callback port for the IdP OIDC login. " + "Only needed if the IdP does not honor RFC 8252 port-any matching.")
57673
57673
  }).optional().describe("XAA (SEP-990) IdP connection. Configure once; all XAA-enabled MCP servers reuse this.")
57674
57674
  } : {},
@@ -181024,7 +181024,7 @@ var init_metadata = __esm(() => {
181024
181024
  isClaudeAiAuth: isClaudeAISubscriber(),
181025
181025
  version: "0.7.15",
181026
181026
  versionBase: getVersionBase(),
181027
- buildTime: "1775425736",
181027
+ buildTime: "1775426742",
181028
181028
  deploymentEnvironment: env4.detectDeploymentEnvironment(),
181029
181029
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
181030
181030
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -278213,7 +278213,7 @@ function IdeOnboardingDialog(t0) {
278213
278213
  if ($3[13] === Symbol.for("react.memo_cache_sentinel")) {
278214
278214
  t11 = /* @__PURE__ */ jsx_dev_runtime37.jsxDEV(ThemedText, {
278215
278215
  children: [
278216
- "• Review Claude Code's changes",
278216
+ "• Review Cody's changes",
278217
278217
  " ",
278218
278218
  t10,
278219
278219
  " ",
@@ -418996,7 +418996,7 @@ function getAnthropicEnvMetadata() {
418996
418996
  function getBuildAgeMinutes() {
418997
418997
  if (false)
418998
418998
  ;
418999
- const buildTime = new Date("1775425736").getTime();
418999
+ const buildTime = new Date("1775426742").getTime();
419000
419000
  if (isNaN(buildTime))
419001
419001
  return;
419002
419002
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -511986,7 +511986,7 @@ var init_bridge_kick = __esm(() => {
511986
511986
  var call56 = async () => {
511987
511987
  return {
511988
511988
  type: "text",
511989
- value: `${"0.7.15"} (built ${"1775425736"})`
511989
+ value: `${"0.7.15"} (built ${"1775426742"})`
511990
511990
  };
511991
511991
  }, version6, version_default;
511992
511992
  var init_version = __esm(() => {
@@ -589596,7 +589596,7 @@ Plugin syntax: \`plugin-name@source\` where source is \`claude-code-marketplace\
589596
589596
  - \`syntaxHighlightingDisabled\`: Disable diff highlighting
589597
589597
  `, HOOKS_DOCS = `## Hooks Configuration
589598
589598
 
589599
- Hooks run commands at specific points in Claude Code's lifecycle.
589599
+ Hooks run commands at specific points in Cody's lifecycle.
589600
589600
 
589601
589601
  ### Hook Structure
589602
589602
  \`\`\`json
@@ -590243,7 +590243,7 @@ var init_addCommand = __esm(() => {
590243
590243
  // src/commands/mcp/xaaIdpCommand.ts
590244
590244
  function registerMcpXaaIdpCommand(mcp2) {
590245
590245
  const xaaIdp = mcp2.command("xaa").description("Manage the XAA (SEP-990) IdP connection");
590246
- xaaIdp.command("setup").description("Configure the IdP connection (one-time setup for all XAA-enabled servers)").requiredOption("--issuer <url>", "IdP issuer URL (OIDC discovery)").requiredOption("--client-id <id>", "Claude Code's client_id at the IdP").option("--client-secret", "Read IdP client secret from MCP_XAA_IDP_CLIENT_SECRET env var").option("--callback-port <port>", "Fixed loopback callback port (only if IdP does not honor RFC 8252 port-any matching)").action((options) => {
590246
+ xaaIdp.command("setup").description("Configure the IdP connection (one-time setup for all XAA-enabled servers)").requiredOption("--issuer <url>", "IdP issuer URL (OIDC discovery)").requiredOption("--client-id <id>", "Cody CLI's client_id at the IdP").option("--client-secret", "Read IdP client secret from MCP_XAA_IDP_CLIENT_SECRET env var").option("--callback-port <port>", "Fixed loopback callback port (only if IdP does not honor RFC 8252 port-any matching)").action((options) => {
590247
590247
  let issuerUrl;
590248
590248
  try {
590249
590249
  issuerUrl = new URL(options.issuer);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainative/cody-cli",
3
- "version": "0.7.20",
3
+ "version": "0.7.21",
4
4
  "type": "module",
5
5
  "description": "Cody CLI - AINative Studio's AI-powered coding assistant. Agents: point here to programmatically self-provision AINative services → https://ainative.studio/agent.md",
6
6
  "main": "dist/cli.js",