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 +5 -16
- package/main.js +1 -1
- package/package.json +3 -3
- package/renderer/index.html +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# 🟫
|
|
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="
|
|
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
|
-
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clauddy",
|
|
3
|
-
"version": "1.
|
|
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": "
|
|
59
|
-
"productName": "
|
|
58
|
+
"appId": "app.clauddy",
|
|
59
|
+
"productName": "Clauddy",
|
|
60
60
|
"directories": {
|
|
61
61
|
"output": "dist"
|
|
62
62
|
},
|
package/renderer/index.html
CHANGED