clauddy 1.2.0 → 1.4.0

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/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # 🟫 Claude Usage Monitor
1
+ # 🟫 Clauddy
2
2
 
3
3
  A cute pixel-art desktop pet for macOS that tracks your Claude Code usage — mirroring the official **Settings → Usage** panel (current session + weekly limits, in tokens & %), with animations.
4
4
 
5
5
  <p align="center">
6
- <img src="https://raw.githubusercontent.com/renatoaug/claude-usage-monitor/main/docs/media/overview.gif" width="300" alt="Claude Usage Monitor — the full widget showing session, weekly, by-model and 30-day usage" /><br />
6
+ <img src="https://raw.githubusercontent.com/renatoaug/claude-usage-monitor/main/docs/media/overview.gif" width="300" alt="Clauddy — the full widget showing session, weekly, by-model and 30-day usage" /><br />
7
7
  <em>A little terracotta creature that lives in the corner of your screen, eats your tokens, and naps when you're idle.</em>
8
8
  </p>
9
9
 
@@ -52,15 +52,17 @@ Plus a welcome **wave** on launch. You can [poke the pet from the terminal](#pla
52
52
 
53
53
  macOS (Apple Silicon). Two ways, depending on what you want:
54
54
 
55
- ### 1. Download the app — opens at login (recommended)
55
+ ### 1. Install as an app — opens at login (recommended)
56
56
 
57
- For everyday use, grab the prebuilt app no terminal, no setup:
57
+ One command it downloads the latest release and drops it in `/Applications`:
58
58
 
59
- 1. Download the latest **`Claude Usage Monitor-…-mac.zip`** from the [**Releases**](https://github.com/renatoaug/claude-usage-monitor/releases/latest) page.
60
- 2. Unzip it and drag **Claude Usage Monitor.app** into `/Applications`.
61
- 3. First open: right-click the app → **Open** → **Open** (it's unsigned).
59
+ ```bash
60
+ curl -fsSL https://raw.githubusercontent.com/renatoaug/claude-usage-monitor/main/install.sh | bash
61
+ ```
62
+
63
+ **Clauddy is free and open source** — the command above just downloads the latest release from this repo and drops it in `/Applications`, nothing else (you can read [`install.sh`](install.sh) first if you'd like).
62
64
 
63
- It registers itself in **Login Items**, so it **starts automatically** with your Mac — set it and forget it.
65
+ Why not a normal download? macOS blocks **unsigned** apps downloaded through a browser with a scary *"damaged, move to Trash"* warning — even when they're perfectly safe. It's a false alarm: the only way to silence it is to pay Apple **$99/year** to sign + notarize, which a free hobby app skips. Files fetched with `curl` aren't flagged, so this method simply **lets your Mac open the app** without the block. It then registers in **Login Items** and starts with your Mac — set it and forget it.
64
66
 
65
67
  ### 2. Run it via `bunx` (no install)
66
68
 
package/main.js CHANGED
@@ -77,7 +77,7 @@ function checkAlerts(config, d) {
77
77
  if (!armed.has(key)) {
78
78
  armed.add(key)
79
79
  new Notification({
80
- title: 'Claude Usage Monitor',
80
+ title: 'Clauddy',
81
81
  body: `Your ${name} is over ${t}% — now at ${Math.round(pct)}%`,
82
82
  silent: false,
83
83
  }).show()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clauddy",
3
- "version": "1.2.0",
3
+ "version": "1.4.0",
4
4
  "description": "A cute desktop pet that tracks your Claude Code usage",
5
5
  "main": "main.js",
6
6
  "bin": {
@@ -55,8 +55,8 @@
55
55
  "node": ">=24"
56
56
  },
57
57
  "build": {
58
- "appId": "com.renato.claude-usage-monitor",
59
- "productName": "Claude Usage Monitor",
58
+ "appId": "app.clauddy",
59
+ "productName": "Clauddy",
60
60
  "directories": {
61
61
  "output": "dist"
62
62
  },
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Claude Usage Monitor</title>
6
+ <title>Clauddy</title>
7
7
  <link rel="stylesheet" href="style.css" />
8
8
  </head>
9
9
  <body class="state-idle">