clauddy 1.3.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
 
@@ -60,7 +60,9 @@ One command — it downloads the latest release and drops it in `/Applications`:
60
60
  curl -fsSL https://raw.githubusercontent.com/renatoaug/claude-usage-monitor/main/install.sh | bash
61
61
  ```
62
62
 
63
- No Gatekeeper warning: files fetched with `curl` aren't quarantined like browser downloads, so the (unsigned) app just opens. It registers itself in **Login Items**, so it **starts automatically** with your Mac set it and forget it.
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).
64
+
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
 
@@ -74,19 +76,6 @@ The first run downloads Electron, so give it a moment. Handy for a quick run, bu
74
76
 
75
77
  > The app keeps its data in `~/.claude-usage-monitor`, regardless of how you run it.
76
78
 
77
- <details>
78
- <summary>Prefer to download the app by hand?</summary>
79
-
80
- Grab the **`…-mac.zip`** from [Releases](https://github.com/renatoaug/claude-usage-monitor/releases/latest), unzip, and drag the app to `/Applications`. The browser quarantines it, so macOS will call it *"damaged"* — clear the flag once (Terminal needs **Full Disk Access**):
81
-
82
- ```bash
83
- xattr -dr com.apple.quarantine "/Applications/Claude Usage Monitor.app"
84
- ```
85
-
86
- The `curl` installer above avoids all of this.
87
-
88
- </details>
89
-
90
79
  ## Controls
91
80
 
92
81
  - **Drag** the widget anywhere on screen
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.3.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">