@su-record/vibe 2.4.1 → 2.4.3

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 (55) hide show
  1. package/.claude/settings.json +13 -0
  2. package/.claude/settings.local.json +1 -8
  3. package/README.md +95 -748
  4. package/dist/cli/index.d.ts.map +1 -1
  5. package/dist/cli/index.js +18 -1
  6. package/dist/cli/index.js.map +1 -1
  7. package/dist/tools/analytics/index.d.ts +5 -0
  8. package/dist/tools/analytics/index.d.ts.map +1 -0
  9. package/dist/tools/analytics/index.js +5 -0
  10. package/dist/tools/analytics/index.js.map +1 -0
  11. package/dist/tools/convention/index.d.ts +10 -0
  12. package/dist/tools/convention/index.d.ts.map +1 -0
  13. package/dist/tools/convention/index.js +10 -0
  14. package/dist/tools/convention/index.js.map +1 -0
  15. package/dist/tools/memory/index.d.ts +19 -0
  16. package/dist/tools/memory/index.d.ts.map +1 -0
  17. package/dist/tools/memory/index.js +19 -0
  18. package/dist/tools/memory/index.js.map +1 -0
  19. package/dist/tools/planning/index.d.ts +8 -0
  20. package/dist/tools/planning/index.d.ts.map +1 -0
  21. package/dist/tools/planning/index.js +8 -0
  22. package/dist/tools/planning/index.js.map +1 -0
  23. package/dist/tools/prompt/index.d.ts +7 -0
  24. package/dist/tools/prompt/index.d.ts.map +1 -0
  25. package/dist/tools/prompt/index.js +7 -0
  26. package/dist/tools/prompt/index.js.map +1 -0
  27. package/dist/tools/reasoning/index.d.ts +5 -0
  28. package/dist/tools/reasoning/index.d.ts.map +1 -0
  29. package/dist/tools/reasoning/index.js +5 -0
  30. package/dist/tools/reasoning/index.js.map +1 -0
  31. package/dist/tools/semantic/index.d.ts +7 -0
  32. package/dist/tools/semantic/index.d.ts.map +1 -0
  33. package/dist/tools/semantic/index.js +7 -0
  34. package/dist/tools/semantic/index.js.map +1 -0
  35. package/dist/tools/thinking/index.d.ts +10 -0
  36. package/dist/tools/thinking/index.d.ts.map +1 -0
  37. package/dist/tools/thinking/index.js +10 -0
  38. package/dist/tools/thinking/index.js.map +1 -0
  39. package/dist/tools/time/index.d.ts +5 -0
  40. package/dist/tools/time/index.d.ts.map +1 -0
  41. package/dist/tools/time/index.js +5 -0
  42. package/dist/tools/time/index.js.map +1 -0
  43. package/dist/tools/ui/index.d.ts +5 -0
  44. package/dist/tools/ui/index.d.ts.map +1 -0
  45. package/dist/tools/ui/index.js +5 -0
  46. package/dist/tools/ui/index.js.map +1 -0
  47. package/hooks/hooks.json +72 -9
  48. package/package.json +11 -1
  49. package/skills/context7-usage.md +82 -0
  50. package/skills/git-worktree.md +3 -0
  51. package/skills/multi-llm-orchestration.md +97 -0
  52. package/skills/parallel-research.md +77 -0
  53. package/skills/priority-todos.md +3 -0
  54. package/skills/tool-fallback.md +126 -0
  55. package/skills/vibe-capabilities.md +127 -0
@@ -0,0 +1,127 @@
1
+ ---
2
+ description: Vibe framework capabilities overview. Auto-activates when working on vibe projects, asking about available features, or needing workflow guidance.
3
+ ---
4
+ # Vibe Capabilities
5
+
6
+ Complete guide to vibe's scenario-driven development framework.
7
+
8
+ ## Core Workflow
9
+
10
+ ```
11
+ /vibe.spec → /vibe.run → /vibe.verify → /vibe.review
12
+ ```
13
+
14
+ ## Slash Commands
15
+
16
+ | Command | Purpose |
17
+ |---------|---------|
18
+ | `/vibe.spec "feature"` | Create SPEC with PTCF structure + parallel research |
19
+ | `/vibe.run "feature"` | Implement based on SPEC |
20
+ | `/vibe.run "feature" ultrawork` | Maximum performance mode |
21
+ | `/vibe.verify "feature"` | BDD scenario verification |
22
+ | `/vibe.review` | Parallel code review (13+ agents) |
23
+ | `/vibe.analyze` | Project analysis |
24
+ | `/vibe.reason "problem"` | Systematic reasoning |
25
+ | `/vibe.utils --e2e` | Playwright E2E testing |
26
+ | `/vibe.utils --compound` | Document solutions |
27
+
28
+ ## Built-in Tools
29
+
30
+ ### Semantic Code Analysis
31
+
32
+ ```bash
33
+ node -e "import('@su-record/vibe/tools').then(t => t.TOOL_NAME({...}))"
34
+ ```
35
+
36
+ | Tool | Purpose |
37
+ |------|---------|
38
+ | `findSymbol` | Find symbol definitions |
39
+ | `findReferences` | Find all references |
40
+ | `analyzeComplexity` | Code complexity analysis |
41
+ | `validateCodeQuality` | Quality validation |
42
+
43
+ ### Memory Management
44
+
45
+ | Tool | Purpose |
46
+ |------|---------|
47
+ | `startSession` | Start session (restore previous context) |
48
+ | `autoSaveContext` | Save current state |
49
+ | `saveMemory` | Save important decisions |
50
+ | `recallMemory` | Recall saved memory |
51
+ | `listMemories` | List saved memories |
52
+
53
+ ## Orchestrator
54
+
55
+ ### Parallel Research (4 agents)
56
+
57
+ ```bash
58
+ node -e "import('@su-record/vibe/orchestrator').then(o =>
59
+ o.research('feature', ['stack1', 'stack2'])
60
+ )"
61
+ ```
62
+
63
+ ### Background Agents
64
+
65
+ ```bash
66
+ node -e "import('@su-record/vibe/orchestrator').then(o =>
67
+ o.launchBackgroundAgent({ prompt: '...', agentName: '...' })
68
+ )"
69
+ ```
70
+
71
+ ## MCP Integrations
72
+
73
+ | MCP | Purpose |
74
+ |-----|---------|
75
+ | vibe-gpt | GPT sub-agent (architecture, debugging) |
76
+ | vibe-gemini | Gemini sub-agent (UI/UX) |
77
+ | context7 | Latest library documentation |
78
+
79
+ ## ULTRAWORK Mode
80
+
81
+ Add `ultrawork` or `ulw` for maximum performance:
82
+
83
+ - Parallel subagent exploration (3+ concurrent)
84
+ - Background agents preparing next phase
85
+ - Phase pipelining (no wait between phases)
86
+ - Boulder Loop (auto-progress until complete)
87
+ - Auto-retry on errors (max 3 times)
88
+ - Auto-compress at 70%+ context
89
+
90
+ ## Review Agents (13+)
91
+
92
+ | Category | Agents |
93
+ |----------|--------|
94
+ | Security | security-reviewer, data-integrity-reviewer |
95
+ | Performance | performance-reviewer, complexity-reviewer |
96
+ | Architecture | architecture-reviewer, simplicity-reviewer |
97
+ | Language | python, typescript, rails, react reviewers |
98
+ | Context | git-history, test-coverage reviewers |
99
+
100
+ ## Project Structure
101
+
102
+ ```
103
+ .claude/
104
+ ├── commands/ # Slash commands
105
+ ├── agents/ # Sub-agents
106
+ ├── skills/ # Auto-activated guides
107
+ └── vibe/
108
+ ├── specs/ # SPEC documents
109
+ ├── features/ # BDD scenarios
110
+ ├── rules/ # Coding rules
111
+ └── solutions/ # Documented solutions
112
+ ```
113
+
114
+ ## Context Management
115
+
116
+ - Session start: Auto-restore previous context
117
+ - 70/80/90%: Auto-save checkpoints
118
+ - Context overflow: Use `saveMemory` → `/new`
119
+
120
+ ## Without Commands
121
+
122
+ Even without `/vibe.*` commands, you can:
123
+
124
+ 1. Call tools directly via node commands
125
+ 2. Use MCP integrations (gpt, gemini, context7)
126
+ 3. Reference skills for guidance
127
+ 4. Apply coding rules from `.claude/vibe/rules/`