@su-record/vibe 2.5.5 → 2.5.6
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 +1 -1
- package/skills/vibe-capabilities.md +23 -11
package/package.json
CHANGED
|
@@ -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
|
|
126
|
-
├── languages/ # Language guides
|
|
127
|
-
└── templates/ # Templates
|
|
128
|
-
|
|
129
|
-
#
|
|
130
|
-
|
|
131
|
-
├──
|
|
132
|
-
├──
|
|
133
|
-
|
|
134
|
-
|
|
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
|