mudra-skills 1.1.0 → 1.2.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 +42 -17
- package/bin/cli.js +0 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,43 +1,68 @@
|
|
|
1
1
|
# mudra-skills
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Skills for building [Mudra Band](https://wearabledevices.co.il) apps — works with Claude, Codex, and Antigravity. Generate 2D flat/screen apps, 3D/XR experiences, or let the router auto-classify your prompt.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
-
### Recommended
|
|
8
|
-
|
|
9
7
|
```bash
|
|
10
8
|
npx mudra-skills
|
|
11
9
|
```
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
You'll be prompted to choose your AI assistant:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
Which AI assistant are you using?
|
|
15
|
+
(↑↓ to move, Enter to select)
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
❯ Claude
|
|
18
|
+
Codex
|
|
19
|
+
Antigravity
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Or skip the prompt with the `--llm` flag:
|
|
16
23
|
|
|
17
24
|
```bash
|
|
18
|
-
|
|
19
|
-
mudra-skills
|
|
25
|
+
npx mudra-skills --llm claude
|
|
26
|
+
npx mudra-skills --llm codex
|
|
27
|
+
npx mudra-skills --llm antigravity
|
|
20
28
|
```
|
|
21
29
|
|
|
30
|
+
### Where skills get installed
|
|
31
|
+
|
|
32
|
+
| AI | Install path | Invoke with |
|
|
33
|
+
|---|---|---|
|
|
34
|
+
| **Claude** | `~/.claude/skills/` | `/mudra-master` |
|
|
35
|
+
| **Codex** | `~/.agents/skills/` | `$mudra-master` |
|
|
36
|
+
| **Antigravity** | `~/.gemini/antigravity/skills/` | `@mudra-master` |
|
|
37
|
+
|
|
22
38
|
## What You Get
|
|
23
39
|
|
|
24
|
-
Three skills installed
|
|
40
|
+
Three skills, installed as folders:
|
|
25
41
|
|
|
26
|
-
| Skill |
|
|
27
|
-
|
|
28
|
-
| **mudra-master** |
|
|
29
|
-
| **mudra-preview** |
|
|
30
|
-
| **mudra-xr** |
|
|
42
|
+
| Skill | Description |
|
|
43
|
+
|---|---|
|
|
44
|
+
| **mudra-master** | Auto-router — classifies your prompt and hands off to 2D or 3D |
|
|
45
|
+
| **mudra-preview** | Generates single-file HTML 2D apps |
|
|
46
|
+
| **mudra-xr** | Generates single-file HTML 3D/XR apps using XR Blocks |
|
|
31
47
|
|
|
32
48
|
## Usage
|
|
33
49
|
|
|
34
|
-
|
|
50
|
+
### Claude
|
|
51
|
+
```
|
|
52
|
+
/mudra-master build a gesture-controlled music player
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Codex
|
|
56
|
+
```
|
|
57
|
+
$mudra-master build a gesture-controlled music player
|
|
58
|
+
```
|
|
35
59
|
|
|
60
|
+
### Antigravity
|
|
36
61
|
```
|
|
37
|
-
|
|
62
|
+
@mudra-master build a gesture-controlled music player
|
|
38
63
|
```
|
|
39
64
|
|
|
40
|
-
Or
|
|
65
|
+
Or just describe what you want — the router will classify it as 2D or 3D automatically.
|
|
41
66
|
|
|
42
67
|
## What Gets Generated
|
|
43
68
|
|
|
@@ -63,8 +88,8 @@ Every generated app includes:
|
|
|
63
88
|
|
|
64
89
|
## Requirements
|
|
65
90
|
|
|
66
|
-
- [Claude Code](https://claude.ai/code) CLI
|
|
67
91
|
- Node.js 18+
|
|
92
|
+
- One of: [Claude Code](https://claude.ai/code), [Codex CLI](https://github.com/openai/codex), or Antigravity
|
|
68
93
|
|
|
69
94
|
## License
|
|
70
95
|
|
package/bin/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mudra-skills",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Mudra Band skills for Claude Code, Codex, and Antigravity — 2D, 3D/XR, or auto-classified",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -24,5 +24,8 @@
|
|
|
24
24
|
"gestures",
|
|
25
25
|
"xr",
|
|
26
26
|
"webxr"
|
|
27
|
-
]
|
|
27
|
+
],
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"mudra-skills": "^1.1.0"
|
|
30
|
+
}
|
|
28
31
|
}
|