@rayburst/cc 3.0.4 → 3.1.0
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 +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/server.bundle.mjs +11 -11
- package/skills/init/SKILL.md +19 -9
package/skills/init/SKILL.md
CHANGED
|
@@ -124,17 +124,27 @@ Store the selected `board_id` and `board_slug`.
|
|
|
124
124
|
|
|
125
125
|
---
|
|
126
126
|
|
|
127
|
-
### Step 6:
|
|
127
|
+
### Step 6: Select Projects
|
|
128
128
|
|
|
129
|
-
|
|
129
|
+
List available projects in the organization:
|
|
130
130
|
|
|
131
131
|
```
|
|
132
|
-
|
|
133
|
-
Enter the frontend project ID (or press Enter to skip):
|
|
134
|
-
Enter the backend project ID (or press Enter to skip):
|
|
132
|
+
mcp__plugin_rayburst_rayburst__rb_list_projects()
|
|
135
133
|
```
|
|
136
134
|
|
|
137
|
-
|
|
135
|
+
Display them numbered and let the user pick one or more:
|
|
136
|
+
|
|
137
|
+
```
|
|
138
|
+
Available projects:
|
|
139
|
+
1. Rayburst Frontend (231165df-...) — local
|
|
140
|
+
2. Rayburst API (7805dae1-...) — github
|
|
141
|
+
3. Marketing Site (a1b2c3d4-...) — manual
|
|
142
|
+
|
|
143
|
+
Select project(s) for this workspace (comma-separated numbers, or Enter to skip):
|
|
144
|
+
e.g. 1,2
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
Store selected project IDs and names as `projects` list. If only one is selected, store it. If multiple, store all.
|
|
138
148
|
|
|
139
149
|
---
|
|
140
150
|
|
|
@@ -189,8 +199,8 @@ Write the complete `.claude/rb-config.md` (overwriting the minimal one from Step
|
|
|
189
199
|
- Slug: <board_slug>
|
|
190
200
|
|
|
191
201
|
## Projects
|
|
192
|
-
-
|
|
193
|
-
-
|
|
202
|
+
- <project_name_1>: <project_id_1>
|
|
203
|
+
- <project_name_2>: <project_id_2>
|
|
194
204
|
|
|
195
205
|
## Users
|
|
196
206
|
|
|
@@ -212,7 +222,7 @@ Config saved to .claude/rb-config.md
|
|
|
212
222
|
API Key : <first 12 chars>...
|
|
213
223
|
Project URL : <project_url>
|
|
214
224
|
Board : <board_slug> (<board_id>)
|
|
215
|
-
Projects :
|
|
225
|
+
Projects : <N> project(s) selected
|
|
216
226
|
Users : <N> user(s) configured
|
|
217
227
|
|
|
218
228
|
Rayburst is now active. On your next session, Claude will automatically
|