mindsystem-cc 4.1.1 → 4.2.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.
@@ -291,6 +291,38 @@ If the verifier's return includes "Items Not Verified Programmatically" (uncerta
291
291
  Read `~/.claude/mindsystem/references/routing/gap-closure-routing.md` and follow its triage instructions to present gap summary and route to the appropriate primitive based on scope analysis.
292
292
  </step>
293
293
 
294
+ <step name="browser_verification">
295
+ Run browser verification prerequisites check:
296
+
297
+ ```bash
298
+ ms-tools browser-check
299
+ ```
300
+
301
+ **If exit 0 (READY):**
302
+
303
+ Read `~/.claude/mindsystem/references/browser-verification.md` and follow its Auth Flow and Spawn sections.
304
+
305
+ After verifier returns, if fixes were made:
306
+ - Report: "Browser verification: {N} issues found and fixed"
307
+ - Include report summary in consolidator prompt (step `consolidate_knowledge`)
308
+
309
+ **If exit 1 (MISSING_DEPS):**
310
+
311
+ Parse output for missing items. Use AskUserQuestion:
312
+ - header: "Browser verification"
313
+ - question: "Browser verification prerequisites are missing. How to proceed?"
314
+ - options:
315
+ - "Install missing dependencies" — follow install instructions from output
316
+ - "Skip browser verification" — proceed to code_review
317
+
318
+ If user installs: re-run `ms-tools browser-check`.
319
+ If user skips: proceed to code_review.
320
+
321
+ **If exit 2 (SKIP):**
322
+
323
+ Proceed silently to code_review.
324
+ </step>
325
+
294
326
  <step name="code_review">
295
327
  Read code review agent name from config:
296
328
 
@@ -311,7 +343,7 @@ Use CODE_REVIEW value directly as agent name.
311
343
  1. **Gather changed files:**
312
344
  ```bash
313
345
  # Get all files changed in this phase's commits
314
- PHASE_COMMITS=$(git log --oneline --grep="(${PHASE_NUMBER}-" --format="%H")
346
+ PHASE_COMMITS=$(ms-tools find-phase-commits ${PHASE_NUMBER})
315
347
  CHANGED_FILES=$(git diff --name-only $(echo "$PHASE_COMMITS" | tail -1)^..HEAD | grep -E '\.(dart|ts|tsx|js|jsx|swift|kt|py|go|rs)$')
316
348
  ```
317
349
 
@@ -447,7 +479,7 @@ Check what changed during this phase:
447
479
 
448
480
  ```bash
449
481
  # Get all source changes from this phase's commits
450
- PHASE_COMMITS=$(git log --oneline --grep="({phase_number}-" --format="%H" | head -20)
482
+ PHASE_COMMITS=$(ms-tools find-phase-commits {phase_number})
451
483
  if [ -n "$PHASE_COMMITS" ]; then
452
484
  FIRST=$(echo "$PHASE_COMMITS" | tail -1)
453
485
  git diff --name-only ${FIRST}^..HEAD 2>/dev/null | grep -v "^\.planning/"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mindsystem-cc",
3
- "version": "4.1.1",
4
- "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.",
3
+ "version": "4.2.0",
4
+ "description": "The engineer's meta-prompting system for Claude Code.",
5
5
  "bin": {
6
6
  "mindsystem-cc": "bin/install.js"
7
7
  },