@rayburst/cc 1.0.30 → 1.0.31

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.
@@ -334,6 +334,26 @@ For each `existing_feature` with observed behaviors not yet tracked as criteria:
334
334
 
335
335
  Limit enrichment to 3 new criteria per existing feature to avoid over-loading features with redundant data.
336
336
 
337
+ **After enriching each existing feature**, check its current links and add any missing relationships that were evident from the discovery run:
338
+
339
+ ```
340
+ <MCP_PREFIX>list_feature_links({ featureId: "<existing feature ID>" })
341
+ ```
342
+
343
+ For each clear relationship not yet present (limit: at most 3 new links per feature):
344
+
345
+ ```
346
+ <MCP_PREFIX>link_feature_to_feature({
347
+ sourceFeatureId: "<existing feature ID>",
348
+ targetFeatureId: "<related feature ID>",
349
+ linkType: "<depends_on | implements | extends | related_to>"
350
+ })
351
+ ```
352
+
353
+ Apply the same relationship type guide as Step 7. Only link if the relationship is semantically clear from what you observed in the browser. Track the total count for the Step 9 report.
354
+
355
+ **Also apply this linking check to existing features that were matched but had NO new criteria to add** — if you observed a clear relationship that isn't yet linked, create the link even if no criteria enrichment was needed.
356
+
337
357
  ---
338
358
 
339
359
  ### Step 9: Summary Report
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rayburst/cc",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "description": "Rayburst slash commands for Claude Code — /rb:init, /rb:plan, /rb:sync, /rb:status, /rb:validate-feature, /rb:validate-card, /rb:implement, /rb:discover",
5
5
  "bin": {
6
6
  "rayburst-cc": "bin/install.js"