projecta-rrr 1.24.3 → 1.24.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/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to RRR will be documented in this file.
4
4
 
5
5
  Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
+ ## [1.24.4] - 2026-05-12
8
+
9
+ ### Fixed
10
+ - **Sprite browser UAT readiness** — live Sprite status now fails when `.planning/RUNTIME.json` requests `gsd-browser` but the Sprite runtime does not have `gsd-browser` on `PATH`.
11
+
7
12
  ## [1.24.3] - 2026-05-12
8
13
 
9
14
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projecta-rrr",
3
- "version": "1.24.3",
3
+ "version": "1.24.4",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by Projecta.ai",
5
5
  "bin": {
6
6
  "projecta-rrr": "bin/install.js",
@@ -465,8 +465,14 @@ function readSpriteStatus(projectRoot, options) {
465
465
  '-lc',
466
466
  'printf "branch="; git branch --show-current; printf "\\nhead="; git rev-parse --short HEAD; printf "\\nclaude="; claude --version 2>/dev/null || true; printf "\\ngsd="; gsd-browser --version 2>/dev/null || true'
467
467
  ]);
468
- status.ok = probe.ok;
468
+ const needsGsd = (plan.runtime.uat && plan.runtime.uat.browser === 'gsd-browser') ||
469
+ (((plan.runtime.tools || {}).developer_sprite || []).includes('gsd-browser'));
470
+ const hasGsd = /(^|\n)gsd=.+/.test(probe.output || '');
471
+ status.ok = probe.ok && (!needsGsd || hasGsd);
469
472
  status.details.push(probe.output || (probe.ok ? 'ok' : 'probe failed'));
473
+ if (probe.ok && needsGsd && !hasGsd) {
474
+ status.details.push('gsd-browser missing from Sprite runtime');
475
+ }
470
476
  } else {
471
477
  const list = execCapture('sprite', ['list', '--prefix', row.sprite]);
472
478
  status.ok = list.ok && list.output.includes(row.sprite);