@su-record/vibe 2.5.11 → 2.5.12

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 (243) hide show
  1. package/CLAUDE.md +243 -0
  2. package/LICENSE +21 -21
  3. package/README.md +262 -262
  4. package/agents/architect-low.md +41 -41
  5. package/agents/architect-medium.md +59 -59
  6. package/agents/architect.md +80 -80
  7. package/agents/build-error-resolver.md +115 -115
  8. package/agents/compounder.md +261 -261
  9. package/agents/diagrammer.md +178 -178
  10. package/agents/e2e-tester.md +266 -266
  11. package/agents/explorer-low.md +42 -42
  12. package/agents/explorer-medium.md +59 -59
  13. package/agents/explorer.md +48 -48
  14. package/agents/implementer-low.md +43 -43
  15. package/agents/implementer-medium.md +52 -52
  16. package/agents/implementer.md +54 -54
  17. package/agents/refactor-cleaner.md +143 -143
  18. package/agents/research/best-practices-agent.md +189 -189
  19. package/agents/research/codebase-patterns-agent.md +147 -147
  20. package/agents/research/framework-docs-agent.md +178 -178
  21. package/agents/research/security-advisory-agent.md +203 -203
  22. package/agents/review/architecture-reviewer.md +107 -107
  23. package/agents/review/complexity-reviewer.md +116 -116
  24. package/agents/review/data-integrity-reviewer.md +88 -88
  25. package/agents/review/git-history-reviewer.md +103 -103
  26. package/agents/review/performance-reviewer.md +86 -86
  27. package/agents/review/python-reviewer.md +150 -150
  28. package/agents/review/rails-reviewer.md +139 -139
  29. package/agents/review/react-reviewer.md +144 -144
  30. package/agents/review/security-reviewer.md +80 -80
  31. package/agents/review/simplicity-reviewer.md +140 -140
  32. package/agents/review/test-coverage-reviewer.md +116 -116
  33. package/agents/review/typescript-reviewer.md +127 -127
  34. package/agents/searcher.md +54 -54
  35. package/agents/simplifier.md +120 -120
  36. package/agents/tester.md +49 -49
  37. package/agents/ui-previewer.md +129 -129
  38. package/commands/vibe.analyze.md +356 -356
  39. package/commands/vibe.reason.md +329 -329
  40. package/commands/vibe.review.md +326 -326
  41. package/commands/vibe.run.md +1051 -1051
  42. package/commands/vibe.spec.md +1058 -1058
  43. package/commands/vibe.utils.md +296 -296
  44. package/commands/vibe.verify.md +375 -375
  45. package/dist/cli/collaborator.js +52 -52
  46. package/dist/cli/detect.js +32 -32
  47. package/dist/cli/index.js +102 -102
  48. package/dist/cli/llm.js +144 -144
  49. package/dist/cli/mcp.d.ts +49 -0
  50. package/dist/cli/mcp.d.ts.map +1 -0
  51. package/dist/cli/mcp.js +169 -0
  52. package/dist/cli/mcp.js.map +1 -0
  53. package/dist/cli/postinstall.js +180 -2
  54. package/dist/cli/postinstall.js.map +1 -1
  55. package/dist/lib/DeepInit.d.ts +0 -2
  56. package/dist/lib/DeepInit.d.ts.map +1 -1
  57. package/dist/lib/DeepInit.js +24 -26
  58. package/dist/lib/DeepInit.js.map +1 -1
  59. package/dist/lib/IterationTracker.d.ts +0 -2
  60. package/dist/lib/IterationTracker.d.ts.map +1 -1
  61. package/dist/lib/IterationTracker.js +11 -13
  62. package/dist/lib/IterationTracker.js.map +1 -1
  63. package/dist/lib/ModelRouter.d.ts +0 -2
  64. package/dist/lib/ModelRouter.d.ts.map +1 -1
  65. package/dist/lib/ModelRouter.js +0 -2
  66. package/dist/lib/ModelRouter.js.map +1 -1
  67. package/dist/lib/OrchestrateWorkflow.d.ts +1 -3
  68. package/dist/lib/OrchestrateWorkflow.d.ts.map +1 -1
  69. package/dist/lib/OrchestrateWorkflow.js +1 -3
  70. package/dist/lib/OrchestrateWorkflow.js.map +1 -1
  71. package/dist/lib/PythonParser.js +108 -108
  72. package/dist/lib/SkillFrontmatter.d.ts +0 -2
  73. package/dist/lib/SkillFrontmatter.d.ts.map +1 -1
  74. package/dist/lib/SkillFrontmatter.js +28 -30
  75. package/dist/lib/SkillFrontmatter.js.map +1 -1
  76. package/dist/lib/SkillQualityGate.d.ts +0 -2
  77. package/dist/lib/SkillQualityGate.d.ts.map +1 -1
  78. package/dist/lib/SkillQualityGate.js +9 -11
  79. package/dist/lib/SkillQualityGate.js.map +1 -1
  80. package/dist/lib/SkillRepository.d.ts +117 -0
  81. package/dist/lib/SkillRepository.d.ts.map +1 -0
  82. package/dist/lib/SkillRepository.js +477 -0
  83. package/dist/lib/SkillRepository.js.map +1 -0
  84. package/dist/lib/UltraQA.d.ts +0 -2
  85. package/dist/lib/UltraQA.d.ts.map +1 -1
  86. package/dist/lib/UltraQA.js +77 -79
  87. package/dist/lib/UltraQA.js.map +1 -1
  88. package/dist/lib/gemini-mcp.d.ts +10 -0
  89. package/dist/lib/gemini-mcp.d.ts.map +1 -0
  90. package/dist/lib/gemini-mcp.js +353 -0
  91. package/dist/lib/gemini-mcp.js.map +1 -0
  92. package/dist/lib/gpt-api.js +4 -4
  93. package/dist/lib/gpt-mcp.d.ts +10 -0
  94. package/dist/lib/gpt-mcp.d.ts.map +1 -0
  95. package/dist/lib/gpt-mcp.js +352 -0
  96. package/dist/lib/gpt-mcp.js.map +1 -0
  97. package/dist/lib/memory/KnowledgeGraph.js +4 -4
  98. package/dist/lib/memory/MemorySearch.js +20 -20
  99. package/dist/lib/memory/MemoryStorage.js +64 -64
  100. package/dist/orchestrator/backgroundAgent.d.ts +0 -1
  101. package/dist/orchestrator/backgroundAgent.d.ts.map +1 -1
  102. package/dist/orchestrator/backgroundAgent.js +0 -1
  103. package/dist/orchestrator/backgroundAgent.js.map +1 -1
  104. package/dist/tools/analytics/getUsageAnalytics.d.ts +10 -0
  105. package/dist/tools/analytics/getUsageAnalytics.d.ts.map +1 -0
  106. package/dist/tools/analytics/getUsageAnalytics.js +246 -0
  107. package/dist/tools/analytics/getUsageAnalytics.js.map +1 -0
  108. package/dist/tools/analytics/index.d.ts +5 -0
  109. package/dist/tools/analytics/index.d.ts.map +1 -0
  110. package/dist/tools/analytics/index.js +5 -0
  111. package/dist/tools/analytics/index.js.map +1 -0
  112. package/dist/tools/convention/analyzeComplexity.test.js +115 -115
  113. package/dist/tools/convention/getCodingGuide.d.ts +7 -0
  114. package/dist/tools/convention/getCodingGuide.d.ts.map +1 -0
  115. package/dist/tools/convention/getCodingGuide.js +69 -0
  116. package/dist/tools/convention/getCodingGuide.js.map +1 -0
  117. package/dist/tools/convention/validateCodeQuality.test.js +104 -104
  118. package/dist/tools/index.d.ts +2 -0
  119. package/dist/tools/index.d.ts.map +1 -1
  120. package/dist/tools/index.js +2 -0
  121. package/dist/tools/index.js.map +1 -1
  122. package/dist/tools/planning/analyzeRequirements.d.ts +9 -0
  123. package/dist/tools/planning/analyzeRequirements.d.ts.map +1 -0
  124. package/dist/tools/planning/analyzeRequirements.js +171 -0
  125. package/dist/tools/planning/analyzeRequirements.js.map +1 -0
  126. package/dist/tools/planning/createUserStories.d.ts +9 -0
  127. package/dist/tools/planning/createUserStories.d.ts.map +1 -0
  128. package/dist/tools/planning/createUserStories.js +124 -0
  129. package/dist/tools/planning/createUserStories.js.map +1 -0
  130. package/dist/tools/planning/featureRoadmap.d.ts +10 -0
  131. package/dist/tools/planning/featureRoadmap.d.ts.map +1 -0
  132. package/dist/tools/planning/featureRoadmap.js +207 -0
  133. package/dist/tools/planning/featureRoadmap.js.map +1 -0
  134. package/dist/tools/planning/generatePrd.d.ts +11 -0
  135. package/dist/tools/planning/generatePrd.d.ts.map +1 -0
  136. package/dist/tools/planning/generatePrd.js +161 -0
  137. package/dist/tools/planning/generatePrd.js.map +1 -0
  138. package/dist/tools/planning/index.d.ts +8 -0
  139. package/dist/tools/planning/index.d.ts.map +1 -0
  140. package/dist/tools/planning/index.js +8 -0
  141. package/dist/tools/planning/index.js.map +1 -0
  142. package/dist/tools/prompt/analyzePrompt.d.ts +7 -0
  143. package/dist/tools/prompt/analyzePrompt.d.ts.map +1 -0
  144. package/dist/tools/prompt/analyzePrompt.js +150 -0
  145. package/dist/tools/prompt/analyzePrompt.js.map +1 -0
  146. package/dist/tools/prompt/enhancePrompt.d.ts +8 -0
  147. package/dist/tools/prompt/enhancePrompt.d.ts.map +1 -0
  148. package/dist/tools/prompt/enhancePrompt.js +110 -0
  149. package/dist/tools/prompt/enhancePrompt.js.map +1 -0
  150. package/dist/tools/prompt/enhancePromptGemini.d.ts +8 -0
  151. package/dist/tools/prompt/enhancePromptGemini.d.ts.map +1 -0
  152. package/dist/tools/prompt/enhancePromptGemini.js +332 -0
  153. package/dist/tools/prompt/enhancePromptGemini.js.map +1 -0
  154. package/dist/tools/prompt/index.d.ts +7 -0
  155. package/dist/tools/prompt/index.d.ts.map +1 -0
  156. package/dist/tools/prompt/index.js +7 -0
  157. package/dist/tools/prompt/index.js.map +1 -0
  158. package/dist/tools/reasoning/applyReasoningFramework.d.ts +8 -0
  159. package/dist/tools/reasoning/applyReasoningFramework.d.ts.map +1 -0
  160. package/dist/tools/reasoning/applyReasoningFramework.js +266 -0
  161. package/dist/tools/reasoning/applyReasoningFramework.js.map +1 -0
  162. package/dist/tools/reasoning/index.d.ts +5 -0
  163. package/dist/tools/reasoning/index.d.ts.map +1 -0
  164. package/dist/tools/reasoning/index.js +5 -0
  165. package/dist/tools/reasoning/index.js.map +1 -0
  166. package/dist/tools/thinking/analyzeProblem.d.ts +7 -0
  167. package/dist/tools/thinking/analyzeProblem.d.ts.map +1 -0
  168. package/dist/tools/thinking/analyzeProblem.js +55 -0
  169. package/dist/tools/thinking/analyzeProblem.js.map +1 -0
  170. package/dist/tools/thinking/breakDownProblem.d.ts +8 -0
  171. package/dist/tools/thinking/breakDownProblem.d.ts.map +1 -0
  172. package/dist/tools/thinking/breakDownProblem.js +145 -0
  173. package/dist/tools/thinking/breakDownProblem.js.map +1 -0
  174. package/dist/tools/thinking/createThinkingChain.d.ts +7 -0
  175. package/dist/tools/thinking/createThinkingChain.d.ts.map +1 -0
  176. package/dist/tools/thinking/createThinkingChain.js +44 -0
  177. package/dist/tools/thinking/createThinkingChain.js.map +1 -0
  178. package/dist/tools/thinking/formatAsPlan.d.ts +9 -0
  179. package/dist/tools/thinking/formatAsPlan.d.ts.map +1 -0
  180. package/dist/tools/thinking/formatAsPlan.js +78 -0
  181. package/dist/tools/thinking/formatAsPlan.js.map +1 -0
  182. package/dist/tools/thinking/index.d.ts +10 -0
  183. package/dist/tools/thinking/index.d.ts.map +1 -0
  184. package/dist/tools/thinking/index.js +10 -0
  185. package/dist/tools/thinking/index.js.map +1 -0
  186. package/dist/tools/thinking/stepByStepAnalysis.d.ts +8 -0
  187. package/dist/tools/thinking/stepByStepAnalysis.d.ts.map +1 -0
  188. package/dist/tools/thinking/stepByStepAnalysis.js +63 -0
  189. package/dist/tools/thinking/stepByStepAnalysis.js.map +1 -0
  190. package/dist/tools/thinking/thinkAloudProcess.d.ts +8 -0
  191. package/dist/tools/thinking/thinkAloudProcess.d.ts.map +1 -0
  192. package/dist/tools/thinking/thinkAloudProcess.js +80 -0
  193. package/dist/tools/thinking/thinkAloudProcess.js.map +1 -0
  194. package/hooks/hooks.json +222 -222
  195. package/hooks/scripts/code-check.js +22 -22
  196. package/hooks/scripts/code-review.js +22 -22
  197. package/hooks/scripts/complexity.js +22 -22
  198. package/hooks/scripts/compound.js +23 -23
  199. package/hooks/scripts/context-save.js +33 -33
  200. package/hooks/scripts/hud-multiline.js +262 -264
  201. package/hooks/scripts/hud-status.js +291 -293
  202. package/hooks/scripts/keyword-detector.js +214 -216
  203. package/hooks/scripts/llm-orchestrate.js +171 -171
  204. package/hooks/scripts/post-edit.js +97 -97
  205. package/hooks/scripts/post-tool-verify.js +210 -212
  206. package/hooks/scripts/pre-tool-guard.js +125 -127
  207. package/hooks/scripts/recall.js +22 -22
  208. package/hooks/scripts/session-start.js +30 -30
  209. package/hooks/scripts/skill-injector.js +191 -193
  210. package/hooks/scripts/utils.js +97 -97
  211. package/languages/csharp-unity.md +515 -515
  212. package/languages/gdscript-godot.md +470 -470
  213. package/languages/ruby-rails.md +489 -489
  214. package/languages/typescript-angular.md +433 -433
  215. package/languages/typescript-astro.md +416 -416
  216. package/languages/typescript-electron.md +406 -406
  217. package/languages/typescript-nestjs.md +524 -524
  218. package/languages/typescript-svelte.md +407 -407
  219. package/languages/typescript-tauri.md +365 -365
  220. package/package.json +83 -83
  221. package/skills/context7-usage.md +102 -102
  222. package/skills/git-worktree.md +181 -181
  223. package/skills/parallel-research.md +77 -77
  224. package/skills/priority-todos.md +239 -239
  225. package/skills/tool-fallback.md +190 -190
  226. package/skills/vibe-capabilities.md +161 -161
  227. package/vibe/constitution.md +227 -227
  228. package/vibe/rules/core/communication-guide.md +98 -98
  229. package/vibe/rules/core/development-philosophy.md +52 -52
  230. package/vibe/rules/core/quick-start.md +102 -102
  231. package/vibe/rules/quality/bdd-contract-testing.md +393 -393
  232. package/vibe/rules/quality/checklist.md +276 -276
  233. package/vibe/rules/quality/testing-strategy.md +440 -440
  234. package/vibe/rules/standards/anti-patterns.md +541 -541
  235. package/vibe/rules/standards/code-structure.md +291 -291
  236. package/vibe/rules/standards/complexity-metrics.md +313 -313
  237. package/vibe/rules/standards/naming-conventions.md +198 -198
  238. package/vibe/setup.sh +31 -31
  239. package/vibe/templates/constitution-template.md +252 -252
  240. package/vibe/templates/contract-backend-template.md +526 -526
  241. package/vibe/templates/contract-frontend-template.md +599 -599
  242. package/vibe/templates/feature-template.md +96 -96
  243. package/vibe/templates/spec-template.md +221 -221
package/CLAUDE.md CHANGED
@@ -40,6 +40,12 @@ Follow these standards when writing code. See `~/.claude/vibe/rules/` (global) f
40
40
  - No `@ts-ignore` → fix type issues at root
41
41
  - Explicit return types on all functions
42
42
 
43
+ ### TypeScript Rules
44
+ - No `any` type → use `unknown` + type guards
45
+ - No `as any` casting → define proper interfaces
46
+ - No `@ts-ignore` → fix type issues at root
47
+ - Explicit return types on all functions
48
+
43
49
  ### Error Handling Required
44
50
  - try-catch or error state required
45
51
  - Loading state handling
@@ -446,3 +452,240 @@ flowchart TD
446
452
  | 3. `/vibe.run` | Implementation + Gemini review | Manual start |
447
453
  | 4. Agent Review | 13+ agent parallel review | ✅ Auto |
448
454
  | 5. Auto-Fix | P1/P2 issue auto-fix | ✅ Auto |
455
+
456
+ ---
457
+ name: my-skill
458
+ model: sonnet
459
+ triggers: [keyword1, keyword2]
460
+ ---
461
+ ```
462
+
463
+ ### Trigger-Based Skill Injection
464
+
465
+ Skills in `~/.claude/vibe/skills/` or `.claude/vibe/skills/` auto-inject on keyword match.
466
+
467
+ ### Multi-Line HUD
468
+
469
+ ```bash
470
+ node hooks/scripts/hud-multiline.js multi # Tree view
471
+ node hooks/scripts/hud-multiline.js compact # 2-line view
472
+ node hooks/scripts/hud-multiline.js single # 1-line view
473
+ ```
474
+
475
+ ### Parallel Code Review (/vibe.review)
476
+
477
+ 13+ specialized agents review code simultaneously:
478
+
479
+ ```
480
+ ┌─────────────────────────────────────────────────────────────────┐
481
+ │ 🚀 PARALLEL REVIEW AGENTS │
482
+ ├─────────────────────────────────────────────────────────────────┤
483
+ │ Security │ security-reviewer, data-integrity-reviewer │
484
+ │ Performance │ performance-reviewer, complexity-reviewer │
485
+ │ Architecture │ architecture-reviewer, simplicity-reviewer │
486
+ │ Language-Specific │ python, typescript, rails, react reviewers │
487
+ │ Context │ git-history, test-coverage reviewers │
488
+ └─────────────────────────────────────────────────────────────────┘
489
+ ```
490
+
491
+ **Priority System:**
492
+ - 🔴 P1 (Critical): Blocks merge
493
+ - 🟡 P2 (Important): Fix recommended
494
+ - 🔵 P3 (Nice-to-have): Backlog
495
+
496
+ ### E2E Testing (/vibe.utils --e2e)
497
+
498
+ Playwright-based automated testing:
499
+
500
+ ```bash
501
+ /vibe.utils --e2e "login flow" # Scenario test
502
+ /vibe.utils --e2e --visual # Visual regression test
503
+ /vibe.utils --e2e --record # Video recording
504
+ ```
505
+
506
+ ### Enhanced Research Agents
507
+
508
+ 4 parallel research agents run **after requirements confirmed** during `/vibe.spec`:
509
+
510
+ ```
511
+ Q&A to confirm requirements → Parallel research → SPEC writing
512
+ ```
513
+
514
+ | Agent | Role |
515
+ |-------|------|
516
+ | best-practices-agent | Best practices for confirmed feature+stack |
517
+ | framework-docs-agent | Latest docs for confirmed stack (context7) |
518
+ | codebase-patterns-agent | Analyze existing similar patterns |
519
+ | security-advisory-agent | Security advisory for confirmed feature |
520
+
521
+ **⚠️ Research runs after requirements confirmed** (VIBE principle: requirements first)
522
+
523
+ ## PTCF Structure
524
+
525
+ SPEC documents are AI-executable prompt format:
526
+
527
+ ```
528
+ <role> AI role definition
529
+ <context> Background, tech stack, related code
530
+ <task> Phase-by-phase task list
531
+ <constraints> Constraints
532
+ <output_format> Files to create/modify
533
+ <acceptance> Verification criteria
534
+ ```
535
+
536
+ ## Built-in Tools
537
+
538
+ ### Semantic Code Analysis
539
+ | Tool | Purpose |
540
+ |------|---------|
541
+ | `vibe_find_symbol` | Find symbol definitions |
542
+ | `vibe_find_references` | Find references |
543
+ | `vibe_analyze_complexity` | Analyze complexity |
544
+ | `vibe_validate_code_quality` | Validate quality |
545
+
546
+ ### Context Management
547
+ | Tool | Purpose |
548
+ |------|---------|
549
+ | `vibe_start_session` | Start session (restore previous context) |
550
+ | `vibe_auto_save_context` | Save current state |
551
+ | `vibe_save_memory` | Save important decisions |
552
+
553
+ ## Agents
554
+
555
+ ### Review Agents (12)
556
+ ```
557
+ .claude/agents/review/
558
+ ├── security-reviewer.md # Security vulnerabilities
559
+ ├── performance-reviewer.md # Performance bottlenecks
560
+ ├── architecture-reviewer.md # Architecture violations
561
+ ├── complexity-reviewer.md # Complexity exceeded
562
+ ├── simplicity-reviewer.md # Over-abstraction
563
+ ├── data-integrity-reviewer.md # Data integrity
564
+ ├── test-coverage-reviewer.md # Missing tests
565
+ ├── git-history-reviewer.md # Risk patterns
566
+ ├── python-reviewer.md # Python specialist
567
+ ├── typescript-reviewer.md # TypeScript specialist
568
+ ├── rails-reviewer.md # Rails specialist
569
+ └── react-reviewer.md # React specialist
570
+ ```
571
+
572
+ ### Research Agents (4)
573
+ ```
574
+ .claude/agents/research/
575
+ ├── best-practices-agent.md # Best practices
576
+ ├── framework-docs-agent.md # Framework docs
577
+ ├── codebase-patterns-agent.md # Code pattern analysis
578
+ └── security-advisory-agent.md # Security advisory
579
+ ```
580
+
581
+ ## Skills
582
+
583
+ ### Git Worktree
584
+ ```bash
585
+ # Isolated environment for PR review
586
+ git worktree add ../review-123 origin/pr/123
587
+ cd ../review-123 && npm test
588
+ git worktree remove ../review-123
589
+ ```
590
+
591
+ ### Priority Todos
592
+ ```
593
+ .claude/vibe/todos/
594
+ ├── P1-security-sql-injection.md # 🔴 Blocks merge
595
+ ├── P2-perf-n1-query.md # 🟡 Fix recommended
596
+ └── P3-style-extract-helper.md # 🔵 Backlog
597
+ ```
598
+
599
+ ## Context Management Strategy
600
+
601
+ ### Model Selection
602
+ - **Exploration/Search**: Haiku (sub-agent default)
603
+ - **Implementation/Debugging**: Sonnet
604
+ - **Architecture/Complex logic**: Opus
605
+
606
+ ### At 70%+ Context (⚠️ Important)
607
+ ```
608
+ ❌ Don't use /compact (risk of information loss/distortion)
609
+ ✅ save_memory to store important decisions → /new for new session
610
+ ```
611
+
612
+ vibe maintains context across sessions with its own memory system:
613
+ 1. `save_memory` - Explicitly save important decisions
614
+ 2. `/new` - Start new session
615
+ 3. `start_session` - Auto-restore previous session
616
+
617
+ ### Session Restore
618
+ To continue previous work in a new session:
619
+ ```
620
+ /vibe.utils --continue
621
+ ```
622
+ This command calls `vibe_start_session` to restore previous context from project memory.
623
+
624
+ ### Other Commands
625
+ - `/rewind` - Revert to previous point
626
+ - `/context` - Check current usage
627
+
628
+ ### Using context7
629
+ Use context7 plugin when you need latest library documentation:
630
+ ```
631
+ "Search React 19 use() hook with context7"
632
+ ```
633
+
634
+ ## Documentation Guidelines
635
+
636
+ ### Diagrams/Structure Representation
637
+ - Avoid ASCII boxes (┌─┐) → Alignment breaks with mixed-width characters
638
+ - Use alternatives:
639
+ - Mermaid diagrams (GitHub/Notion supported)
640
+ - Markdown tables
641
+ - Indentation + separators
642
+
643
+ ### Preferred Formats
644
+ | Purpose | Recommended |
645
+ |---------|-------------|
646
+ | Flowcharts | Mermaid flowchart |
647
+ | Structure/Hierarchy | Indented lists |
648
+ | Comparisons/Lists | Markdown tables |
649
+ | Sequences | Mermaid sequenceDiagram |
650
+
651
+ ## Git Commit Rules
652
+
653
+ **Must include:**
654
+ - `.claude/vibe/specs/`, `.claude/vibe/features/`, `.claude/vibe/todos/` (project docs)
655
+ - `.claude/vibe/config.json`, `.claude/vibe/constitution.md` (project config)
656
+ - `CLAUDE.md`
657
+
658
+ **Exclude (globally installed):**
659
+ - `~/.claude/vibe/rules/`, `~/.claude/vibe/languages/`, `~/.claude/vibe/templates/` (global)
660
+ - `~/.claude/commands/`, `~/.claude/agents/`, `~/.claude/skills/` (global)
661
+ - `.claude/settings.local.json` (personal settings)
662
+
663
+ ## Getting Started
664
+
665
+ ```bash
666
+ vibe init
667
+ /vibe.spec "login feature"
668
+ ```
669
+
670
+ ## Full Workflow
671
+
672
+ ```mermaid
673
+ flowchart TD
674
+ A["/vibe.spec"] --> B["(auto) SPEC review"]
675
+ B --> C["SPEC auto-enhancement"]
676
+ C --> D["/vibe.run ultrawork"]
677
+ D --> E["Gemini code review"]
678
+ E --> F["(auto) 13+ Agent Review"]
679
+ F --> G{"P1/P2 issues?"}
680
+ G -->|Yes| H["(auto) Auto-Fix"]
681
+ H --> I["✅ Done"]
682
+ G -->|No| I
683
+ ```
684
+
685
+ | Step | Description | Automation |
686
+ |------|-------------|------------|
687
+ | 1. `/vibe.spec` | Collect requirements + Generate SPEC | Manual start |
688
+ | 2. SPEC review | Gemini reviews SPEC + Auto-apply | ✅ Auto |
689
+ | 3. `/vibe.run` | Implementation + Gemini review | Manual start |
690
+ | 4. Agent Review | 13+ agent parallel review | ✅ Auto |
691
+ | 5. Auto-Fix | P1/P2 issue auto-fix | ✅ Auto |
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Su
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Su
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.