@axplusb/kepler 1.0.3 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axplusb/kepler",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Kepler — AI coding agent that plans, builds, tests, and ships. 30.7% on SWE-bench Lite.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,8 +19,8 @@ BACKEND_URLS.prod = BACKEND_URLS.production;
19
19
 
20
20
  const WEB_URLS = {
21
21
  local: 'http://localhost:3000',
22
- development: 'https://devtarang.ai',
23
- production: 'https://devtarang.ai',
22
+ development: 'https://codekepler.ai',
23
+ production: 'https://codekepler.ai',
24
24
  };
25
25
  WEB_URLS.dev = WEB_URLS.development;
26
26
  WEB_URLS.prod = WEB_URLS.production;
package/src/index.mjs CHANGED
@@ -203,7 +203,7 @@ async function main() {
203
203
  const remote = await auth.syncSettings();
204
204
  process.stderr.write(`\x1b[32m✓ Settings synced\x1b[0m ${remote.gateway_type ? `(gateway: ${remote.gateway_type})` : ''}\n`);
205
205
  } catch {
206
- process.stderr.write('\x1b[2mSettings sync skipped — configure at devtarang.ai/dashboard/settings\x1b[0m\n');
206
+ process.stderr.write('\x1b[2mSettings sync skipped — configure at codekepler.ai/dashboard/settings\x1b[0m\n');
207
207
  }
208
208
  process.stderr.write('\n');
209
209
  // Fall through to REPL — user starts working right away
@@ -123,7 +123,7 @@ async function main() {
123
123
  OPENROUTER_API_KEY OpenRouter API key
124
124
  KEPLER_CONFIG_DIR Override config directory (default: ~/.kepler)
125
125
 
126
- \x1b[2mDocs: https://devtarang.ai/docs\x1b[0m
126
+ \x1b[2mDocs: https://codekepler.ai/docs\x1b[0m
127
127
  `);
128
128
  return;
129
129
  }