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 +10 -8
- 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
|
|
|
@@ -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.
|
|
55
|
+
### 1. Install as an app — opens at login (recommended)
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
One command — it downloads the latest release and drops it in `/Applications`:
|
|
58
58
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
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
|
|
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
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