@massu/core 0.6.1 → 0.6.2
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/commands/_shared-preamble.md +14 -0
- package/commands/_shared-references/verification-table.md +0 -3
- package/commands/massu-ci-fix.md +2 -2
- package/commands/massu-gap-enhancement-analyzer.md +85 -345
- package/commands/massu-golden-path/references/approval-points.md +9 -12
- package/commands/massu-golden-path/references/competitive-mode.md +9 -7
- package/commands/massu-golden-path/references/error-handling.md +4 -2
- package/commands/massu-golden-path/references/phase-0-requirements.md +3 -3
- package/commands/massu-golden-path/references/phase-1-plan-creation.md +41 -52
- package/commands/massu-golden-path/references/phase-2-implementation.md +50 -157
- package/commands/massu-golden-path/references/phase-2.5-gap-analyzer.md +14 -48
- package/commands/massu-golden-path/references/phase-3-simplify.md +5 -5
- package/commands/massu-golden-path/references/phase-4-commit.md +20 -46
- package/commands/massu-golden-path/references/phase-5-push.md +14 -47
- package/commands/massu-golden-path/references/phase-6-completion.md +8 -58
- package/commands/massu-golden-path.md +27 -43
- package/commands/massu-loop/references/checkpoint-audit.md +14 -18
- package/commands/massu-loop/references/guardrails.md +3 -3
- package/commands/massu-loop/references/iteration-structure.md +46 -14
- package/commands/massu-loop/references/loop-controller.md +72 -63
- package/commands/massu-loop/references/plan-extraction.md +19 -11
- package/commands/massu-loop/references/vr-plan-spec.md +20 -28
- package/commands/massu-loop.md +36 -56
- package/commands/massu-review.md +2 -2
- package/dist/cli.js +0 -0
- package/package.json +1 -1
- package/README.md +0 -40
- package/commands/massu-golden-path/references/phase-3.5-security-audit.md +0 -108
|
@@ -14,6 +14,20 @@
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
+
## ZERO-TOLERANCE: FIX ALL ISSUES AT ALL SEVERITY LEVELS (CR-45)
|
|
18
|
+
|
|
19
|
+
**Every issue discovered during any command — security, design, gaps, enhancements, accessibility, performance, UX, architecture — MUST be fixed regardless of severity.** CRITICAL, HIGH, MEDIUM, LOW: all get fixed. No severity is exempt. No deferring. No "document and proceed." No "user decides." If the command finds it, the command fixes it.
|
|
20
|
+
|
|
21
|
+
This applies universally to:
|
|
22
|
+
- Security audits (CRITICAL through LOW — all fixed)
|
|
23
|
+
- Gap & enhancement analysis (all gaps AND all enhancements — implemented)
|
|
24
|
+
- Code reviews (all findings — fixed before completion)
|
|
25
|
+
- Simplification (all efficiency/reuse/pattern findings — applied)
|
|
26
|
+
- Multi-perspective reviews (security, architecture, UX — all findings fixed)
|
|
27
|
+
- Any other review, audit, or analysis phase
|
|
28
|
+
|
|
29
|
+
**"Clean pass" means ZERO findings at ALL severity levels.** Declaring completion with unfixed LOW/MEDIUM findings is a protocol violation.
|
|
30
|
+
|
|
17
31
|
## ENTERPRISE-GRADE SOLUTIONS ONLY (CR-14)
|
|
18
32
|
|
|
19
33
|
All work MUST be enterprise-grade: production-ready, permanent, professional. No temporary fixes, workarounds, or "quick fixes". If a proper solution requires more work, do that work.
|
|
@@ -23,9 +23,6 @@
|
|
|
23
23
|
| VR-BROWSER | Playwright: navigate, snapshot, console_messages, interact | 0 errors, UI works | ANY UI fix/change (CR-41) |
|
|
24
24
|
| VR-SPEC-MATCH | Grep for EXACT CSS classes/structure from plan | All plan-specified strings found | UI plan items (CR-42) |
|
|
25
25
|
| VR-PIPELINE | Trigger pipeline procedure, verify non-empty output | Output contains data | Data pipeline features (CR-43) |
|
|
26
|
-
| VR-BOOT | Start service via launchctl/python, wait 5s, check process alive + exit 0 | Process running after 5s | ANY plan item creating/modifying a daemon, LaunchAgent, or service (CR-44) |
|
|
27
|
-
| VR-DEPS | Verify `.venv/bin/python3` exists + all imports in main.py are importable | All imports resolve | ANY Python service with a venv-based plist (CR-44) |
|
|
28
|
-
| VR-COMPAT | Check Python version vs syntax used (`\|` unions require 3.10+, `match` requires 3.10+) | No version-incompatible syntax | Python services on systems with Python < 3.10 (CR-44) |
|
|
29
26
|
|
|
30
27
|
**Full VR-* reference (50+ types)**: [reference/vr-verification-reference.md](../../reference/vr-verification-reference.md)
|
|
31
28
|
|
package/commands/massu-ci-fix.md
CHANGED
|
@@ -5,10 +5,10 @@ allowed-tools: Bash(*), Read(*), Edit(*), Write(*), Grep(*), Glob(*)
|
|
|
5
5
|
---
|
|
6
6
|
name: massu-ci-fix
|
|
7
7
|
|
|
8
|
-
> **Shared rules apply.** Read `.claude/commands/_shared-preamble.md` before proceeding.
|
|
9
|
-
|
|
10
8
|
# Massu CI Fix: Auto-Diagnose and Fix CI Failures
|
|
11
9
|
|
|
10
|
+
> **Shared rules apply.** Read `.claude/commands/_shared-preamble.md` before proceeding.
|
|
11
|
+
|
|
12
12
|
## Objective
|
|
13
13
|
|
|
14
14
|
Automatically pull CI failure logs, diagnose root cause, fix, commit, and re-push. Zero cognitive load.
|