@codihaus/claude-skills 1.6.18 → 1.6.20
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/knowledge/stacks/_index.md +1 -0
- package/knowledge/stacks/nextjs/_index.md +32 -0
- package/knowledge/stacks/nextjs/references/rsc-patterns.md +705 -0
- package/knowledge/stacks/react/_index.md +21 -0
- package/knowledge/stacks/react/references/performance.md +573 -0
- package/knowledge/stacks/vue/_index.md +750 -0
- package/package.json +1 -1
- package/skills/_registry.md +1 -0
- package/skills/dev-coding/SKILL.md +4 -1
- package/skills/dev-review/SKILL.md +11 -1
package/package.json
CHANGED
package/skills/_registry.md
CHANGED
|
@@ -181,6 +181,7 @@ Technical knowledge - HOW to build with specific tools:
|
|
|
181
181
|
| Stack | Folder | Type |
|
|
182
182
|
|-------|--------|------|
|
|
183
183
|
| React | `stacks/react/` | UI Library |
|
|
184
|
+
| Vue 3 | `stacks/vue/` | Progressive Framework |
|
|
184
185
|
| Next.js | `stacks/nextjs/` | React + SSR Framework |
|
|
185
186
|
| Nuxt.js | `stacks/nuxt/` | Vue + SSR Framework |
|
|
186
187
|
| Directus | `stacks/directus/` | Backend BaaS |
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: dev-coding
|
|
3
3
|
description: Implement features as a Principal Engineering Developer
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# /dev-coding - Implementation Skill
|
|
@@ -68,6 +68,7 @@ You have three layers of knowledge to apply:
|
|
|
68
68
|
|
|
69
69
|
**Stack file mapping:**
|
|
70
70
|
- "React" → `knowledge/stacks/react/_index.md`
|
|
71
|
+
- "Vue" → `knowledge/stacks/vue/_index.md`
|
|
71
72
|
- "Next.js" → `knowledge/stacks/nextjs/_index.md`
|
|
72
73
|
- "Nuxt" → `knowledge/stacks/nuxt/_index.md`
|
|
73
74
|
- "Directus" → `knowledge/stacks/directus/_index.md`
|
|
@@ -178,6 +179,7 @@ Implementation
|
|
|
178
179
|
|
|
179
180
|
2. **Load stack knowledge files:**
|
|
180
181
|
- If "React" detected → Read `knowledge/stacks/react/_index.md`
|
|
182
|
+
- If "Vue" detected → Read `knowledge/stacks/vue/_index.md`
|
|
181
183
|
- If "Next.js" detected → Read `knowledge/stacks/nextjs/_index.md`
|
|
182
184
|
- If "Nuxt" detected → Read `knowledge/stacks/nuxt/_index.md`
|
|
183
185
|
- If "Directus" detected → Read `knowledge/stacks/directus/_index.md`
|
|
@@ -337,6 +339,7 @@ Implementation successful when:
|
|
|
337
339
|
|
|
338
340
|
**Layer 2 - Framework:**
|
|
339
341
|
- `knowledge/stacks/react/_index.md` - React patterns (Hooks, Context, performance)
|
|
342
|
+
- `knowledge/stacks/vue/_index.md` - Vue 3 patterns (Composition API, reactivity, SFC)
|
|
340
343
|
- `knowledge/stacks/nextjs/_index.md` - Next.js patterns (Server Actions, App Router, RSC)
|
|
341
344
|
- `knowledge/stacks/nuxt/_index.md` - Nuxt patterns (composables, Nuxt UI, SSR)
|
|
342
345
|
- `knowledge/stacks/directus/_index.md` - Directus patterns (collections, flows, extensions)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: dev-review
|
|
3
3
|
description: Code review with focus on quality, security, and best practices
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# /dev-review - Code Review
|
|
@@ -162,6 +162,15 @@ After loading stack knowledge (from Context Sources → Step 1), apply framework
|
|
|
162
162
|
- Performance optimizations appropriate (memo, lazy)
|
|
163
163
|
- Lists have stable keys
|
|
164
164
|
|
|
165
|
+
**Vue 3 projects:**
|
|
166
|
+
- Uses `<script setup>` (not Options API)
|
|
167
|
+
- Composables follow naming convention (use*)
|
|
168
|
+
- No destructuring reactive without toRefs
|
|
169
|
+
- ref() accessed with .value in script (not in template)
|
|
170
|
+
- v-for has unique :key
|
|
171
|
+
- No v-for + v-if on same element
|
|
172
|
+
- Props not mutated directly
|
|
173
|
+
|
|
165
174
|
**Next.js projects:**
|
|
166
175
|
- Server vs Client Components used correctly
|
|
167
176
|
- Server Actions have "use server" directive
|
|
@@ -195,6 +204,7 @@ After loading stack knowledge (from Context Sources → Step 1), apply framework
|
|
|
195
204
|
- Extract stack names (look for "Primary Stack" or "Tech Stack" section)
|
|
196
205
|
- Load corresponding knowledge files:
|
|
197
206
|
- If "React" → Read `knowledge/stacks/react/_index.md` → Focus on "For /dev-review" section
|
|
207
|
+
- If "Vue" → Read `knowledge/stacks/vue/_index.md` → Focus on "For /dev-review" section
|
|
198
208
|
- If "Next.js" → Read `knowledge/stacks/nextjs/_index.md` → Focus on "For /dev-review" section
|
|
199
209
|
- If "Nuxt" → Read `knowledge/stacks/nuxt/_index.md` → Focus on "For /dev-review" section
|
|
200
210
|
- If "Directus" → Read `knowledge/stacks/directus/_index.md` → Focus on "For /dev-review" section
|