@su-record/vibe 2.8.17 → 2.8.19
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/dist/infra/lib/config/GlobalConfigManager.d.ts +8 -0
- package/dist/infra/lib/config/GlobalConfigManager.d.ts.map +1 -1
- package/dist/infra/lib/config/GlobalConfigManager.js +37 -0
- package/dist/infra/lib/config/GlobalConfigManager.js.map +1 -1
- package/hooks/scripts/context-save.js +88 -1
- package/hooks/scripts/pre-tool-guard.js +30 -5
- package/hooks/scripts/sentinel-guard.js +28 -4
- package/hooks/scripts/utils.js +48 -0
- package/package.json +1 -1
- package/skills/vibe-figma/SKILL.md +25 -66
- package/skills/vibe-figma-analyze/SKILL.md +95 -318
- package/skills/vibe-figma-codegen/SKILL.md +112 -782
- package/skills/vibe-figma-consolidate/SKILL.md +53 -90
- package/skills/vibe-figma-frame/SKILL.md +454 -181
- package/skills/vibe-figma-pipeline/SKILL.md +4 -45
- package/skills/vibe-figma-rules/SKILL.md +363 -159
- package/skills/vibe-figma-style/SKILL.md +107 -476
|
@@ -1,52 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: vibe-figma-pipeline
|
|
3
|
-
description:
|
|
3
|
+
description: "[Merged] → vibe-figma-consolidate D-4 참조"
|
|
4
4
|
triggers: []
|
|
5
5
|
tier: standard
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
#
|
|
8
|
+
# vibe-figma-pipeline
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
## Pre-requisite check
|
|
13
|
-
|
|
14
|
-
If `.claude/vibe/design-context.json` does NOT exist:
|
|
15
|
-
```
|
|
16
|
-
⚠️ 디자인 컨텍스트가 없습니다. /design-teach 를 먼저 실행하면
|
|
17
|
-
브랜드, 접근성, 타겟 디바이스에 맞춘 더 정확한 코드를 생성할 수 있습니다.
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Quick (default recommendation)
|
|
21
|
-
|
|
22
|
-
```
|
|
23
|
-
/design-normalize → /design-audit
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
- Normalize: 하드코딩 값 → MASTER.md 토큰으로 치환
|
|
27
|
-
- Audit: A11Y + 성능 + 반응형 + AI Slop 검출
|
|
28
|
-
|
|
29
|
-
## Thorough (recommended for production)
|
|
30
|
-
|
|
31
|
-
```
|
|
32
|
-
/design-normalize → /design-audit → /design-critique → /design-polish
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
- + Critique: Nielsen 10 휴리스틱 + 5 페르소나 분석
|
|
36
|
-
- + Polish: 인터랙션 상태 보완 (hover/focus/loading/error)
|
|
37
|
-
|
|
38
|
-
## Output format
|
|
39
|
-
|
|
40
|
-
```
|
|
41
|
-
## 🎨 Design Quality Pipeline
|
|
42
|
-
|
|
43
|
-
생성된 파일: {file list}
|
|
44
|
-
|
|
45
|
-
추천 다음 단계:
|
|
46
|
-
1. /design-normalize — 토큰 정렬 (하드코딩 제거)
|
|
47
|
-
2. /design-audit — 기술 품질 검사
|
|
48
|
-
3. /design-critique — UX 휴리스틱 리뷰
|
|
49
|
-
4. /design-polish — 최종 인터랙션 보완
|
|
50
|
-
|
|
51
|
-
💡 /design-teach 가 아직 설정되지 않았다면 먼저 실행하세요.
|
|
52
|
-
```
|
|
10
|
+
이 스킬은 **vibe-figma-consolidate** D-4 섹션으로 병합되었습니다.
|
|
11
|
+
Design Quality Pipeline 안내는 `vibe-figma-consolidate` Step D-4를 참조하세요.
|