vibesuite 2.0.1 β 2.0.2
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/README.md +67 -5
- package/assets/.agent/workflows/agent_reset.md +4 -6
- package/assets/.agent/workflows/mode-orchestrator.md +17 -21
- package/assets/.agent/workflows/mode-visionary.md +3 -9
- package/assets/VibeCode-Agents/vibe-orchestrator.yaml +14 -33
- package/assets/VibeCode-Agents/vibe-visionary.yaml +3 -13
- package/package.json +2 -2
- package/assets/VibeCode-Agents/custom_modes.yaml +0 -1257
package/README.md
CHANGED
|
@@ -9,17 +9,33 @@
|
|
|
9
9
|
|
|
10
10
|
## π Quick Start (Recommended)
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
### Option A: Global Install (Best for Multi-IDE Users) β
|
|
13
|
+
|
|
14
|
+
Install skills **once** and have them available across all your AI harnesses (Antigravity, KiloCode, Windsurf, Cursor, Gemini CLI):
|
|
13
15
|
|
|
14
16
|
```bash
|
|
15
|
-
# Using
|
|
16
|
-
|
|
17
|
+
# Using pnpm
|
|
18
|
+
pnpm dlx vibesuite install
|
|
19
|
+
|
|
20
|
+
# Using npx
|
|
21
|
+
npx vibesuite install
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
This will:
|
|
25
|
+
- π **Auto-detect** which AI harnesses are installed on your machine
|
|
26
|
+
- π¦ **Create a global store** at `~/.vibesuite/`
|
|
27
|
+
- π‘ **Sync skills & workflows** to every detected harness's global directory
|
|
28
|
+
- π **Sync KiloCode YAMLs** to both CLI and VS Code extension paths
|
|
29
|
+
|
|
30
|
+
### Option B: Per-Project Setup
|
|
17
31
|
|
|
18
|
-
|
|
32
|
+
Spawn VibeCode into a single project's `.agent/` folder:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
19
35
|
pnpm dlx vibesuite init
|
|
20
36
|
```
|
|
21
37
|
|
|
22
|
-
This interactive CLI
|
|
38
|
+
This interactive CLI lets you choose:
|
|
23
39
|
- β
**.agent Folder** (For Cursor/Windsurf workflows)
|
|
24
40
|
- β
**Kilo Code Agents** (YAML definitions)
|
|
25
41
|
- β
**Legacy Protocols** (Manual prompts)
|
|
@@ -66,6 +82,52 @@ npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite --skill
|
|
|
66
82
|
|
|
67
83
|
---
|
|
68
84
|
|
|
85
|
+
## π Global Skills Router (v2.0)
|
|
86
|
+
|
|
87
|
+
VibeSuite v2.0 introduces the **Global Skills Router** β install skills once, route to every AI harness automatically. No symlinks, no admin privileges, works on Mac & Windows.
|
|
88
|
+
|
|
89
|
+
### Supported Harnesses
|
|
90
|
+
|
|
91
|
+
| Harness | Global Skills Path | Global Workflows Path |
|
|
92
|
+
|---|---|---|
|
|
93
|
+
| **Antigravity** | `~/.gemini/antigravity/skills/` | `~/.gemini/antigravity/global_workflows/` |
|
|
94
|
+
| **KiloCode** | `~/.kilocode/skills/` | `~/.kilocode/workflows/` |
|
|
95
|
+
| **Windsurf** | `~/.codeium/windsurf/skills/` | `~/.codeium/windsurf/global_workflows/` |
|
|
96
|
+
| **Cursor** | `~/.cursor/skills/` | _(uses rules)_ |
|
|
97
|
+
| **Gemini CLI** | `~/.gemini/skills/` | β |
|
|
98
|
+
|
|
99
|
+
### CLI Commands
|
|
100
|
+
|
|
101
|
+
| Command | What It Does |
|
|
102
|
+
|---|---|
|
|
103
|
+
| `vibesuite install` | One-time global setup β detect harnesses, create store, sync everything |
|
|
104
|
+
| `vibesuite sync` | Re-sync from `~/.vibesuite/` to all linked harnesses |
|
|
105
|
+
| `vibesuite add <url>` | Fetch skills from any GitHub repo into your global store |
|
|
106
|
+
| `vibesuite harnesses` | Show detected harnesses and global store status |
|
|
107
|
+
| `vibesuite init` | Per-project `.agent/` setup (backward compatible) |
|
|
108
|
+
| `vibesuite update` | Update resources from GitHub (supports global store) |
|
|
109
|
+
|
|
110
|
+
### Example: Add Remote Skills
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
# Pull skills from any GitHub repo into your global store
|
|
114
|
+
pnpm dlx vibesuite add https://github.com/JStaRFilms/VibeCode-Protocol-Suite
|
|
115
|
+
|
|
116
|
+
# Check what's detected
|
|
117
|
+
pnpm dlx vibesuite harnesses
|
|
118
|
+
|
|
119
|
+
# Re-sync after adding new skills
|
|
120
|
+
pnpm dlx vibesuite sync
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
### KiloCode YAML Auto-Sync
|
|
124
|
+
|
|
125
|
+
When KiloCode is detected, `vibesuite install` automatically syncs `custom_modes.yaml` to **both** locations:
|
|
126
|
+
- CLI: `~/.kilocode/cli/global/settings/custom_modes.yaml`
|
|
127
|
+
- Extension: `%APPDATA%/Antigravity/User/globalStorage/kilocode.kilo-code/settings/custom_modes.yaml`
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
69
131
|
## π What is VibeCode?
|
|
70
132
|
|
|
71
133
|
VibeCode isn't just a collection of promptsβit's a **complete workflow system** for collaborating with AI to build software. Think of yourself as the Visionary/CEO, and your AI assistants as a specialized, high-performance development team.
|
|
@@ -21,14 +21,12 @@ You are exhibiting context degradation. Before doing ANYTHING:
|
|
|
21
21
|
|
|
22
22
|
### 0. Re-Discover Available Skills & Workflows
|
|
23
23
|
|
|
24
|
-
You may have forgotten what tools are available.
|
|
24
|
+
You may have forgotten what tools are available.
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
# Global (always available)
|
|
28
|
-
ls .agent/skills/
|
|
29
|
-
ls .agent/workflows/
|
|
26
|
+
**Your system prompt lists all available skills and workflows with their full absolute paths.** Check there FIRST.
|
|
30
27
|
|
|
31
|
-
|
|
28
|
+
Fallback (if not in system prompt):
|
|
29
|
+
```bash
|
|
32
30
|
ls .agent/skills/ 2>/dev/null
|
|
33
31
|
ls .agent/workflows/ 2>/dev/null
|
|
34
32
|
```
|
|
@@ -52,25 +52,18 @@ Use `/mode-orchestrator` when:
|
|
|
52
52
|
|
|
53
53
|
## Phase 1: Ecosystem Scan (MANDATORY)
|
|
54
54
|
|
|
55
|
-
### Scan Skills
|
|
55
|
+
### Scan Skills & Workflows
|
|
56
56
|
|
|
57
|
+
**Your system prompt lists all available skills and workflows with their full absolute paths.** Check there FIRST β do NOT guess paths.
|
|
58
|
+
|
|
59
|
+
If your system prompt doesn't list them, fall back to scanning the filesystem:
|
|
57
60
|
```bash
|
|
58
|
-
# MANDATORY: Do not skip this
|
|
59
|
-
# Project-local skills
|
|
60
61
|
ls .agent/skills/ 2>/dev/null
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
ls .agent/skills/ 2>/dev/null # Gemini / Antigravity
|
|
62
|
+
ls .agent/workflows/ 2>/dev/null
|
|
63
|
+
ls .agent/global_workflows/ 2>/dev/null
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
Create a **Skills Registry** β which skills are relevant and which tasks they apply to.
|
|
67
|
-
|
|
68
|
-
### Scan Workflows
|
|
69
|
-
|
|
70
|
-
```bash
|
|
71
|
-
ls .agent/workflows/
|
|
72
|
-
```
|
|
73
|
-
|
|
74
67
|
Create a **Workflows Registry** β which workflows map to which task phases.
|
|
75
68
|
|
|
76
69
|
---
|
|
@@ -121,20 +114,23 @@ Each task file (`01_task_name.task.md`) includes:
|
|
|
121
114
|
## π§ Agent Setup (DO THIS FIRST)
|
|
122
115
|
|
|
123
116
|
### Workflow to Follow
|
|
124
|
-
>
|
|
117
|
+
> Read the `/vibe-build` workflow. Your system prompt lists all workflows with
|
|
118
|
+
> their full paths β use `view_file` on the path listed there.
|
|
119
|
+
> Fallback: `cat .agent/workflows/vibe-build.md`
|
|
120
|
+
> Fallback: `cat .agent/global_workflows/vibe-build.md`
|
|
125
121
|
|
|
126
122
|
### Prime Agent Context
|
|
127
123
|
> MANDATORY: Run `/vibe-primeAgent` first
|
|
128
124
|
|
|
129
125
|
### Required Skills
|
|
130
|
-
>
|
|
131
|
-
>
|
|
132
|
-
> | nextjs-standards | `[skills-dir]/nextjs-standards/SKILL.md` | Next.js project |
|
|
126
|
+
> **Your system prompt lists all skills with their absolute paths.**
|
|
127
|
+
> Look up each skill below in your system prompt and `view_file` its SKILL.md.
|
|
133
128
|
>
|
|
134
|
-
>
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
>
|
|
129
|
+
> | Skill | Why |
|
|
130
|
+
> |-------|-----|
|
|
131
|
+
> | nextjs-standards | Next.js project |
|
|
132
|
+
>
|
|
133
|
+
> Fallback (if not in system prompt): `ls .agent/skills/`
|
|
138
134
|
```
|
|
139
135
|
|
|
140
136
|
Then: Objective, Scope, Context, Definition of Done, Expected Artifacts, Constraints.
|
|
@@ -78,20 +78,14 @@ Batch ALL questions into ONE message. Skip anything already answered:
|
|
|
78
78
|
|
|
79
79
|
### 1c. Scan Skills & Workflows
|
|
80
80
|
|
|
81
|
+
**Your system prompt lists all available skills and workflows with their full absolute paths.** Check there FIRST.
|
|
82
|
+
|
|
83
|
+
Fallback (if not in system prompt):
|
|
81
84
|
```bash
|
|
82
|
-
# MANDATORY: Scan before making decisions
|
|
83
|
-
# Project-local skills
|
|
84
85
|
ls .agent/skills/ 2>/dev/null
|
|
85
|
-
|
|
86
|
-
# Global skills (path varies by AI client)
|
|
87
|
-
ls .agent/skills/ 2>/dev/null # Gemini / Antigravity
|
|
88
|
-
|
|
89
|
-
# Workflows (always project-local)
|
|
90
86
|
ls .agent/workflows/ 2>/dev/null
|
|
91
87
|
```
|
|
92
88
|
|
|
93
|
-
Use whichever location exists. The agent's system prompt may also list available skills.
|
|
94
|
-
|
|
95
89
|
Note which skills and workflows are relevant β these will be injected into the Orchestrator handoff.
|
|
96
90
|
|
|
97
91
|
---
|
|
@@ -111,25 +111,14 @@ customModes:
|
|
|
111
111
|
|
|
112
112
|
**MANDATORY STEP β DO NOT SKIP.**
|
|
113
113
|
|
|
114
|
-
|
|
115
|
-
are available for sub-agents:
|
|
114
|
+
**Your system prompt lists all available skills with their full absolute paths.** Check there FIRST β do NOT guess paths.
|
|
116
115
|
|
|
116
|
+
If your system prompt doesn't list them, fall back to scanning the filesystem:
|
|
117
117
|
```powershell
|
|
118
|
-
# Scan for skills β check all known locations
|
|
119
|
-
# Project-local skills
|
|
120
118
|
ls .agent/skills/ 2>$null
|
|
121
|
-
|
|
122
|
-
# Global skills (path varies by AI client)
|
|
123
|
-
ls ~/.gemini/antigravity/skills/ 2>$null # Gemini / Antigravity
|
|
124
|
-
ls ~/.kilocode/skills/ 2>$null # KiloCode
|
|
125
|
-
# Add other client paths as discovered
|
|
126
|
-
|
|
127
|
-
# For each skill found, read the SKILL.md to understand its purpose
|
|
128
|
-
# Focus on the name, description, and triggers
|
|
129
119
|
```
|
|
130
120
|
|
|
131
|
-
|
|
132
|
-
The agent's system prompt may also list available skills β use that too.
|
|
121
|
+
For each relevant skill found, read its SKILL.md to understand its purpose.
|
|
133
122
|
|
|
134
123
|
Create a skills registry for this session:
|
|
135
124
|
|
|
@@ -313,33 +302,25 @@ customModes:
|
|
|
313
302
|
### Workflow to Follow
|
|
314
303
|
> **Primary Workflow:** `/vibe-build` (or whichever is assigned)
|
|
315
304
|
>
|
|
316
|
-
>
|
|
317
|
-
>
|
|
305
|
+
> Read the workflow from your system prompt β it lists all workflows with
|
|
306
|
+
> their full paths. Use `view_file` on the path listed there.
|
|
307
|
+
> Fallback: `cat .agent/workflows/vibe-build.md`
|
|
308
|
+
> Fallback: `cat .agent/global_workflows/vibe-build.md`
|
|
318
309
|
|
|
319
310
|
### Load Prime Agent Context
|
|
320
311
|
> **MANDATORY:** Run `/vibe-primeAgent` before starting ANY work.
|
|
321
312
|
> This loads coding guidelines, project state, and current work.
|
|
322
313
|
|
|
323
314
|
### Required Skills
|
|
324
|
-
> **
|
|
315
|
+
> **Your system prompt lists all skills with their absolute paths.**
|
|
316
|
+
> Look up each skill below in your system prompt and `view_file` its SKILL.md.
|
|
325
317
|
>
|
|
326
|
-
> | Skill |
|
|
327
|
-
>
|
|
328
|
-
> | `nextjs-standards` |
|
|
329
|
-
> | `ai-sdk` |
|
|
318
|
+
> | Skill | Why |
|
|
319
|
+
> |-------|-----|
|
|
320
|
+
> | `nextjs-standards` | Project uses Next.js App Router |
|
|
321
|
+
> | `ai-sdk` | This task involves AI features |
|
|
330
322
|
>
|
|
331
|
-
>
|
|
332
|
-
> - `.agent/skills/` (project-local)
|
|
333
|
-
> - `~/.gemini/antigravity/skills/` (Antigravity)
|
|
334
|
-
> - `~/.kilocode/skills/` (KiloCode)
|
|
335
|
-
> - Or check your system prompt for available skills
|
|
336
|
-
>
|
|
337
|
-
> **How to load:** `cat [path-to-skill]/SKILL.md` and follow the skill's instructions.
|
|
338
|
-
|
|
339
|
-
### Check Available Skills
|
|
340
|
-
> Before starting, scan all known skills directories for any additional
|
|
341
|
-
> skills that may help with this specific task. If you find a relevant skill
|
|
342
|
-
> not listed above, load it.
|
|
323
|
+
> Fallback (if not in system prompt): `ls .agent/skills/`
|
|
343
324
|
|
|
344
325
|
---
|
|
345
326
|
|
|
@@ -148,25 +148,15 @@ customModes:
|
|
|
148
148
|
|
|
149
149
|
**CRITICAL: Before making any decisions, scan available skills and workflows.**
|
|
150
150
|
|
|
151
|
-
|
|
152
|
-
Check ALL known locations and use whichever exists:
|
|
151
|
+
**Your system prompt lists all available skills and workflows with their full absolute paths.** Check there FIRST β do NOT guess paths.
|
|
153
152
|
|
|
153
|
+
Fallback (if not in system prompt):
|
|
154
154
|
```powershell
|
|
155
|
-
# Scan for skills β check all known locations
|
|
156
|
-
# Project-local skills
|
|
157
155
|
ls .agent/skills/ 2>$null
|
|
158
|
-
|
|
159
|
-
# Global skills (path varies by AI client)
|
|
160
|
-
ls ~/.gemini/antigravity/skills/ 2>$null # Gemini / Antigravity
|
|
161
|
-
ls ~/.kilocode/skills/ 2>$null # KiloCode
|
|
162
|
-
# Add other client paths as discovered
|
|
163
|
-
|
|
164
|
-
# Scan available workflows (always project-local)
|
|
165
156
|
ls .agent/workflows/ 2>$null
|
|
157
|
+
ls .agent/global_workflows/ 2>$null
|
|
166
158
|
```
|
|
167
159
|
|
|
168
|
-
**Use whichever skills directory exists.** If multiple exist, merge the lists.
|
|
169
|
-
The agent's system prompt may also list available skills β use that too.
|
|
170
160
|
These will be passed to the Orchestrator for injection into sub-agent tasks.
|
|
171
161
|
|
|
172
162
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibesuite",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "A Complete System for AI-Human Software Development Collaboration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -38,4 +38,4 @@
|
|
|
38
38
|
"url": "https://github.com/JStaRFilms/VibeCode-Protocol-Suite/issues"
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://github.com/JStaRFilms/VibeCode-Protocol-Suite#readme"
|
|
41
|
-
}
|
|
41
|
+
}
|