@smorky85/auradkit-skill 5.3.0 → 5.3.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/bin/install.js +2 -1
- package/package.json +9 -2
package/bin/install.js
CHANGED
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
const fs = require('fs');
|
|
8
8
|
const path = require('path');
|
|
9
9
|
|
|
10
|
-
const
|
|
10
|
+
const HOME = process.env.HOME || process.env.USERPROFILE || '';
|
|
11
|
+
const SKILL_DIR = path.join(HOME, '.claude', 'skills', 'auradkit');
|
|
11
12
|
const REF_DIR = path.join(SKILL_DIR, 'references');
|
|
12
13
|
const SRC_DIR = path.join(__dirname, '..', 'skill');
|
|
13
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smorky85/auradkit-skill",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"description": "AuraDKit — Design Intelligence Skill for Claude Code. 455개 사이트 학습 기반 S-Grade UI 생성.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"auradkit-skill": "bin/install.js"
|
|
@@ -9,7 +9,14 @@
|
|
|
9
9
|
"bin/",
|
|
10
10
|
"skill/"
|
|
11
11
|
],
|
|
12
|
-
"keywords": [
|
|
12
|
+
"keywords": [
|
|
13
|
+
"claude-code",
|
|
14
|
+
"skill",
|
|
15
|
+
"design",
|
|
16
|
+
"ui",
|
|
17
|
+
"auradkit",
|
|
18
|
+
"design-system"
|
|
19
|
+
],
|
|
13
20
|
"author": "smorky85",
|
|
14
21
|
"license": "MIT",
|
|
15
22
|
"repository": {
|