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.
- package/agents/ms-browser-verifier.md +102 -0
- package/agents/ms-researcher.md +2 -0
- package/bin/install.js +2 -3
- package/commands/ms/audit-milestone.md +1 -1
- package/commands/ms/config.md +69 -19
- package/commands/ms/create-roadmap.md +13 -0
- package/commands/ms/doctor.md +7 -3
- package/commands/ms/execute-phase.md +21 -14
- package/commands/ms/research-phase.md +11 -9
- package/mindsystem/references/browser-verification.md +76 -0
- package/mindsystem/templates/config.json +4 -1
- package/mindsystem/templates/research-subagent-prompt.md +11 -9
- package/mindsystem/workflows/complete-milestone.md +1 -1
- package/mindsystem/workflows/doctor-fixes.md +32 -3
- package/mindsystem/workflows/execute-phase.md +34 -2
- package/package.json +2 -2
- package/scripts/ms-tools.py +448 -52
|
@@ -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=$(
|
|
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=$(
|
|
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.
|
|
4
|
-
"description": "
|
|
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
|
},
|