ginskill-init 1.0.1 → 1.0.2
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 +109 -46
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,77 +1,140 @@
|
|
|
1
|
-
#
|
|
1
|
+
# GinStudio Skills
|
|
2
2
|
|
|
3
|
-
Claude Code skills and
|
|
3
|
+
Claude Code skills and agents — install with one command, select what you need.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Quick Start
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
| icon-generator | Generate SVG icon components (.tsx) for React Native |
|
|
11
|
-
| mobile-app-review | Pre-submission audit for App Store & Google Play |
|
|
12
|
-
| mongodb | MongoDB & Mongoose best practices for NestJS |
|
|
13
|
-
| nestjs-architecture | NestJS feature-based architecture patterns |
|
|
14
|
-
| performance | React Native performance optimization |
|
|
15
|
-
| react-fsd-architecture | Feature-Sliced Design (FSD) for frontend projects |
|
|
16
|
-
| react-query | TanStack React Query v5+ best practices |
|
|
17
|
-
| review-code | Comprehensive code review for fullstack monorepos |
|
|
18
|
-
| security-scanner | OWASP-aligned security audit |
|
|
19
|
-
| ui-ux-pro-max | Design intelligence with styles, palettes, typography |
|
|
20
|
-
|
|
21
|
-
## Agents
|
|
7
|
+
```bash
|
|
8
|
+
npx ginskill-init
|
|
9
|
+
```
|
|
22
10
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
| frontend-design | Frontend designer with Next.js, Tailwind, shadcn/ui |
|
|
27
|
-
| mobile-reviewer | React Native/Expo app reviewer for store compliance |
|
|
28
|
-
| review-code | Senior code reviewer for fullstack monorepos |
|
|
29
|
-
| security-scanner | Security auditor (OWASP Top 10, LLM, Mobile) |
|
|
30
|
-
| tester | QA engineer and testing specialist |
|
|
11
|
+
Interactive TUI — use **Space** to select, **A** to toggle all, **Enter** to confirm.
|
|
12
|
+
|
|
13
|
+
---
|
|
31
14
|
|
|
32
15
|
## Installation
|
|
33
16
|
|
|
34
|
-
|
|
17
|
+
### Install to current project
|
|
35
18
|
|
|
36
19
|
```bash
|
|
37
|
-
|
|
20
|
+
npx ginskill-init
|
|
38
21
|
```
|
|
39
22
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
23
|
+
### Install to a specific project
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npx ginskill-init -t /path/to/project
|
|
27
|
+
```
|
|
45
28
|
|
|
46
|
-
|
|
29
|
+
### Install globally (available in all projects)
|
|
47
30
|
|
|
48
31
|
```bash
|
|
49
|
-
|
|
32
|
+
npx ginskill-init -g
|
|
50
33
|
```
|
|
51
34
|
|
|
52
|
-
###
|
|
35
|
+
### Non-interactive (CI / scripts)
|
|
53
36
|
|
|
54
|
-
|
|
37
|
+
```bash
|
|
38
|
+
npx ginskill-init --all # Install everything
|
|
39
|
+
npx ginskill-init --skills react-query,mongodb # Specific skills
|
|
40
|
+
npx ginskill-init --agents developer,tester # Specific agents
|
|
41
|
+
npx ginskill-init --all -g # Everything, globally
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Commands
|
|
47
|
+
|
|
48
|
+
| Command | Description |
|
|
49
|
+
|---------|-------------|
|
|
50
|
+
| `ginskill-init` | Interactive install (default) |
|
|
51
|
+
| `ginskill-init upgrade` | Re-install installed skills/agents from latest bundled version |
|
|
52
|
+
| `ginskill-init uninstall` | Remove installed skills/agents |
|
|
53
|
+
| `ginskill-init status` | Show what's installed vs available |
|
|
54
|
+
| `ginskill-init list` | List all available skills & agents |
|
|
55
|
+
| `ginskill-init versions` | Show all published npm versions |
|
|
55
56
|
|
|
57
|
+
### Flags (work on all commands)
|
|
58
|
+
|
|
59
|
+
| Flag | Short | Description |
|
|
60
|
+
|------|-------|-------------|
|
|
61
|
+
| `--global` | `-g` | Target `~/.claude/` (available in all projects) |
|
|
62
|
+
| `--target <path>` | `-t` | Target a specific project path |
|
|
63
|
+
| `--all` | `-a` | Skip prompts, select all |
|
|
64
|
+
|
|
65
|
+
### Examples
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
# Check what's installed in current project
|
|
69
|
+
ginskill-init status
|
|
70
|
+
|
|
71
|
+
# Check a specific project
|
|
72
|
+
ginskill-init status -t /path/to/project
|
|
73
|
+
|
|
74
|
+
# Upgrade all installed skills to latest version
|
|
75
|
+
npx ginskill-init@latest upgrade --all
|
|
76
|
+
|
|
77
|
+
# Uninstall interactively
|
|
78
|
+
ginskill-init uninstall
|
|
79
|
+
|
|
80
|
+
# Remove from a specific project
|
|
81
|
+
ginskill-init uninstall -t /path/to/project
|
|
56
82
|
```
|
|
57
|
-
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## Where files are installed
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
<project>/
|
|
58
90
|
.claude/
|
|
59
91
|
skills/
|
|
60
|
-
mongodb/SKILL.md # skill directory with SKILL.md entrypoint
|
|
61
92
|
react-query/SKILL.md
|
|
93
|
+
mongodb/SKILL.md
|
|
62
94
|
...
|
|
63
95
|
agents/
|
|
64
|
-
developer.md
|
|
96
|
+
developer.md
|
|
65
97
|
tester.md
|
|
66
98
|
...
|
|
67
99
|
```
|
|
68
100
|
|
|
69
|
-
|
|
101
|
+
After installing, **restart Claude Code** (or type `/agents`) to pick up the new skills and agents.
|
|
70
102
|
|
|
71
|
-
|
|
103
|
+
---
|
|
72
104
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
105
|
+
## Available Skills
|
|
106
|
+
|
|
107
|
+
| Skill | Description |
|
|
108
|
+
|-------|-------------|
|
|
109
|
+
| `ai-asset-generator` | Generate images, videos, icons using KIE AI API |
|
|
110
|
+
| `ai-build-ai` | Master guide for extending Claude Code — skills, agents, MCP, hooks, headless |
|
|
111
|
+
| `icon-generator` | Generate SVG icon components (.tsx) for React Native |
|
|
112
|
+
| `mobile-app-review` | Pre-submission audit for App Store & Google Play |
|
|
113
|
+
| `mongodb` | MongoDB & Mongoose best practices for NestJS |
|
|
114
|
+
| `nestjs-architecture` | NestJS feature-based architecture patterns |
|
|
115
|
+
| `performance` | React Native performance optimization |
|
|
116
|
+
| `react-fsd-architecture` | Feature-Sliced Design (FSD) for frontend projects |
|
|
117
|
+
| `react-query` | TanStack React Query v5+ best practices |
|
|
118
|
+
| `review-code` | Comprehensive code review for fullstack monorepos |
|
|
119
|
+
| `security-scanner` | OWASP-aligned security audit (Top 10, LLM, Mobile) |
|
|
120
|
+
| `ui-ux-pro-max` | Design intelligence with 67 styles, palettes, typography |
|
|
121
|
+
|
|
122
|
+
## Available Agents
|
|
123
|
+
|
|
124
|
+
| Agent | Description |
|
|
125
|
+
|-------|-------------|
|
|
126
|
+
| `developer` | Full-stack developer for features, bugs, production code |
|
|
127
|
+
| `frontend-design` | Frontend designer with Next.js, Tailwind, shadcn/ui |
|
|
128
|
+
| `mobile-reviewer` | React Native/Expo app reviewer for store compliance |
|
|
129
|
+
| `review-code` | Senior code reviewer for fullstack monorepos |
|
|
130
|
+
| `security-scanner` | Security auditor (OWASP Top 10, LLM, Mobile) |
|
|
131
|
+
| `tester` | QA engineer and testing specialist |
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## Contributing
|
|
76
136
|
|
|
77
|
-
|
|
137
|
+
See [DEVELOPMENT.md](./DEVELOPMENT.md) for:
|
|
138
|
+
- How to add a new skill or agent
|
|
139
|
+
- How to release a new version to npm
|
|
140
|
+
- CLI development and testing guide
|