@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 +1 -1
- package/src/core/backend-url.mjs +2 -2
- package/src/index.mjs +1 -1
- package/src/terminal/main.mjs +1 -1
package/package.json
CHANGED
package/src/core/backend-url.mjs
CHANGED
|
@@ -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://
|
|
23
|
-
production: 'https://
|
|
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
|
|
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
|
package/src/terminal/main.mjs
CHANGED
|
@@ -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://
|
|
126
|
+
\x1b[2mDocs: https://codekepler.ai/docs\x1b[0m
|
|
127
127
|
`);
|
|
128
128
|
return;
|
|
129
129
|
}
|