mozaic-mcp-server 1.1.2 → 2.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/INSTALLATION.md +48 -14
- package/README.md +28 -14
- package/bin/install.js +560 -0
- package/dist/__tests__/skills-scripts.test.d.ts +2 -0
- package/dist/__tests__/skills-scripts.test.d.ts.map +1 -0
- package/dist/__tests__/skills-scripts.test.js +404 -0
- package/dist/__tests__/skills-scripts.test.js.map +1 -0
- package/package.json +13 -8
- package/skills/mozaic-css-utilities/scripts/get-utility.sh +3 -4
- package/skills/mozaic-css-utilities/scripts/list-utilities.sh +1 -1
- package/skills/mozaic-design-tokens/scripts/get-tokens.sh +9 -1
- package/skills/mozaic-design-tokens/scripts/search-docs.sh +2 -2
- package/skills/mozaic-icons/scripts/get-icon.sh +2 -2
- package/skills/mozaic-icons/scripts/search-icons.sh +7 -14
- package/skills/mozaic-react-builder/scripts/generate-component.sh +24 -13
- package/skills/mozaic-react-builder/scripts/get-component.sh +11 -30
- package/skills/mozaic-react-builder/scripts/get-install-info.sh +1 -1
- package/skills/mozaic-react-builder/scripts/list-components.sh +1 -1
- package/skills/mozaic-vue-builder/scripts/generate-component.sh +25 -14
- package/skills/mozaic-vue-builder/scripts/get-component.sh +14 -37
- package/skills/mozaic-vue-builder/scripts/get-install-info.sh +1 -1
- package/skills/mozaic-vue-builder/scripts/list-components.sh +1 -1
- package/data/mozaic.db-shm +0 -0
- package/data/mozaic.db-wal +0 -0
package/INSTALLATION.md
CHANGED
|
@@ -2,32 +2,58 @@
|
|
|
2
2
|
|
|
3
3
|
This package provides **two installation modes**: Skills (recommended) and MCP Server.
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
**Install skills for Claude Code:**
|
|
5
|
+
## Interactive Mode (Easiest!)
|
|
8
6
|
|
|
9
7
|
```bash
|
|
10
|
-
npx mozaic-
|
|
8
|
+
npx adeo-mozaic-install-tools
|
|
11
9
|
```
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
This launches an **interactive checkbox interface** where you can:
|
|
12
|
+
- ✅ Select which skills to install (or deselect to uninstall)
|
|
13
|
+
- ✅ Toggle MCP server on/off
|
|
14
|
+
- ✅ See what's currently installed
|
|
15
|
+
- ✅ Make changes and apply them all at once
|
|
16
|
+
|
|
17
|
+
Perfect for first-time installation or managing individual components!
|
|
18
|
+
|
|
19
|
+
## CLI Commands
|
|
14
20
|
|
|
15
|
-
|
|
21
|
+
For quick operations without prompts:
|
|
16
22
|
|
|
17
|
-
|
|
23
|
+
### Install Commands
|
|
18
24
|
|
|
19
25
|
```bash
|
|
20
|
-
|
|
26
|
+
# Install everything (skills + MCP server)
|
|
27
|
+
npx adeo-mozaic-install-tools all
|
|
28
|
+
|
|
29
|
+
# Install only Claude Code skills
|
|
30
|
+
npx adeo-mozaic-install-tools skills
|
|
31
|
+
|
|
32
|
+
# Install only MCP server for Claude Desktop
|
|
33
|
+
npx adeo-mozaic-install-tools mcp
|
|
21
34
|
```
|
|
22
35
|
|
|
23
|
-
|
|
36
|
+
### Status & Help
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# Check what's installed
|
|
40
|
+
npx adeo-mozaic-install-tools list
|
|
24
41
|
|
|
25
|
-
|
|
42
|
+
# Show all available commands
|
|
43
|
+
npx adeo-mozaic-install-tools --help
|
|
44
|
+
```
|
|
26
45
|
|
|
27
|
-
|
|
46
|
+
### Remove Commands
|
|
28
47
|
|
|
29
48
|
```bash
|
|
30
|
-
|
|
49
|
+
# Remove everything
|
|
50
|
+
npx adeo-mozaic-install-tools remove all
|
|
51
|
+
|
|
52
|
+
# Remove only skills
|
|
53
|
+
npx adeo-mozaic-install-tools remove skills
|
|
54
|
+
|
|
55
|
+
# Remove only MCP server
|
|
56
|
+
npx adeo-mozaic-install-tools remove mcp
|
|
31
57
|
```
|
|
32
58
|
|
|
33
59
|
## What Gets Installed
|
|
@@ -84,7 +110,15 @@ Skills will activate automatically in Claude Code based on context.
|
|
|
84
110
|
|
|
85
111
|
## Uninstallation
|
|
86
112
|
|
|
87
|
-
###
|
|
113
|
+
### Interactive Uninstall (Recommended)
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
npx mozaic-install
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
Use the same interactive installer to **deselect** components you want to remove. It shows what's currently installed - just uncheck items to uninstall them!
|
|
120
|
+
|
|
121
|
+
### Manual Uninstall - Remove Skills
|
|
88
122
|
|
|
89
123
|
```bash
|
|
90
124
|
npx mozaic-mcp-server uninstall-skills
|
|
@@ -94,7 +128,7 @@ This removes:
|
|
|
94
128
|
- All 5 skills from `~/.claude/skills/`
|
|
95
129
|
- Database from `~/.claude/mozaic.db`
|
|
96
130
|
|
|
97
|
-
### Remove MCP Server
|
|
131
|
+
### Manual Uninstall - Remove MCP Server
|
|
98
132
|
|
|
99
133
|
```bash
|
|
100
134
|
npx mozaic-mcp-server uninstall-mcp
|
package/README.md
CHANGED
|
@@ -28,32 +28,46 @@ This package includes **5 self-contained Claude Code skills** with interactive,
|
|
|
28
28
|
|
|
29
29
|
## Installation
|
|
30
30
|
|
|
31
|
-
**
|
|
31
|
+
**Interactive mode (recommended):**
|
|
32
32
|
```bash
|
|
33
|
-
npx mozaic-
|
|
33
|
+
npx adeo-mozaic-install-tools
|
|
34
|
+
# or
|
|
35
|
+
npx adeo-mozaic-install-tools select
|
|
34
36
|
```
|
|
37
|
+
Select individual skills and MCP server with checkboxes!
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
**Alternative - Install as MCP server:**
|
|
39
|
+
**Quick install commands:**
|
|
39
40
|
```bash
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
# Install everything (skills + MCP server)
|
|
42
|
+
npx adeo-mozaic-install-tools all
|
|
42
43
|
|
|
43
|
-
|
|
44
|
+
# Or install just skills for Claude Code
|
|
45
|
+
npx adeo-mozaic-install-tools skills
|
|
46
|
+
|
|
47
|
+
# Or install just MCP server for Claude Desktop
|
|
48
|
+
npx adeo-mozaic-install-tools mcp
|
|
49
|
+
```
|
|
44
50
|
|
|
45
|
-
**
|
|
51
|
+
**Check what's installed:**
|
|
46
52
|
```bash
|
|
47
|
-
npx mozaic-
|
|
53
|
+
npx adeo-mozaic-install-tools list
|
|
48
54
|
```
|
|
49
55
|
|
|
50
56
|
**Uninstall:**
|
|
51
57
|
```bash
|
|
52
|
-
# Remove
|
|
53
|
-
npx mozaic-
|
|
58
|
+
# Remove everything
|
|
59
|
+
npx adeo-mozaic-install-tools remove all
|
|
54
60
|
|
|
55
|
-
# Remove
|
|
56
|
-
npx mozaic-
|
|
61
|
+
# Remove just skills
|
|
62
|
+
npx adeo-mozaic-install-tools remove skills
|
|
63
|
+
|
|
64
|
+
# Remove just MCP server
|
|
65
|
+
npx adeo-mozaic-install-tools remove mcp
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
**Help:**
|
|
69
|
+
```bash
|
|
70
|
+
npx adeo-mozaic-install-tools --help
|
|
57
71
|
```
|
|
58
72
|
|
|
59
73
|
**Learn more:** [SKILLS.md](./SKILLS.md) | [INSTALLATION.md](./INSTALLATION.md)
|