@su-record/vibe 2.2.5 → 2.3.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.
Files changed (48) hide show
  1. package/.claude/settings.json +0 -117
  2. package/.claude/settings.local.json +2 -1
  3. package/.claude/vibe/rules/languages/dart-flutter.md +509 -0
  4. package/.claude/vibe/rules/languages/go.md +396 -0
  5. package/.claude/vibe/rules/languages/java-spring.md +586 -0
  6. package/.claude/vibe/rules/languages/kotlin-android.md +491 -0
  7. package/.claude/vibe/rules/languages/python-django.md +371 -0
  8. package/.claude/vibe/rules/languages/python-fastapi.md +386 -0
  9. package/.claude/vibe/rules/languages/rust.md +425 -0
  10. package/.claude/vibe/rules/languages/swift-ios.md +516 -0
  11. package/.claude/vibe/rules/languages/typescript-nextjs.md +441 -0
  12. package/.claude/vibe/rules/languages/typescript-node.md +375 -0
  13. package/.claude/vibe/rules/languages/typescript-nuxt.md +521 -0
  14. package/.claude/vibe/rules/languages/typescript-react-native.md +446 -0
  15. package/.claude/vibe/rules/languages/typescript-react.md +525 -0
  16. package/.claude/vibe/rules/languages/typescript-vue.md +353 -0
  17. package/README.md +96 -96
  18. package/commands/vibe.analyze.md +14 -73
  19. package/commands/vibe.reason.md +49 -172
  20. package/commands/vibe.review.md +72 -260
  21. package/commands/vibe.utils.md +101 -0
  22. package/commands/vibe.verify.md +4 -1
  23. package/dist/cli/index.d.ts.map +1 -1
  24. package/dist/cli/index.js +46 -16
  25. package/dist/cli/index.js.map +1 -1
  26. package/{templates/hooks-template.json → hooks/hooks.json} +6 -6
  27. package/package.json +2 -3
  28. package/commands/vibe.continue.md +0 -88
  29. package/commands/vibe.setup.md +0 -97
  30. /package/{rules → .claude/vibe/rules}/core/communication-guide.md +0 -0
  31. /package/{rules → .claude/vibe/rules}/core/development-philosophy.md +0 -0
  32. /package/{rules → .claude/vibe/rules}/core/quick-start.md +0 -0
  33. /package/{rules → .claude/vibe/rules}/quality/bdd-contract-testing.md +0 -0
  34. /package/{rules → .claude/vibe/rules}/quality/checklist.md +0 -0
  35. /package/{rules → .claude/vibe/rules}/quality/testing-strategy.md +0 -0
  36. /package/{rules → .claude/vibe/rules}/standards/anti-patterns.md +0 -0
  37. /package/{rules → .claude/vibe/rules}/standards/code-structure.md +0 -0
  38. /package/{rules → .claude/vibe/rules}/standards/complexity-metrics.md +0 -0
  39. /package/{rules → .claude/vibe/rules}/standards/naming-conventions.md +0 -0
  40. /package/{templates → .claude/vibe/templates}/constitution-template.md +0 -0
  41. /package/{templates → .claude/vibe/templates}/contract-backend-template.md +0 -0
  42. /package/{templates → .claude/vibe/templates}/contract-frontend-template.md +0 -0
  43. /package/{templates → .claude/vibe/templates}/feature-template.md +0 -0
  44. /package/{templates → .claude/vibe/templates}/spec-template.md +0 -0
  45. /package/{commands/vibe.compound.md → agents/compounder.md} +0 -0
  46. /package/{commands/vibe.diagram.md → agents/diagrammer.md} +0 -0
  47. /package/{commands/vibe.e2e.md → agents/e2e-tester.md} +0 -0
  48. /package/{commands/vibe.ui.md → agents/ui-previewer.md} +0 -0
@@ -1,88 +0,0 @@
1
- ---
2
- description: Restore previous session context
3
- argument-hint: [projectPath]
4
- ---
5
-
6
- # /vibe.continue
7
-
8
- Restore previous session context and continue development.
9
-
10
- ## Usage
11
-
12
- ```
13
- /vibe.continue # Restore context for current directory
14
- /vibe.continue "/path/to/project" # Restore context for specific project
15
- ```
16
-
17
- ## What It Does
18
-
19
- 1. **Load Project Memories** - Retrieves saved project decisions, patterns, architecture notes
20
- 2. **Restore Context** - Loads previous session's work state (tasks, blockers, next steps)
21
- 3. **Load Coding Guides** - Applies project-specific coding standards
22
-
23
- ## Process
24
-
25
- ```
26
- /vibe.continue
27
- |
28
- v
29
- +---------------------------+
30
- | vibe_start_session |
31
- | projectPath: $(pwd) |
32
- +---------------------------+
33
- |
34
- v
35
- +---------------------------+
36
- | Load: |
37
- | - Project memories |
38
- | - Previous context |
39
- | - Coding guides |
40
- +---------------------------+
41
- |
42
- v
43
- Ready to continue!
44
- ```
45
-
46
- ## Example
47
-
48
- ```
49
- User: /vibe.continue
50
-
51
- Claude:
52
- Session started.
53
-
54
- Recent Project Info:
55
- - project-stack: Next.js 14, TypeScript, Tailwind...
56
- - auth-decision: Using JWT with refresh tokens...
57
- - current-feature: Working on login page...
58
-
59
- Previous Context:
60
- - HIGH priority from 2024-01-15 14:32
61
- Task: Implement password validation
62
- Blockers: Need to decide on complexity rules
63
-
64
- Active Coding Guides:
65
- - TypeScript Standards (core): Strict mode, no any...
66
-
67
- Ready to continue development! What would you like to work on?
68
- ```
69
-
70
- ## When to Use
71
-
72
- - Starting a new Claude Code session
73
- - After `/new` command
74
- - Resuming work after a break
75
- - Switching between projects
76
-
77
- ## Related Commands
78
-
79
- - `/vibe.run` - Execute implementation
80
- - `/vibe.spec` - Create SPEC document
81
-
82
- ---
83
-
84
- **Action**: Call `vibe_start_session` with projectPath
85
-
86
- ```
87
- vibe_start_session(projectPath: "$ARGUMENTS" || process.cwd())
88
- ```
@@ -1,97 +0,0 @@
1
- # /vibe.setup
2
-
3
- vibe 플러그인 MCP 서버 설정
4
-
5
- ---
6
-
7
- ## 실행 절차
8
-
9
- ### 1. 현재 MCP 서버 상태 확인
10
-
11
- ```bash
12
- claude mcp list
13
- ```
14
-
15
- ### 2. context7 설정 (필수)
16
-
17
- context7이 없으면 설치:
18
-
19
- ```bash
20
- claude mcp add context7 -- npx -y @anthropic/context7-mcp@latest
21
- ```
22
-
23
- ### 3. GPT 설정 (선택)
24
-
25
- GPT 연동이 필요하면:
26
-
27
- ```bash
28
- # 1. vibe-gpt MCP 서버 추가
29
- claude mcp add vibe-gpt -- npx -y @anthropic/vibe-gpt-mcp@latest
30
-
31
- # 2. OAuth 인증 (브라우저 열림)
32
- # 첫 사용 시 자동으로 인증 페이지로 이동
33
- ```
34
-
35
- **용도:**
36
- - security-advisory-agent: CVE/보안 취약점 DB 지식 보강
37
- - python-reviewer: Python 코드 리뷰 2nd opinion
38
-
39
- ### 4. Gemini 설정 (선택)
40
-
41
- Gemini 연동이 필요하면:
42
-
43
- ```bash
44
- # 1. vibe-gemini MCP 서버 추가
45
- claude mcp add vibe-gemini -- npx -y @anthropic/vibe-gemini-mcp@latest
46
-
47
- # 2. OAuth 인증 (브라우저 열림)
48
- # 첫 사용 시 자동으로 인증 페이지로 이동
49
- ```
50
-
51
- **용도:**
52
- - framework-docs-agent: context7 문서 부재 시 웹 검색으로 최신 문서 보강
53
-
54
- ---
55
-
56
- ## 설정 확인
57
-
58
- 설정 후 확인:
59
-
60
- ```bash
61
- claude mcp list
62
- ```
63
-
64
- 예상 출력:
65
- ```
66
- context7: connected
67
- vibe-gpt: connected (optional)
68
- vibe-gemini: connected (optional)
69
- ```
70
-
71
- ---
72
-
73
- ## 문제 해결
74
-
75
- ### MCP 서버 연결 실패
76
-
77
- ```bash
78
- # 서버 제거 후 재등록
79
- claude mcp remove context7
80
- claude mcp add context7 -- npx -y @anthropic/context7-mcp@latest
81
- ```
82
-
83
- ### OAuth 인증 만료
84
-
85
- ```bash
86
- # 인증 갱신 (해당 MCP 도구 호출 시 자동 갱신)
87
- ```
88
-
89
- ---
90
-
91
- ## 참고
92
-
93
- - GPT/Gemini 없이도 vibe는 정상 작동합니다
94
- - 외부 LLM은 특정 에이전트의 보조 역할만 수행
95
- - context7만 있어도 대부분의 기능 사용 가능
96
-
97
- ARGUMENTS: $ARGUMENTS
File without changes
File without changes