@su-record/vibe 2.4.33 → 2.4.35

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 (101) hide show
  1. package/CLAUDE.md +345 -345
  2. package/LICENSE +21 -21
  3. package/README.md +210 -210
  4. package/agents/compounder.md +261 -261
  5. package/agents/diagrammer.md +178 -178
  6. package/agents/e2e-tester.md +266 -266
  7. package/agents/explorer.md +48 -48
  8. package/agents/implementer.md +53 -53
  9. package/agents/research/best-practices-agent.md +139 -139
  10. package/agents/research/codebase-patterns-agent.md +147 -147
  11. package/agents/research/framework-docs-agent.md +178 -178
  12. package/agents/research/security-advisory-agent.md +164 -164
  13. package/agents/review/architecture-reviewer.md +107 -107
  14. package/agents/review/complexity-reviewer.md +116 -116
  15. package/agents/review/data-integrity-reviewer.md +88 -88
  16. package/agents/review/git-history-reviewer.md +103 -103
  17. package/agents/review/performance-reviewer.md +86 -86
  18. package/agents/review/python-reviewer.md +150 -150
  19. package/agents/review/rails-reviewer.md +139 -139
  20. package/agents/review/react-reviewer.md +144 -144
  21. package/agents/review/security-reviewer.md +80 -80
  22. package/agents/review/simplicity-reviewer.md +140 -140
  23. package/agents/review/test-coverage-reviewer.md +116 -116
  24. package/agents/review/typescript-reviewer.md +127 -127
  25. package/agents/searcher.md +54 -54
  26. package/agents/simplifier.md +119 -119
  27. package/agents/tester.md +49 -49
  28. package/agents/ui-previewer.md +129 -129
  29. package/commands/vibe.analyze.md +260 -260
  30. package/commands/vibe.reason.md +223 -223
  31. package/commands/vibe.review.md +213 -213
  32. package/commands/vibe.run.md +931 -931
  33. package/commands/vibe.spec.md +442 -442
  34. package/commands/vibe.utils.md +101 -101
  35. package/commands/vibe.verify.md +282 -282
  36. package/dist/cli/collaborator.js +52 -52
  37. package/dist/cli/detect.js +32 -32
  38. package/dist/cli/index.js +137 -137
  39. package/dist/cli/llm.js +147 -147
  40. package/dist/cli/llm.js.map +1 -1
  41. package/dist/cli/setup.d.ts +1 -1
  42. package/dist/cli/setup.d.ts.map +1 -1
  43. package/dist/cli/setup.js +11 -17
  44. package/dist/cli/setup.js.map +1 -1
  45. package/dist/lib/MemoryManager.d.ts +4 -0
  46. package/dist/lib/MemoryManager.d.ts.map +1 -1
  47. package/dist/lib/MemoryManager.js +21 -2
  48. package/dist/lib/MemoryManager.js.map +1 -1
  49. package/dist/lib/PythonParser.js +108 -108
  50. package/dist/lib/gemini-api.d.ts +13 -3
  51. package/dist/lib/gemini-api.d.ts.map +1 -1
  52. package/dist/lib/gemini-api.js +198 -7
  53. package/dist/lib/gemini-api.js.map +1 -1
  54. package/dist/lib/gpt-api.d.ts +5 -4
  55. package/dist/lib/gpt-api.d.ts.map +1 -1
  56. package/dist/lib/gpt-api.js +168 -12
  57. package/dist/lib/gpt-api.js.map +1 -1
  58. package/dist/tools/memory/saveMemory.js +1 -1
  59. package/dist/tools/memory/saveMemory.js.map +1 -1
  60. package/dist/tools/reasoning/applyReasoningFramework.js +56 -56
  61. package/hooks/hooks.json +195 -195
  62. package/languages/dart-flutter.md +509 -0
  63. package/languages/go.md +396 -0
  64. package/languages/java-spring.md +586 -0
  65. package/languages/kotlin-android.md +491 -0
  66. package/languages/python-django.md +371 -0
  67. package/languages/python-fastapi.md +386 -0
  68. package/languages/rust.md +425 -0
  69. package/languages/swift-ios.md +516 -0
  70. package/languages/typescript-nextjs.md +441 -0
  71. package/languages/typescript-node.md +375 -0
  72. package/languages/typescript-nuxt.md +521 -0
  73. package/languages/typescript-react-native.md +446 -0
  74. package/languages/typescript-react.md +525 -0
  75. package/languages/typescript-vue.md +353 -0
  76. package/package.json +88 -87
  77. package/skills/context7-usage.md +82 -82
  78. package/skills/git-worktree.md +181 -181
  79. package/skills/multi-llm-orchestration.md +92 -92
  80. package/skills/parallel-research.md +77 -77
  81. package/skills/priority-todos.md +239 -239
  82. package/skills/tool-fallback.md +126 -126
  83. package/skills/vibe-capabilities.md +129 -129
  84. package/{.claude/vibe → vibe}/config.json +3 -3
  85. package/{.claude/vibe → vibe}/constitution.md +184 -184
  86. package/{.claude/vibe → vibe}/rules/core/communication-guide.md +104 -104
  87. package/{.claude/vibe → vibe}/rules/core/development-philosophy.md +52 -52
  88. package/{.claude/vibe → vibe}/rules/core/quick-start.md +120 -120
  89. package/{.claude/vibe → vibe}/rules/quality/bdd-contract-testing.md +388 -388
  90. package/{.claude/vibe → vibe}/rules/quality/checklist.md +276 -276
  91. package/{.claude/vibe → vibe}/rules/quality/testing-strategy.md +437 -437
  92. package/{.claude/vibe → vibe}/rules/standards/anti-patterns.md +369 -369
  93. package/{.claude/vibe → vibe}/rules/standards/code-structure.md +291 -291
  94. package/{.claude/vibe → vibe}/rules/standards/complexity-metrics.md +312 -312
  95. package/{.claude/vibe → vibe}/rules/standards/naming-conventions.md +198 -198
  96. package/{.claude/vibe → vibe}/setup.sh +31 -31
  97. package/{.claude/vibe → vibe}/templates/constitution-template.md +184 -184
  98. package/{.claude/vibe → vibe}/templates/contract-backend-template.md +517 -517
  99. package/{.claude/vibe → vibe}/templates/contract-frontend-template.md +594 -594
  100. package/{.claude/vibe → vibe}/templates/feature-template.md +96 -96
  101. package/{.claude/vibe → vibe}/templates/spec-template.md +199 -199
@@ -1,101 +1,101 @@
1
- ---
2
- description: Utility tools (UI preview, diagram, E2E test, etc.)
3
- argument-hint: "--ui, --diagram, --e2e, or other options"
4
- ---
5
-
6
- # /vibe.utils
7
-
8
- Collection of utility tools. Use with options.
9
-
10
- ## Usage
11
-
12
- ```
13
- /vibe.utils --ui "설명" # UI ASCII preview
14
- /vibe.utils --diagram # Architecture diagram
15
- /vibe.utils --diagram --er # ERD diagram
16
- /vibe.utils --diagram --flow # Flowchart
17
- /vibe.utils --e2e "scenario" # E2E browser test (Playwright)
18
- /vibe.utils --e2e --visual # Visual regression test
19
- /vibe.utils --e2e --record # Video recording
20
- /vibe.utils --compound # Document solution (usually auto-triggered)
21
- ```
22
-
23
- ---
24
-
25
- ## --ui (UI Preview)
26
-
27
- Read and follow `agents/ui-previewer.md` for ASCII UI preview generation.
28
-
29
- Generate ASCII-based UI preview from description.
30
-
31
- **Example:**
32
- ```
33
- /vibe.utils --ui "로그인 폼 - 이메일, 비밀번호 입력 + 로그인 버튼"
34
- ```
35
-
36
- ---
37
-
38
- ## --diagram (Diagram Generation)
39
-
40
- Read and follow `agents/diagrammer.md` for diagram generation.
41
-
42
- Generate Mermaid diagrams for architecture visualization.
43
-
44
- **Options:**
45
- - `--diagram`: Architecture overview
46
- - `--diagram --er`: Entity-Relationship Diagram
47
- - `--diagram --flow`: Flowchart
48
- - `--diagram --seq`: Sequence Diagram
49
-
50
- **Example:**
51
- ```
52
- /vibe.utils --diagram --er
53
- ```
54
-
55
- ---
56
-
57
- ## --e2e (E2E Testing)
58
-
59
- Read and follow `agents/e2e-tester.md` for Playwright-based E2E testing.
60
-
61
- **Options:**
62
- - `--e2e "scenario"`: Run specific scenario
63
- - `--e2e --visual`: Visual regression testing
64
- - `--e2e --record`: Video recording
65
-
66
- **Features:**
67
- - Screenshot capture and comparison
68
- - Console error collection
69
- - Accessibility (a11y) testing
70
- - Bug reproduction automation
71
-
72
- **Example:**
73
- ```
74
- /vibe.utils --e2e "login flow"
75
- /vibe.utils --e2e --visual --record
76
- ```
77
-
78
- ---
79
-
80
- ## --compound (Solution Documentation)
81
-
82
- Read and follow `agents/compounder.md` for solution documentation.
83
-
84
- Document solved problems for knowledge accumulation.
85
-
86
- **Usually auto-triggered by hooks when:**
87
- - "버그 해결됨", "bug fixed", "PR merged" detected
88
-
89
- **Output location:** `.claude/vibe/solutions/`
90
-
91
- ```
92
- .claude/vibe/solutions/
93
- ├── security/ # Security solutions
94
- ├── performance/ # Performance optimizations
95
- ├── database/ # Database related
96
- └── integration/ # External integrations
97
- ```
98
-
99
- ---
100
-
101
- ARGUMENTS: $ARGUMENTS
1
+ ---
2
+ description: Utility tools (UI preview, diagram, E2E test, etc.)
3
+ argument-hint: "--ui, --diagram, --e2e, or other options"
4
+ ---
5
+
6
+ # /vibe.utils
7
+
8
+ Collection of utility tools. Use with options.
9
+
10
+ ## Usage
11
+
12
+ ```
13
+ /vibe.utils --ui "설명" # UI ASCII preview
14
+ /vibe.utils --diagram # Architecture diagram
15
+ /vibe.utils --diagram --er # ERD diagram
16
+ /vibe.utils --diagram --flow # Flowchart
17
+ /vibe.utils --e2e "scenario" # E2E browser test (Playwright)
18
+ /vibe.utils --e2e --visual # Visual regression test
19
+ /vibe.utils --e2e --record # Video recording
20
+ /vibe.utils --compound # Document solution (usually auto-triggered)
21
+ ```
22
+
23
+ ---
24
+
25
+ ## --ui (UI Preview)
26
+
27
+ Read and follow `agents/ui-previewer.md` for ASCII UI preview generation.
28
+
29
+ Generate ASCII-based UI preview from description.
30
+
31
+ **Example:**
32
+ ```
33
+ /vibe.utils --ui "로그인 폼 - 이메일, 비밀번호 입력 + 로그인 버튼"
34
+ ```
35
+
36
+ ---
37
+
38
+ ## --diagram (Diagram Generation)
39
+
40
+ Read and follow `agents/diagrammer.md` for diagram generation.
41
+
42
+ Generate Mermaid diagrams for architecture visualization.
43
+
44
+ **Options:**
45
+ - `--diagram`: Architecture overview
46
+ - `--diagram --er`: Entity-Relationship Diagram
47
+ - `--diagram --flow`: Flowchart
48
+ - `--diagram --seq`: Sequence Diagram
49
+
50
+ **Example:**
51
+ ```
52
+ /vibe.utils --diagram --er
53
+ ```
54
+
55
+ ---
56
+
57
+ ## --e2e (E2E Testing)
58
+
59
+ Read and follow `agents/e2e-tester.md` for Playwright-based E2E testing.
60
+
61
+ **Options:**
62
+ - `--e2e "scenario"`: Run specific scenario
63
+ - `--e2e --visual`: Visual regression testing
64
+ - `--e2e --record`: Video recording
65
+
66
+ **Features:**
67
+ - Screenshot capture and comparison
68
+ - Console error collection
69
+ - Accessibility (a11y) testing
70
+ - Bug reproduction automation
71
+
72
+ **Example:**
73
+ ```
74
+ /vibe.utils --e2e "login flow"
75
+ /vibe.utils --e2e --visual --record
76
+ ```
77
+
78
+ ---
79
+
80
+ ## --compound (Solution Documentation)
81
+
82
+ Read and follow `agents/compounder.md` for solution documentation.
83
+
84
+ Document solved problems for knowledge accumulation.
85
+
86
+ **Usually auto-triggered by hooks when:**
87
+ - "버그 해결됨", "bug fixed", "PR merged" detected
88
+
89
+ **Output location:** `.claude/vibe/solutions/`
90
+
91
+ ```
92
+ .claude/vibe/solutions/
93
+ ├── security/ # Security solutions
94
+ ├── performance/ # Performance optimizations
95
+ ├── database/ # Database related
96
+ └── integration/ # External integrations
97
+ ```
98
+
99
+ ---
100
+
101
+ ARGUMENTS: $ARGUMENTS