@su-record/vibe 2.5.5 → 2.5.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "2.5.5",
3
+ "version": "2.5.7",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework with 35+ integrated tools",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",
@@ -15,7 +15,8 @@ Complete guide to vibe's scenario-driven development framework.
15
15
 
16
16
  | Command | Purpose |
17
17
  |---------|---------|
18
- | `/vibe.spec "feature"` | Create SPEC with PTCF structure + parallel research |
18
+ | `/vibe.spec "feature"` | Create SPEC with PTCF structure + 8 parallel research |
19
+ | `/vibe.spec "feature" split` | Create multiple SPECs for large scope features |
19
20
  | `/vibe.run "feature"` | Implement based on SPEC |
20
21
  | `/vibe.run "feature" ultrawork` | Maximum performance mode |
21
22
  | `/vibe.verify "feature"` | BDD scenario verification |
@@ -23,6 +24,9 @@ Complete guide to vibe's scenario-driven development framework.
23
24
  | `/vibe.analyze` | Project analysis |
24
25
  | `/vibe.reason "problem"` | Systematic reasoning |
25
26
  | `/vibe.utils --e2e` | Playwright E2E testing |
27
+ | `/vibe.utils --diagram` | Generate diagrams |
28
+ | `/vibe.utils --ui "description"` | UI preview |
29
+ | `/vibe.utils --continue` | Session restore (load previous context) |
26
30
  | `/vibe.utils --compound` | Document solutions |
27
31
 
28
32
  ## Built-in Tools
@@ -122,16 +126,24 @@ Add `ultrawork` or `ulw` for maximum performance:
122
126
  ├── agents/ # Sub-agents
123
127
  ├── skills/ # Auto-activated guides
124
128
  └── vibe/
125
- ├── rules/ # Coding rules (global)
126
- ├── languages/ # Language guides (global)
127
- └── templates/ # Templates (global)
128
-
129
- # Project (.claude/vibe/)
130
- .claude/vibe/
131
- ├── specs/ # SPEC documents
132
- ├── features/ # BDD scenarios
133
- ├── config.json # Project config
134
- └── constitution.md # Project rules
129
+ ├── rules/ # Coding rules
130
+ ├── languages/ # Language guides
131
+ └── templates/ # Templates
132
+
133
+ # Global (%APPDATA%/vibe/ or ~/.config/vibe/)
134
+ vibe/
135
+ ├── hooks/scripts/ # Hook scripts (llm-orchestrate.js)
136
+ ├── gpt.json # GPT credentials
137
+ └── gemini.json # Gemini credentials
138
+
139
+ # Project (.claude/)
140
+ .claude/
141
+ ├── settings.local.json # Hooks config (personal, gitignored)
142
+ └── vibe/
143
+ ├── specs/ # SPEC documents
144
+ ├── features/ # BDD scenarios
145
+ ├── config.json # Project config
146
+ └── constitution.md # Project rules
135
147
  ```
136
148
 
137
149
  ## Context Management