mudra-skills 1.0.0 → 1.0.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.
- package/README.md +62 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# mudra-skills
|
|
2
|
+
|
|
3
|
+
Claude Code skills for building [Mudra Band](https://wearabledevices.co.il) apps — generate 2D flat/screen apps, 3D/XR experiences, or let the router auto-classify your prompt.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx mudra-skills
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Then restart Claude Code or run `/reload-plugins`.
|
|
12
|
+
|
|
13
|
+
## What You Get
|
|
14
|
+
|
|
15
|
+
Three skills installed to `~/.claude/plugins/mudra/`:
|
|
16
|
+
|
|
17
|
+
| Skill | Invoke | Description |
|
|
18
|
+
|---|---|---|
|
|
19
|
+
| **mudra-master** | `/mudra:mudra-master` | Auto-router — classifies your prompt and hands off to 2D or 3D |
|
|
20
|
+
| **mudra-preview** | `/mudra:mudra-preview` | Generates single-file HTML 2D apps |
|
|
21
|
+
| **mudra-xr** | `/mudra:mudra-xr` | Generates single-file HTML 3D/XR apps using XR Blocks |
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
Just describe what you want to build in Claude Code:
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
/mudra:mudra-master build a gesture-controlled music player
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Or let the router figure it out — describe an app idea and it will classify it as 2D or 3D automatically.
|
|
32
|
+
|
|
33
|
+
## What Gets Generated
|
|
34
|
+
|
|
35
|
+
Every generated app includes:
|
|
36
|
+
- Mudra Band WebSocket connection (`ws://127.0.0.1:8766`)
|
|
37
|
+
- Mock fallback + simulator panel (works without the band)
|
|
38
|
+
- Keyboard shortcuts for every subscribed signal
|
|
39
|
+
- Connection status indicator
|
|
40
|
+
|
|
41
|
+
## Mudra Signals
|
|
42
|
+
|
|
43
|
+
| Signal | Type | Use for |
|
|
44
|
+
|---|---|---|
|
|
45
|
+
| `gesture` | discrete | finger pinches (index, middle, ring, little, thumb, grab) |
|
|
46
|
+
| `button` | discrete | hardware button press/release |
|
|
47
|
+
| `pressure` | analog | continuous squeeze force (0–1) |
|
|
48
|
+
| `navigation` | pointer | 2D cursor delta (x, y) |
|
|
49
|
+
| `nav_direction` | discrete | swipe direction (up/down/left/right) |
|
|
50
|
+
| `imu_acc` | analog | accelerometer (x, y, z) |
|
|
51
|
+
| `imu_gyro` | analog | gyroscope (x, y, z) |
|
|
52
|
+
| `snc` | analog | 3-channel bio signal |
|
|
53
|
+
| `battery` | discrete | battery level |
|
|
54
|
+
|
|
55
|
+
## Requirements
|
|
56
|
+
|
|
57
|
+
- [Claude Code](https://claude.ai/code) CLI
|
|
58
|
+
- Node.js 18+
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
|
|
62
|
+
MIT
|