@rayburst/cc 3.0.3 → 3.0.4
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/.claude-plugin/marketplace.json +32 -0
- package/package.json +1 -1
- package/server.bundle.mjs +11 -11
- package/skills/init/SKILL.md +41 -28
package/skills/init/SKILL.md
CHANGED
|
@@ -8,17 +8,11 @@ user-invocable: true
|
|
|
8
8
|
|
|
9
9
|
# rb:init — Project Config Setup
|
|
10
10
|
|
|
11
|
-
Initialize `.claude/rb-config.md` with API connection details, project URL, board selection, and user credentials.
|
|
12
|
-
|
|
13
|
-
## Prerequisites
|
|
14
|
-
|
|
15
|
-
The `RAYBURST_API_KEY` environment variable must be set before the plugin's MCP server can connect. If not set, guide the user to set it.
|
|
11
|
+
Initialize `.claude/rb-config.md` with API connection details, project URL, board selection, and user credentials. The plugin's MCP server and hooks read this file automatically.
|
|
16
12
|
|
|
17
13
|
## MCP Tool Prefix
|
|
18
14
|
|
|
19
|
-
All MCP tools
|
|
20
|
-
|
|
21
|
-
Example: `mcp__plugin_rayburst_rayburst__rb_ping`
|
|
15
|
+
All MCP tools use: `mcp__plugin_rayburst_rayburst__`
|
|
22
16
|
|
|
23
17
|
---
|
|
24
18
|
|
|
@@ -56,24 +50,44 @@ Ask the user for their Rayburst API key:
|
|
|
56
50
|
```
|
|
57
51
|
Rayburst API Key
|
|
58
52
|
Enter your API key (starts with rb_user_...):
|
|
59
|
-
Get one at https://www.rayburst.app/
|
|
53
|
+
Get one at https://www.rayburst.app/profile?tab=mcp-agents
|
|
60
54
|
```
|
|
61
55
|
|
|
62
56
|
Validate: non-empty, starts with `rb_`. Store as `api_key`.
|
|
63
57
|
|
|
64
|
-
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
### Step 3: Write Minimal Config & Verify
|
|
61
|
+
|
|
62
|
+
**Before continuing with other prompts**, write a minimal config file so the MCP server can connect:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
mkdir -p .claude
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Write `.claude/rb-config.md` with just the API section:
|
|
69
|
+
|
|
70
|
+
```markdown
|
|
71
|
+
# Rayburst Project Config
|
|
72
|
+
|
|
73
|
+
## API
|
|
74
|
+
- API Key: <api_key>
|
|
75
|
+
- API URL: https://api.rayburst.app/api/v1/mcp
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Now verify the connection works:
|
|
65
79
|
|
|
66
80
|
```
|
|
67
81
|
mcp__plugin_rayburst_rayburst__rb_ping()
|
|
68
82
|
```
|
|
69
83
|
|
|
70
|
-
**If ping fails**,
|
|
84
|
+
**If ping fails**, the key may be invalid or the API unreachable. Ask the user to double-check and re-enter. Re-write the config and retry.
|
|
71
85
|
|
|
72
|
-
|
|
86
|
+
**If ping succeeds**, continue to Step 4.
|
|
73
87
|
|
|
74
88
|
---
|
|
75
89
|
|
|
76
|
-
### Step
|
|
90
|
+
### Step 4: Prompt for Project URL
|
|
77
91
|
|
|
78
92
|
Ask the user:
|
|
79
93
|
|
|
@@ -88,7 +102,7 @@ Store as `project_url`.
|
|
|
88
102
|
|
|
89
103
|
---
|
|
90
104
|
|
|
91
|
-
### Step
|
|
105
|
+
### Step 5: Select Board
|
|
92
106
|
|
|
93
107
|
List available boards:
|
|
94
108
|
|
|
@@ -110,7 +124,7 @@ Store the selected `board_id` and `board_slug`.
|
|
|
110
124
|
|
|
111
125
|
---
|
|
112
126
|
|
|
113
|
-
### Step
|
|
127
|
+
### Step 6: Identify Projects
|
|
114
128
|
|
|
115
129
|
Ask the user which projects this workspace maps to. Show any projects associated with the selected board if available, or ask:
|
|
116
130
|
|
|
@@ -124,30 +138,30 @@ Store as `frontend_project_id` and `backend_project_id`.
|
|
|
124
138
|
|
|
125
139
|
---
|
|
126
140
|
|
|
127
|
-
### Step
|
|
141
|
+
### Step 7: Collect Users (loop)
|
|
128
142
|
|
|
129
143
|
Initialize an empty `users` list.
|
|
130
144
|
|
|
131
145
|
**For each user, ask in sequence:**
|
|
132
146
|
|
|
133
|
-
**
|
|
147
|
+
**7a. Username / email**
|
|
134
148
|
```
|
|
135
149
|
User <N> — Username or email:
|
|
136
150
|
```
|
|
137
151
|
|
|
138
|
-
**
|
|
152
|
+
**7b. Password or env var**
|
|
139
153
|
```
|
|
140
154
|
User <N> — Password (or $ENV_VAR_NAME to reference an env variable):
|
|
141
155
|
```
|
|
142
156
|
|
|
143
157
|
If input starts with `$`, store as-is. Otherwise store literal.
|
|
144
158
|
|
|
145
|
-
**
|
|
159
|
+
**7c. Description**
|
|
146
160
|
```
|
|
147
161
|
User <N> — Description (e.g. Admin, Viewer, Editor) [User <N>]:
|
|
148
162
|
```
|
|
149
163
|
|
|
150
|
-
**
|
|
164
|
+
**7d. Add another user?**
|
|
151
165
|
```
|
|
152
166
|
Add another user? (yes / no) [no]:
|
|
153
167
|
```
|
|
@@ -156,9 +170,9 @@ At minimum one user required.
|
|
|
156
170
|
|
|
157
171
|
---
|
|
158
172
|
|
|
159
|
-
### Step
|
|
173
|
+
### Step 8: Write Full Config
|
|
160
174
|
|
|
161
|
-
|
|
175
|
+
Write the complete `.claude/rb-config.md` (overwriting the minimal one from Step 3):
|
|
162
176
|
|
|
163
177
|
```markdown
|
|
164
178
|
# Rayburst Project Config
|
|
@@ -190,21 +204,19 @@ Show formatted preview, then write `.claude/rb-config.md`:
|
|
|
190
204
|
|
|
191
205
|
---
|
|
192
206
|
|
|
193
|
-
### Step
|
|
207
|
+
### Step 9: Confirmation Summary
|
|
194
208
|
|
|
195
209
|
```
|
|
196
210
|
Config saved to .claude/rb-config.md
|
|
197
211
|
|
|
212
|
+
API Key : <first 12 chars>...
|
|
198
213
|
Project URL : <project_url>
|
|
199
214
|
Board : <board_slug> (<board_id>)
|
|
200
215
|
Projects : Frontend: <id>, Backend: <id>
|
|
201
216
|
Users : <N> user(s) configured
|
|
202
217
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
/rb:plan <task> — Plan a feature with board card
|
|
206
|
-
/rb:sync <task> — Sync a task to the feature atlas
|
|
207
|
-
/rb:implement <cardId> — Implement a board card
|
|
218
|
+
Rayburst is now active. On your next session, Claude will automatically
|
|
219
|
+
have your feature atlas and board context. No commands needed — just code.
|
|
208
220
|
```
|
|
209
221
|
|
|
210
222
|
---
|
|
@@ -215,3 +227,4 @@ Next steps:
|
|
|
215
227
|
- **At least one user required**
|
|
216
228
|
- **URL must start with `http://` or `https://`**
|
|
217
229
|
- **`.claude/` directory must exist** — create with `mkdir -p .claude` before writing
|
|
230
|
+
- **Write minimal config before pinging** — the MCP server reads from rb-config.md, not env vars
|