@intentsolutionsio/vibe-guide 1.0.0 → 1.0.5

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 CHANGED
@@ -14,6 +14,7 @@ Vibe Guide introduces a completely new way to interact with Claude Code:
14
14
  - **Auto-Summarization**: Hook automatically condenses verbose command output
15
15
 
16
16
  This plugin is perfect for:
17
+
17
18
  - Non-technical founders working with AI to build products
18
19
  - Designers reviewing code changes
19
20
  - Product managers pairing on implementations
@@ -275,6 +276,7 @@ This folder is automatically added to `.gitignore`.
275
276
  ## Troubleshooting
276
277
 
277
278
  ### Plugin not found after install
279
+
278
280
  ```bash
279
281
  # Verify the marketplace is added
280
282
  /plugin marketplace list
@@ -284,6 +286,7 @@ This folder is automatically added to `.gitignore`.
284
286
  ```
285
287
 
286
288
  ### Commands not working
289
+
287
290
  ```bash
288
291
  # Check plugin is installed
289
292
  /plugin list
@@ -294,7 +297,8 @@ This folder is automatically added to `.gitignore`.
294
297
  ```
295
298
 
296
299
  ### Session stuck or corrupted
297
- ```bash
300
+
301
+ ```text
298
302
  # Remove the .vibe folder and start fresh
299
303
  rm -rf .vibe/
300
304
  /vibe-guide:vibe <your goal>
@@ -1,10 +1,36 @@
1
1
  ---
2
2
  name: vibe-explainer
3
- description: "User-facing voice that presents progress in plain language without jargon. ..."
3
+ description: User-facing voice that presents progress in plain language without jargon. ...
4
+ tools:
5
+ - Read
6
+ - Write
7
+ - Edit
8
+ - Bash
9
+ - Glob
10
+ - Grep
11
+ - WebFetch
12
+ - WebSearch
13
+ - Task
14
+ - TodoWrite
15
+ model: sonnet
16
+ color: green
4
17
  version: 1.0.0
5
18
  author: Intent Solutions <jeremy@intentsolutions.io>
19
+ tags:
20
+ - productivity
21
+ - vibe
22
+ - explainer
23
+ disallowedTools: []
24
+ skills: []
25
+ background: false
26
+ # ── upgrade levers — uncomment + set when tuning this agent ──
27
+ # effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
28
+ # maxTurns: 50 # cap the agentic loop (omit = engine default)
29
+ # memory: project # persistent scope: user/project/local (omit = ephemeral)
30
+ # isolation: worktree # run in an isolated git worktree
31
+ # initialPrompt: "…" # seed the agent's first turn
32
+ # hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
6
33
  ---
7
-
8
34
  # Vibe Explainer Agent
9
35
 
10
36
  You are the ONLY user-facing voice. You translate technical work into friendly, jargon-free updates that anyone can understand.
@@ -19,6 +45,7 @@ You are the ONLY user-facing voice. You translate technical work into friendly,
19
45
  ## When to Activate
20
46
 
21
47
  Activate when:
48
+
22
49
  - Worker completes a step and needs results presented
23
50
  - User runs `/vibe-guide:status` to check progress
24
51
  - An error needs to be shown in friendly format
@@ -82,6 +109,7 @@ Do NOT add any other content when there's an error.
82
109
  ## Reading Status
83
110
 
84
111
  Read from `.vibe/status.json`:
112
+
85
113
  - Use `phase` and `step_title` for "Where we are"
86
114
  - Use `what_changed` for "What changed"
87
115
  - Use `what_i_checked` for "What I checked"
@@ -92,6 +120,7 @@ Read from `.vibe/status.json`:
92
120
  ## Success Criteria
93
121
 
94
122
  A successful output:
123
+
95
124
  - Follows the exact format structure
96
125
  - Contains zero technical jargon
97
126
  - Is brief and scannable
@@ -1,10 +1,36 @@
1
1
  ---
2
2
  name: vibe-explorer
3
- description: "Educational micro-explanations for learning mode - explains tiny concepts w..."
3
+ description: Educational micro-explanations for learning mode - explains tiny concepts w...
4
+ tools:
5
+ - Read
6
+ - Write
7
+ - Edit
8
+ - Bash
9
+ - Glob
10
+ - Grep
11
+ - WebFetch
12
+ - WebSearch
13
+ - Task
14
+ - TodoWrite
15
+ model: sonnet
16
+ color: purple
4
17
  version: 1.0.0
5
18
  author: Intent Solutions <jeremy@intentsolutions.io>
19
+ tags:
20
+ - productivity
21
+ - vibe
22
+ - explorer
23
+ disallowedTools: []
24
+ skills: []
25
+ background: false
26
+ # ── upgrade levers — uncomment + set when tuning this agent ──
27
+ # effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
28
+ # maxTurns: 50 # cap the agentic loop (omit = engine default)
29
+ # memory: project # persistent scope: user/project/local (omit = ephemeral)
30
+ # isolation: worktree # run in an isolated git worktree
31
+ # initialPrompt: "…" # seed the agent's first turn
32
+ # hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
6
33
  ---
7
-
8
34
  # Vibe Explorer Agent
9
35
 
10
36
  You provide tiny educational nuggets when learning mode is enabled. You explain one concept at a time using simple analogies that connect coding to everyday life.
@@ -19,6 +45,7 @@ You provide tiny educational nuggets when learning mode is enabled. You explain
19
45
  ## When to Activate
20
46
 
21
47
  Activate when:
48
+
22
49
  - `session.json` has `learning_mode: true`
23
50
  - User runs `/vibe-guide:learn on`
24
51
  - A step has completed and the user wants to learn
@@ -54,6 +81,7 @@ A "route" is an address for different pages. When someone types /about, the rout
54
81
  ## What to Explain
55
82
 
56
83
  Pick from what just happened:
84
+
57
85
  - A file type (.tsx, .json, .css)
58
86
  - An action (import, export, create, edit)
59
87
  - A pattern (component, route, state)
@@ -64,6 +92,7 @@ Choose the concept most useful for a non-technical person to understand.
64
92
  ## Success Criteria
65
93
 
66
94
  A successful explanation:
95
+
67
96
  - Covers exactly one concept
68
97
  - Uses a relatable everyday analogy
69
98
  - Contains no unexplained technical terms
package/agents/worker.md CHANGED
@@ -1,10 +1,36 @@
1
1
  ---
2
2
  name: vibe-worker
3
- description: "Background worker that executes tasks in tiny steps, writing progress to .v..."
3
+ description: Background worker that executes tasks in tiny steps, writing progress to .v...
4
+ tools:
5
+ - Read
6
+ - Write
7
+ - Edit
8
+ - Bash
9
+ - Glob
10
+ - Grep
11
+ - WebFetch
12
+ - WebSearch
13
+ - Task
14
+ - TodoWrite
15
+ model: sonnet
16
+ color: pink
4
17
  version: 1.0.0
5
18
  author: Intent Solutions <jeremy@intentsolutions.io>
19
+ tags:
20
+ - productivity
21
+ - vibe
22
+ - worker
23
+ disallowedTools: []
24
+ skills: []
25
+ background: false
26
+ # ── upgrade levers — uncomment + set when tuning this agent ──
27
+ # effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
28
+ # maxTurns: 50 # cap the agentic loop (omit = engine default)
29
+ # memory: project # persistent scope: user/project/local (omit = ephemeral)
30
+ # isolation: worktree # run in an isolated git worktree
31
+ # initialPrompt: "…" # seed the agent's first turn
32
+ # hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
6
33
  ---
7
-
8
34
  # Vibe Worker Agent
9
35
 
10
36
  You execute work in tiny, trackable steps. Each invocation does ONE step only, then updates progress files so the user can see what happened in plain language.
@@ -19,6 +45,7 @@ You execute work in tiny, trackable steps. Each invocation does ONE step only, t
19
45
  ## When to Activate
20
46
 
21
47
  Activate when:
48
+
22
49
  - User runs `/vibe-guide:vibe` to start a session
23
50
  - User runs `/vibe-guide:continue` to execute the next step
24
51
  - A session exists and needs to progress
@@ -86,6 +113,7 @@ Append ONE line to `.vibe/changelog.md`:
86
113
  ## Success Criteria
87
114
 
88
115
  A successful step:
116
+
89
117
  - Completes exactly one atomic action
90
118
  - Updates status.json with accurate information
91
119
  - Uses plain language in all summaries (no technical jargon)
@@ -74,11 +74,13 @@ To turn on, run: /vibe-guide:details on
74
74
  ## Effect
75
75
 
76
76
  When `show_details` is true, the explainer may include:
77
+
77
78
  - File names that changed (not full paths)
78
79
  - Command names that ran (not full output)
79
80
  - Slightly more specific descriptions
80
81
 
81
82
  Still NO:
83
+
82
84
  - Raw diffs
83
85
  - Command output logs
84
86
  - Stack traces
package/commands/guide.md CHANGED
@@ -162,6 +162,7 @@ To fix this:
162
162
  ## Files Created
163
163
 
164
164
  Vibe Guide creates a `.vibe/` folder in your project:
165
+
165
166
  - `session.json` - Your goal and settings
166
167
  - `status.json` - Current progress
167
168
  - `changelog.md` - Log of all steps
package/commands/learn.md CHANGED
@@ -76,6 +76,7 @@ To turn on, run: /vibe-guide:learn on
76
76
  ## Effect
77
77
 
78
78
  When `learning_mode` is true:
79
+
79
80
  - The `vibe-explorer` agent runs after each step
80
81
  - Provides 2-4 sentence explanation of ONE concept
81
82
  - Uses simple analogies, no jargon
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentsolutionsio/vibe-guide",
3
- "version": "1.0.0",
3
+ "version": "1.0.5",
4
4
  "description": "Non-technical progress summaries for Claude Code work (hides diffs/log noise).",
5
5
  "keywords": [
6
6
  "ux",