@spardutti/claude-skills 1.15.0 → 1.16.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 +1 -0
- package/lib/prompt.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,6 +49,7 @@ Together, these force Claude to explicitly evaluate and activate relevant skills
|
|
|
49
49
|
| `tauri-v2` | Tauri v2 — IPC commands, plugins, window management, system tray, global shortcuts, capabilities/permissions, events |
|
|
50
50
|
| `dnd-kit` | @dnd-kit — sortable lists, sensors, collision detection, drag overlays, multi-container (kanban), accessibility |
|
|
51
51
|
| `framer-motion` | Motion (Framer Motion) — AnimatePresence, layout animations, variants, gestures, useAnimate, performance |
|
|
52
|
+
| `single-responsibility` | Single Responsibility Principle — language-agnostic SRP, file size limits, CQS, separation of concerns, smell tests |
|
|
52
53
|
|
|
53
54
|
## GitHub Authentication
|
|
54
55
|
|
package/lib/prompt.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { checkbox, Separator } from "@inquirer/prompts";
|
|
2
2
|
import chalk from "chalk";
|
|
3
3
|
|
|
4
|
-
const CATEGORY_ORDER = ["Frontend", "TypeScript", "Backend", "Quality", "General"];
|
|
4
|
+
const CATEGORY_ORDER = ["Frontend", "Desktop", "TypeScript", "Backend", "Quality", "General"];
|
|
5
5
|
const COMMAND_CATEGORY_ORDER = ["Workflow", "General"];
|
|
6
6
|
|
|
7
7
|
function humanName(skill) {
|