zuppaclaude 1.2.0 → 1.2.1
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.
|
@@ -46,6 +46,12 @@ Display ZuppaClaude commands and documentation.
|
|
|
46
46
|
| `/zc:settings import` | Import settings |
|
|
47
47
|
| `/zc:settings reset` | Reset to defaults |
|
|
48
48
|
|
|
49
|
+
### Claude HUD
|
|
50
|
+
|
|
51
|
+
| Command | Description |
|
|
52
|
+
|---------|-------------|
|
|
53
|
+
| `/zc:hud` | Claude HUD setup instructions |
|
|
54
|
+
|
|
49
55
|
## Quick Start
|
|
50
56
|
|
|
51
57
|
```
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: zc:hud
|
|
3
|
+
description: "Claude HUD setup instructions"
|
|
4
|
+
category: utility
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# /zc:hud - Claude HUD Setup
|
|
8
|
+
|
|
9
|
+
Display Claude HUD installation instructions.
|
|
10
|
+
|
|
11
|
+
## What is Claude HUD?
|
|
12
|
+
|
|
13
|
+
Claude HUD is a status display plugin that provides:
|
|
14
|
+
- Real-time context usage meter
|
|
15
|
+
- Active tool tracking
|
|
16
|
+
- Running agent status
|
|
17
|
+
- Todo progress display
|
|
18
|
+
|
|
19
|
+
## Installation Steps
|
|
20
|
+
|
|
21
|
+
Run these commands inside Claude Code:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
1. /plugin marketplace add jarrodwatts/claude-hud
|
|
25
|
+
2. /plugin install claude-hud
|
|
26
|
+
3. /claude-hud:setup
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Requirements
|
|
30
|
+
|
|
31
|
+
- Claude Code v1.0.80 or later
|
|
32
|
+
- Plugin support enabled
|
|
33
|
+
|
|
34
|
+
## CLI Alternative
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
setup-claude-hud
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Execution
|
|
41
|
+
|
|
42
|
+
When this command is invoked:
|
|
43
|
+
1. Show the Claude HUD information above
|
|
44
|
+
2. Guide the user through the installation steps
|
|
45
|
+
3. Explain that they need to run the plugin commands in Claude Code
|
|
@@ -53,7 +53,7 @@ class CommandsInstaller {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
this.logger.success(`Installed ${installed} slash commands`);
|
|
56
|
-
this.logger.info('Commands available: /zc:backup, /zc:restore, /zc:cloud, /zc:session, /zc:settings, /zc:help');
|
|
56
|
+
this.logger.info('Commands available: /zc:backup, /zc:restore, /zc:cloud, /zc:session, /zc:settings, /zc:hud, /zc:help');
|
|
57
57
|
|
|
58
58
|
return true;
|
|
59
59
|
} catch (error) {
|
|
@@ -120,6 +120,7 @@ class CommandsInstaller {
|
|
|
120
120
|
{ cmd: '/zc:cloud', desc: 'Cloud backup management' },
|
|
121
121
|
{ cmd: '/zc:session', desc: 'Session management' },
|
|
122
122
|
{ cmd: '/zc:settings', desc: 'Settings management' },
|
|
123
|
+
{ cmd: '/zc:hud', desc: 'Claude HUD setup instructions' },
|
|
123
124
|
{ cmd: '/zc:help', desc: 'Show help' }
|
|
124
125
|
];
|
|
125
126
|
|