mudra-skills 3.0.7 → 3.1.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/package.json
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mudra-skills",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.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": {
|
|
7
7
|
"mudra-skills": "bin/cli.js"
|
|
8
8
|
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"sync": "node scripts/sync-skills.mjs",
|
|
11
|
+
"validate": "node scripts/validate.mjs",
|
|
12
|
+
"version": "npm run sync",
|
|
13
|
+
"prepack": "npm run sync"
|
|
14
|
+
},
|
|
9
15
|
"author": {
|
|
10
16
|
"name": "Wearable Devices",
|
|
11
17
|
"email": "jabbour.d@wearabledevices.co.il"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mudra-master
|
|
3
|
-
version: 3.
|
|
3
|
+
version: 3.1.0
|
|
4
4
|
description: Master router for Mudra Band app builds. Use when the user describes an app, experience, prototype, timer, counter, or tool to build with the Mudra Band but has not made clear whether they want a 2D (flat/screen) or 3D (spatial/XR/VR/AR) version. This skill classifies the prompt deterministically and hands off the original prompt verbatim to either mudra-preview (2D) or mudra-xr (3D), asking exactly one 2D-or-3D disambiguation question only when the dimension cannot be inferred. Do not use for pure code edits, repo questions, or any request that is not a Mudra-app build.
|
|
5
5
|
---
|
|
6
6
|
# Mudra Master Skill
|
|
@@ -13,7 +13,7 @@ This skill emits no app artifacts of its own. Its sole outputs are a routing dec
|
|
|
13
13
|
|
|
14
14
|
Activate when the user:
|
|
15
15
|
|
|
16
|
-
- Describes something they want to **build / make / create /
|
|
16
|
+
- Describes something they want to **build / make / create / prototype** with the Mudra Band — an app, experience, tool, timer, counter, demo, game, dashboard, visualizer, panel, or scene — AND
|
|
17
17
|
- Has not made clear whether they want a 2D (screen-based) or 3D (spatial / XR / VR / AR) version.
|
|
18
18
|
|
|
19
19
|
### The verbatim-prompt rule (FR-012)
|
|
@@ -43,8 +43,6 @@ Before running any rule: if the trimmed prompt is **empty**, do NOT run the clas
|
|
|
43
43
|
|
|
44
44
|
### 3D cue tokens
|
|
45
45
|
|
|
46
|
-
**Fixed built-in constant. Changing this list requires a new `version` bump in this SKILL.md's frontmatter (FR-018).**
|
|
47
|
-
|
|
48
46
|
Whole-word match (case-insensitive): `XR`, `VR`, `AR`.
|
|
49
47
|
|
|
50
48
|
Contiguous-substring match (case-insensitive): `immersive`, `spatial`, `room-scale`, `world-space`, `in 3d space`, `headset`, `stereo`.
|
|
@@ -53,8 +51,6 @@ Rule-5 evaluation order is the order above: `XR` is checked first, then `VR`, `A
|
|
|
53
51
|
|
|
54
52
|
### 2D cue tokens
|
|
55
53
|
|
|
56
|
-
**Fixed built-in constant. Changing this list requires a new `version` bump in this SKILL.md's frontmatter (FR-018).**
|
|
57
|
-
|
|
58
54
|
Whole-word match (case-insensitive): `flat`, `HUD`.
|
|
59
55
|
|
|
60
56
|
Contiguous-substring match (case-insensitive): `on-screen`, `on my screen`, `dashboard`, `screen-based`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mudra-preview
|
|
3
|
-
version: 3.
|
|
3
|
+
version: 3.1.0
|
|
4
4
|
description: Generate a working Mudra Band interactive app preview as a single-file HTML. Use when the user describes a Mudra-controlled experience (gesture, pressure, navigation, IMU, SNC), wants to prototype a Mudra Companion app, or asks to build/preview a Mudra app.
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mudra-preview
|
|
3
|
-
version: 3.
|
|
3
|
+
version: 3.1.0
|
|
4
4
|
description: Generate a working Mudra Band interactive app preview as a single-file HTML. Use when the user describes a Mudra-controlled experience (gesture, pressure, navigation, IMU, SNC), wants to prototype a Mudra Companion app, or asks to build/preview a Mudra app.
|
|
5
5
|
---
|
|
6
6
|
|
package/skills/mudra-xr/SKILL.md
CHANGED