@axplusb/kepler 2.0.6 → 2.0.7

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": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Kepler — AI coding agent with operating brief, preflight planning, and sub-agents. SWE-bench Lite evaluated.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  */
9
9
 
10
10
  const BACKEND_URLS = {
11
- local: 'http://127.0.0.1:8000',
11
+ local: 'http://127.0.0.1:8150',
12
12
  development: 'https://codekepler-backend-dev.kindisland-9034322d.eastus.azurecontainerapps.io',
13
13
  production: 'https://codekepler-backend-prod.gentlerock-9816c6b8.centralus.azurecontainerapps.io',
14
14
  };
@@ -18,7 +18,7 @@ BACKEND_URLS.dev = BACKEND_URLS.development;
18
18
  BACKEND_URLS.prod = BACKEND_URLS.production;
19
19
 
20
20
  const WEB_URLS = {
21
- local: 'http://localhost:3000',
21
+ local: 'http://localhost:3100',
22
22
  development: 'https://codekepler.ai',
23
23
  production: 'https://codekepler.ai',
24
24
  };
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * [✓] Auth token
10
10
  * [✓] OpenRouter key
11
- * [✓] Backend http://127.0.0.1:8000
11
+ * [✓] Backend http://127.0.0.1:8150
12
12
  * [✓] Git repository main · clean
13
13
  * [⚠] Linter (ruff) not found → /install ruff to enable lint_check
14
14
  * [✓] Project map 142 files, Python + TypeScript
package/src/ui/banner.mjs CHANGED
@@ -208,19 +208,6 @@ export function getLoginSuccessHTML() {
208
208
  color: #8b949e;
209
209
  font-size: 16px;
210
210
  }
211
- .hint {
212
- margin-top: 32px;
213
- padding: 16px;
214
- background: #161b22;
215
- border-radius: 8px;
216
- border: 1px solid #30363d;
217
- }
218
- code {
219
- background: #1f2937;
220
- padding: 2px 6px;
221
- border-radius: 4px;
222
- color: #58a6ff;
223
- }
224
211
  </style>
225
212
  </head>
226
213
  <body>
@@ -231,10 +218,6 @@ export function getLoginSuccessHTML() {
231
218
  <div class="check">&#10003;</div>
232
219
  <h1>Login Successful!</h1>
233
220
  <p>You can close this tab and return to your terminal.</p>
234
- <div class="hint">
235
- <p>Next step: set your API key</p>
236
- <code>kepler config --openrouter-key YOUR_KEY</code>
237
- </div>
238
221
  </div>
239
222
  </body>
240
223
  </html>`;
@@ -307,7 +307,7 @@ export class EventFormatter {
307
307
  } else if (msg.includes('API key') || msg.includes('OpenRouter')) {
308
308
  process.stderr.write(` ${DIM}Run /config to set up your provider${RESET}\n`);
309
309
  } else if (msg.includes('Backend') || msg.includes('Network')) {
310
- process.stderr.write(` ${DIM}Check if the backend is running at ${this.sessionInfo?.backend || 'localhost:8000'}${RESET}\n`);
310
+ process.stderr.write(` ${DIM}Check if the backend is running at ${this.sessionInfo?.backend || 'localhost:8150'}${RESET}\n`);
311
311
  }
312
312
  }
313
313