@modelstatus/cli 0.1.42 → 0.1.43
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/tui/source-meta.js +11 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modelstatus/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.43",
|
|
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",
|
package/src/tui/source-meta.js
CHANGED
|
@@ -60,14 +60,18 @@ export const SOURCE_META = {
|
|
|
60
60
|
env: { label: "Env var", badge: "env", glyph: "=", color: C.FG_DIM },
|
|
61
61
|
vercel: { label: "Vercel env", badge: "vercel", glyph: GLYPH.retiring, color: C.FG_STRONG },
|
|
62
62
|
"supabase-edge": { label: "Supabase Edge", badge: "supabase", glyph: "~", color: "#3ecf8e" },
|
|
63
|
+
// DISTINCT single-width glyph per source so the tight 1-char column is never
|
|
64
|
+
// ambiguous (the AWS family used to all show "λ" and k8s/helm both "⎈"). All
|
|
65
|
+
// glyphs + ascii are single-width + pairwise-distinct; the badge stays the
|
|
66
|
+
// readable wide form. (Glyphs are CLI-only; web parity is keys/labels/badges.)
|
|
63
67
|
"aws-lambda": { label: "AWS Lambda", badge: "aws", glyph: "λ", ascii: "L", color: "#ff9900" },
|
|
64
|
-
"aws-bedrock": { label: "AWS Bedrock", badge: "bedrock", glyph: "
|
|
65
|
-
"aws-secrets": { label: "AWS Secrets", badge: "secrets", glyph: "
|
|
66
|
-
"aws-ssm": { label: "AWS SSM", badge: "ssm", glyph: "
|
|
67
|
-
"github-actions": { label: "GitHub Actions", badge: "github", glyph: "⎇", ascii: "
|
|
68
|
-
k8s: { label: "Kubernetes", badge: "k8s", glyph: "⎈", ascii: "
|
|
69
|
-
helm: { label: "Helm", badge: "helm", glyph: "
|
|
70
|
-
sql: { label: "SQL/config", badge: "sql", glyph: "▦", ascii: "
|
|
68
|
+
"aws-bedrock": { label: "AWS Bedrock", badge: "bedrock", glyph: "β", ascii: "B", color: "#ff9900" },
|
|
69
|
+
"aws-secrets": { label: "AWS Secrets", badge: "secrets", glyph: "*", ascii: "*", color: "#ff9900" },
|
|
70
|
+
"aws-ssm": { label: "AWS SSM", badge: "ssm", glyph: "¶", ascii: "P", color: "#ff9900" },
|
|
71
|
+
"github-actions": { label: "GitHub Actions", badge: "github", glyph: "⎇", ascii: "g", color: "#a78bfa" },
|
|
72
|
+
k8s: { label: "Kubernetes", badge: "k8s", glyph: "⎈", ascii: "K", color: "#326ce5" },
|
|
73
|
+
helm: { label: "Helm", badge: "helm", glyph: "‡", ascii: "H", color: "#0f6fd1" },
|
|
74
|
+
sql: { label: "SQL/config", badge: "sql", glyph: "▦", ascii: "Q", color: C.FG_DIM },
|
|
71
75
|
manual: { label: "Manual", badge: "manual", glyph: GLYPH.repl === "->" ? "+" : "✎", ascii: "+", color: C.FG_FAINT },
|
|
72
76
|
};
|
|
73
77
|
|