@channeulparks/woorido-skills 1.1.0 → 1.1.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/README.md +9 -16
- package/package.json +2 -2
- package/templates/.claude/skills/woorido/SKILL.md +57 -7
package/README.md
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
|
-
# woorido-skills
|
|
1
|
+
# @channeulparks/woorido-skills
|
|
2
2
|
|
|
3
3
|
WooriDo AI Coding Rules for Claude, Gemini, Antigravity and other AI coding assistants.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx woorido-skills install
|
|
8
|
+
npx @channeulparks/woorido-skills install
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
This will install:
|
|
12
12
|
- `.claude/skills/woorido/SKILL.md` - Unified coding rules
|
|
13
13
|
- `.agent/workflows/*.md` - Antigravity slash commands
|
|
14
14
|
|
|
15
|
+
## Uninstall
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx @channeulparks/woorido-skills uninstall
|
|
19
|
+
```
|
|
20
|
+
|
|
15
21
|
## Usage
|
|
16
22
|
|
|
17
23
|
### Antigravity (Primary)
|
|
@@ -45,25 +51,12 @@ Skills are automatically loaded from `.claude/skills/`.
|
|
|
45
51
|
- WDS (WooriDo Design System) - CSS Modules + CSS Variables
|
|
46
52
|
- React Query (server state) + Zustand (client state)
|
|
47
53
|
- react-hook-form + zod
|
|
48
|
-
- Radix UI
|
|
54
|
+
- Radix UI + vaul + sonner + Framer Motion
|
|
49
55
|
|
|
50
56
|
### Backend
|
|
51
57
|
- Spring Boot 3.2 + Java 21 + MyBatis + Oracle
|
|
52
58
|
- Django 5.0 + DRF + Elasticsearch
|
|
53
59
|
|
|
54
|
-
## Available Workflows
|
|
55
|
-
|
|
56
|
-
| Command | Description |
|
|
57
|
-
|---------|-------------|
|
|
58
|
-
| `/component` | WDS-based React component |
|
|
59
|
-
| `/api-hook` | React Query hook |
|
|
60
|
-
| `/form` | Form with validation |
|
|
61
|
-
| `/page` | Page component |
|
|
62
|
-
| `/test` | Vitest tests |
|
|
63
|
-
| `/spring-api` | Spring Boot REST API |
|
|
64
|
-
| `/mybatis` | MyBatis mapper + XML |
|
|
65
|
-
| `/django-view` | Django REST viewset |
|
|
66
|
-
|
|
67
60
|
## License
|
|
68
61
|
|
|
69
62
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@channeulparks/woorido-skills",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "WooriDo AI Coding Rules for Claude, Gemini, Antigravity and other AI coding assistants",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"templates"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
-
"test": "node bin/cli.js
|
|
14
|
+
"test": "node bin/cli.js list"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"ai",
|
|
@@ -197,23 +197,73 @@ export function CreateChallengeForm() {
|
|
|
197
197
|
|
|
198
198
|
<!-- CSS 변수로 정의된 WDS 토큰 참조 -->
|
|
199
199
|
|
|
200
|
-
**Colors:**
|
|
200
|
+
**Colors (Primary & Grey):**
|
|
201
201
|
- `--color-orange-500` (#E9481E) - Primary brand
|
|
202
|
-
- `--color-
|
|
203
|
-
- `--color-
|
|
202
|
+
- `--color-orange-600` (#D43D16) - Hover state
|
|
203
|
+
- `--color-grey-50` ~ `--color-grey-900` - Warm grey scale
|
|
204
|
+
- `--color-success` (#16A34A) / `--color-warning` (#F59E0B) / `--color-error` (#DC2626)
|
|
205
|
+
|
|
206
|
+
**Financial Colors:**
|
|
207
|
+
- `--color-income` (#F59E0B) - 입금, 충전, 이익 (+)
|
|
208
|
+
- `--color-expense` (#1C1917) - 지출, 출금 (-)
|
|
209
|
+
- `--color-locked` (#78716C) - 보증금, 잠긴 금액
|
|
210
|
+
|
|
211
|
+
**Brix Colors (당도 시스템):**
|
|
212
|
+
- `--color-brix-honey` (#F59E0B) - 60+ 🍯
|
|
213
|
+
- `--color-brix-grape` (#9333EA) - 40~60 🍇
|
|
214
|
+
- `--color-brix-apple` (#F43F5E) - 25~40 🍎
|
|
215
|
+
- `--color-brix-mandarin` (#E9481E) - 12~25 🍊
|
|
216
|
+
- `--color-brix-tomato` (#FCA5A5) - 0~12 🍅
|
|
217
|
+
- `--color-brix-bitter` (#14532D) - <0 🥒
|
|
204
218
|
|
|
205
219
|
**Typography:**
|
|
206
|
-
- `--font-w1`
|
|
207
|
-
- `--font-
|
|
220
|
+
- `--font-w1` (28px/Bold) - 마케팅 헤드라인
|
|
221
|
+
- `--font-w2` (24px/SemiBold) - 화면 타이틀
|
|
222
|
+
- `--font-w3` (20px/SemiBold) - 섹션 헤더
|
|
223
|
+
- `--font-w4` (17px/Regular) - 본문 (Default)
|
|
224
|
+
- `--font-w5` (15px/Regular) - 보조 본문
|
|
225
|
+
- `--font-w6` (13px/Medium) - 캡션, 라벨
|
|
226
|
+
- `--font-w7` (11px/Medium) - 작은 캡션
|
|
227
|
+
- `--font-financial-large/medium/small` - 금액 표시 (tabular-nums)
|
|
208
228
|
|
|
209
229
|
**Shape:**
|
|
210
|
-
- `--radius-sm/md/lg
|
|
230
|
+
- `--radius-sm` (8px) / `--radius-md` (12px) / `--radius-lg` (20px) / `--radius-xl` (24px)
|
|
211
231
|
- `--shadow-sm/md/lg/xl` - Elevation
|
|
212
232
|
|
|
213
233
|
**Motion:**
|
|
214
|
-
- `--motion-duration-fast/normal/slow`
|
|
234
|
+
- `--motion-duration-fast` (150ms) / `--motion-duration-normal` (250ms) / `--motion-duration-slow` (400ms)
|
|
215
235
|
- `--motion-ease-standard/decel/accel/spring`
|
|
216
236
|
|
|
237
|
+
### 2.5 Overlay Libraries
|
|
238
|
+
|
|
239
|
+
<!-- BottomSheet, Toast, Animation 라이브러리 -->
|
|
240
|
+
|
|
241
|
+
| 용도 | 라이브러리 | 사용법 |
|
|
242
|
+
|------|------------|--------|
|
|
243
|
+
| BottomSheet | `vaul` | `<Drawer.Root>` |
|
|
244
|
+
| Toast | `sonner` | `toast('메시지')` |
|
|
245
|
+
| Animation | `framer-motion` | `<motion.div>` |
|
|
246
|
+
|
|
247
|
+
```tsx
|
|
248
|
+
// BottomSheet 예시
|
|
249
|
+
import { Drawer } from 'vaul';
|
|
250
|
+
|
|
251
|
+
<Drawer.Root>
|
|
252
|
+
<Drawer.Trigger>Open</Drawer.Trigger>
|
|
253
|
+
<Drawer.Portal>
|
|
254
|
+
<Drawer.Overlay className={styles.overlay} />
|
|
255
|
+
<Drawer.Content className={styles.content}>
|
|
256
|
+
{/* Content */}
|
|
257
|
+
</Drawer.Content>
|
|
258
|
+
</Drawer.Portal>
|
|
259
|
+
</Drawer.Root>
|
|
260
|
+
|
|
261
|
+
// Toast 예시
|
|
262
|
+
import { toast } from 'sonner';
|
|
263
|
+
toast.success('저장되었습니다');
|
|
264
|
+
toast.error('오류가 발생했습니다');
|
|
265
|
+
```
|
|
266
|
+
|
|
217
267
|
---
|
|
218
268
|
|
|
219
269
|
## 3. Backend Rules (Spring Boot)
|