@modelstatus/cli 0.1.30 → 0.1.31

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": "@modelstatus/cli",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "Track which AI models you use, where, and never get surprised by a retirement. Free offline model-health for any repo (mm status), browser sign-in for cloud inventory + alerts.",
5
5
  "keywords": [
6
6
  "llm",
@@ -27,7 +27,7 @@ export const meta = {
27
27
  { k: "/", label: "search" },
28
28
  { k: "p", label: "pause" },
29
29
  { k: "g", label: "rescan" },
30
- { k: "u", label: "push to inventory" },
30
+ { k: "u", label: "push all inventory" },
31
31
  ],
32
32
  };
33
33
 
@@ -24,12 +24,12 @@ import { openUrl, openLocation } from "../../openUrl.js";
24
24
  export const meta = {
25
25
  keys: [
26
26
  { k: "↑↓", label: "nav" },
27
- { k: "space", label: "select" },
27
+ { k: "space", label: "toggle" },
28
+ { k: "a/x", label: "all/none" },
28
29
  { k: "↵", label: "refs" },
29
- { k: "e", label: "exclude" },
30
30
  { k: "/", label: "search" },
31
31
  { k: "g", label: "rescan" },
32
- { k: "u", label: "upload" },
32
+ { k: "u", label: "upload all" },
33
33
  ],
34
34
  };
35
35
 
@@ -267,7 +267,7 @@ export function ScanView({ client, dir, ui, active, width = 78, height = 14, fre
267
267
  const showingLine = h(
268
268
  Text,
269
269
  { color: C.FG_FAINT },
270
- ` ${fmtNum(filtered.length)} ref${filtered.length === 1 ? "" : "s"}${filtered.length > pageSize ? ` · ${nav.start + 1}-${Math.min(nav.end, filtered.length)}` : ""}${search.query ? ` · filter "${search.query}"` : ""}${scan.fromCache ? " · cached · g rescan" : ""}`,
270
+ ` ${fmtNum(filtered.length)} ref${filtered.length === 1 ? "" : "s"}${filtered.length > pageSize ? ` · ${nav.start + 1}-${Math.min(nav.end, filtered.length)}` : ""}${search.query ? ` · filter "${search.query}"` : ""}${scan.fromCache ? " · cached" : ""} · ${selCount === items.length ? `all ${selCount}` : `${selCount}/${items.length}`} selected · u uploads them all`,
271
271
  );
272
272
  const footer = busy
273
273
  ? h(Text, { color: C.ACCENT }, ` ${SPINNER[tick % SPINNER.length]} uploading…`)