fleetlens 0.1.1 → 0.1.2

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 (36) hide show
  1. package/app/apps/web/.next/BUILD_ID +1 -1
  2. package/app/apps/web/.next/build-manifest.json +3 -3
  3. package/app/apps/web/.next/prerender-manifest.json +3 -3
  4. package/app/apps/web/.next/server/app/_global-error.html +1 -1
  5. package/app/apps/web/.next/server/app/_global-error.rsc +1 -1
  6. package/app/apps/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  7. package/app/apps/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  8. package/app/apps/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  9. package/app/apps/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  10. package/app/apps/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  11. package/app/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  12. package/app/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
  13. package/app/apps/web/.next/server/app/parallelism/page_client-reference-manifest.js +1 -1
  14. package/app/apps/web/.next/server/app/projects/[slug]/page_client-reference-manifest.js +1 -1
  15. package/app/apps/web/.next/server/app/projects/page_client-reference-manifest.js +1 -1
  16. package/app/apps/web/.next/server/app/sessions/[id]/page_client-reference-manifest.js +1 -1
  17. package/app/apps/web/.next/server/app/sessions/page_client-reference-manifest.js +1 -1
  18. package/app/apps/web/.next/server/app/usage/page_client-reference-manifest.js +1 -1
  19. package/app/apps/web/.next/server/chunks/[root-of-the-server]__0pm~ki3._.js +3 -3
  20. package/app/apps/web/.next/server/chunks/ssr/_0yyvgac._.js +1 -1
  21. package/app/apps/web/.next/server/chunks/ssr/apps_web_components_06j3c.0._.js +1 -1
  22. package/app/apps/web/.next/server/middleware-build-manifest.js +3 -3
  23. package/app/apps/web/.next/server/pages/500.html +1 -1
  24. package/app/apps/web/.next/server/server-reference-manifest.js +1 -1
  25. package/app/apps/web/.next/server/server-reference-manifest.json +1 -1
  26. package/app/apps/web/.next/static/chunks/{0dohpu.c0i6xx.js → 0ipd1ph4bgubq.js} +1 -1
  27. package/app/apps/web/app/api/ask/route.ts +1 -1
  28. package/app/apps/web/app/layout.tsx +2 -2
  29. package/app/apps/web/components/sidebar.tsx +1 -1
  30. package/app/apps/web/package.json +1 -1
  31. package/app/apps/web/tsconfig.tsbuildinfo +1 -1
  32. package/dist/index.js +10 -10
  33. package/package.json +1 -1
  34. /package/app/apps/web/.next/static/{IHvkhA13HrMq3uK2CWSbJ → 2kdRQ_Qfdyey-Xt31t7FV}/_buildManifest.js +0 -0
  35. /package/app/apps/web/.next/static/{IHvkhA13HrMq3uK2CWSbJ → 2kdRQ_Qfdyey-Xt31t7FV}/_clientMiddlewareManifest.js +0 -0
  36. /package/app/apps/web/.next/static/{IHvkhA13HrMq3uK2CWSbJ → 2kdRQ_Qfdyey-Xt31t7FV}/_ssgManifest.js +0 -0
package/dist/index.js CHANGED
@@ -209,7 +209,7 @@ async function checkForUpdate() {
209
209
  if (process.env.__CCLENS_UPDATED === "1") return;
210
210
  const latest = await fetchLatestVersion();
211
211
  if (latest === null) return;
212
- const current = "0.1.1";
212
+ const current = "0.1.2";
213
213
  if (!shouldUpdate(current, latest)) return;
214
214
  console.log(`Updating cclens ${current} \u2192 ${latest}...`);
215
215
  const ok = runNpmInstall();
@@ -222,7 +222,7 @@ async function checkForUpdate() {
222
222
  }
223
223
  async function forceUpdate() {
224
224
  const latest = await fetchLatestVersion();
225
- const current = "0.1.1";
225
+ const current = "0.1.2";
226
226
  if (latest === null) {
227
227
  console.error("Could not reach npm registry. Check your network.");
228
228
  process.exit(1);
@@ -265,15 +265,15 @@ async function start(args2) {
265
265
  const status = getServerStatus();
266
266
  if (status.running) {
267
267
  const url = `http://localhost:${status.port}`;
268
- console.log(`Claude Lens is already running on ${url} (PID ${status.pid})`);
268
+ console.log(`fleetlens is already running on ${url} (PID ${status.pid})`);
269
269
  if (!noOpen) openBrowser(url);
270
270
  return;
271
271
  }
272
- console.log("Starting Claude Lens...");
272
+ console.log("Starting fleetlens...");
273
273
  try {
274
274
  const result = await startServer({ port });
275
275
  const url = `http://localhost:${result.port}`;
276
- console.log(`Claude Lens running on ${url} (PID ${result.pid})`);
276
+ console.log(`fleetlens running on ${url} (PID ${result.pid})`);
277
277
  if (!noOpen) openBrowser(url);
278
278
  } catch (err) {
279
279
  console.error(`Failed to start: ${err.message}`);
@@ -296,12 +296,12 @@ __export(stop_exports, {
296
296
  async function stop() {
297
297
  const status = getServerStatus();
298
298
  if (!status.running) {
299
- console.log("Claude Lens is not running.");
299
+ console.log("fleetlens is not running.");
300
300
  return;
301
301
  }
302
302
  const result = stopServer();
303
303
  if (result.stopped) {
304
- console.log(`Stopped Claude Lens (PID ${result.pid})`);
304
+ console.log(`Stopped fleetlens (PID ${result.pid})`);
305
305
  }
306
306
  }
307
307
  var init_stop = __esm({
@@ -328,11 +328,11 @@ async function web(args2) {
328
328
  if (!noOpen) openBrowser(url);
329
329
  return;
330
330
  }
331
- console.log("Claude Lens is not running. Starting server...");
331
+ console.log("fleetlens is not running. Starting server...");
332
332
  try {
333
333
  const result = await startServer({});
334
334
  const url = `http://localhost:${result.port}${path2}`;
335
- console.log(`Claude Lens running on ${url} (PID ${result.pid})`);
335
+ console.log(`fleetlens running on ${url} (PID ${result.pid})`);
336
336
  if (!noOpen) openBrowser(url);
337
337
  } catch (err) {
338
338
  console.error(`Failed to start: ${err.message}`);
@@ -1527,7 +1527,7 @@ async function main() {
1527
1527
  case "version":
1528
1528
  case "--version":
1529
1529
  case "-v":
1530
- console.log(`fleetlens ${"0.1.1"}`);
1530
+ console.log(`fleetlens ${"0.1.2"}`);
1531
1531
  break;
1532
1532
  case "help":
1533
1533
  case "--help":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetlens",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "fleetlens — local-only dashboard and usage tracker for Claude Code sessions and agent fleets",
5
5
  "license": "MIT",
6
6
  "type": "module",