Skip to content

Commit e806aa8

Browse files
Update README.md
1 parent 132858c commit e806aa8

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

DEVELOPMENT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ Container-based deployment with optional web dashboard for team environments.
6666
**🚀 Container Deployment**:
6767
```bash
6868
# Lightweight monitoring
69-
docker run -e PLAN=max5 maciek/claude-usage-monitor
69+
docker run -e PLAN=max5 maciek/claude-monitor
7070

7171
# With web dashboard
72-
docker run -p 8080:8080 maciek/claude-usage-monitor --web-mode
72+
docker run -p 8080:8080 maciek/claude-monitor --web-mode
7373

7474
# Persistent data
75-
docker run -v ~/.claude_monitor:/data maciek/claude-usage-monitor
75+
docker run -v ~/.claude_monitor:/data maciek/claude-monitor
7676
```
7777

7878
**📊 Web Dashboard**:

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ claude-monitor # or cmonitor, ccmonitor for short
147147
> **⚠️ Important**: On modern Linux distributions (Ubuntu 23.04+, Debian 12+, Fedora 38+), you may encounter an "externally-managed-environment" error. Instead of using --break-system-packages, we strongly recommend:
148148
> 1. **Use uv instead** (see above) - it's safer and easier
149149
> 2. **Use a virtual environment** - python3 -m venv myenv && source myenv/bin/activate
150-
> 3. **Use pipx** - pipx install claude-usage-monitor
150+
> 3. **Use pipx** - pipx install claude-monitor
151151
>
152152
> See the Troubleshooting section for detailed solutions.
153153
@@ -202,12 +202,12 @@ claude-monitor --help
202202

203203
#### Plan Options
204204

205-
| Plan | Token Limit | Cost Limit | Description |
206-
|------|-------------|------------|-------------|
207-
| pro | 19,000 | $18.00 | Claude Pro subscription |
208-
| max5 | 88,000 | $35.00 | Claude Max5 subscription |
209-
| max20 | 220,000 | $140.00 | Claude Max20 subscription |
210-
| custom | P90-based | $200.00 | Auto-detection with ML analysis |
205+
| Plan | Token Limit | Cost Limit | Description |
206+
|------|-------------|------------------|-------------|
207+
| pro | 19,000 | $18.00 | Claude Pro subscription |
208+
| max5 | 88,000 | $35.00 | Claude Max5 subscription |
209+
| max20 | 220,000 | $140.00 | Claude Max20 subscription |
210+
| custom | P90-based | (default) $50.00 | Auto-detection with ML analysis |
211211

212212
#### Command Aliases
213213

@@ -508,12 +508,12 @@ The monitor calculates burn rate using sophisticated analysis:
508508

509509
#### v3.0.0 Updated Plan Limits
510510

511-
| Plan | Limit (Tokens) | Cost Limit | Messages | Algorithm |
512-
|------|----------------|------------|----------|-----------|
513-
| **Claude Pro** | 19,000 | $18.00 | 250 | Fixed limit |
514-
| **Claude Max5** | 88,000 | $35.00 | 1,000 | Fixed limit |
515-
| **Claude Max20** | 220,000 | $140.00 | 2,000 | Fixed limit |
516-
| **Custom** | P90-based | $200.00 | 250+ | Machine learning |
511+
| Plan | Limit (Tokens) | Cost Limit | Messages | Algorithm |
512+
|------|----------------|------------------|----------|-----------|
513+
| **Claude Pro** | 19,000 | $18.00 | 250 | Fixed limit |
514+
| **Claude Max5** | 88,000 | $35.00 | 1,000 | Fixed limit |
515+
| **Claude Max20** | 220,000 | $140.00 | 2,000 | Fixed limit |
516+
| **Custom** | P90-based | (default) $50.00 | 250+ | Machine learning |
517517

518518
#### Advanced Limit Detection
519519

src/claude_monitor/core/plans.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def formatted_token_limit(self) -> str:
6565
},
6666
PlanType.CUSTOM: {
6767
"token_limit": 44_000,
68-
"cost_limit": 200.0,
68+
"cost_limit": 50.0,
6969
"message_limit": 250,
7070
"display_name": "Custom",
7171
},

0 commit comments

Comments
 (0)