thevoidforge-methodology 23.5.3 → 23.5.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/.claude/commands/build.md +3 -0
- package/.claude/commands/qa.md +4 -0
- package/.claude/commands/ux.md +2 -0
- package/CHANGELOG.md +8 -0
- package/VERSION.md +2 -1
- package/package.json +1 -1
|
@@ -125,6 +125,9 @@ Before agent deployment, run the Herald to select the optimal roster:
|
|
|
125
125
|
## Phase 12.5 — Wong's Pattern Usage Log
|
|
126
126
|
After build and before launch, log which patterns were used: pattern name, framework adaptation, custom mods. Store in `docs/pattern-usage.json`. Feeds Wong's promotion analysis in `/debrief`.
|
|
127
127
|
|
|
128
|
+
## Phase 12.75 — Distribution Verification Gate
|
|
129
|
+
If this build introduces a new shared file category (e.g., `.claude/agents/`, new patterns subdirectory), verify ALL 6 consumption paths include it: prepack.sh, copy-assets.sh, project-init.ts, updater.ts, FORGE_KEEPER.md, void.md. Missing one path = users silently miss the feature. (Field report #297.)
|
|
130
|
+
|
|
128
131
|
## Phase 13 — Launch (All agents)
|
|
129
132
|
1. Full checklist: SSL, email, payments, analytics, monitoring, backups, security headers, legal, performance, mobile, accessibility, all tests passing
|
|
130
133
|
2. Log final status to `/logs/phase-13-launch.md`
|
package/.claude/commands/qa.md
CHANGED
|
@@ -50,6 +50,10 @@ Before agent deployment, run the Herald to select the optimal roster:
|
|
|
50
50
|
## Step 2 — Baseline
|
|
51
51
|
Get the project running. Verify manually: app starts, primary flow works, auth works (if applicable), data persists, error states display.
|
|
52
52
|
|
|
53
|
+
**Dynamic count check:** Grep for hardcoded numeric claims ("263 agents", "37 patterns", etc.) across all pages and data files. Every count that can change between releases must be computed from the source, not hardcoded. (Field report #298.)
|
|
54
|
+
|
|
55
|
+
**Cross-array uniqueness audit:** If the codebase uses multiple data arrays for entity categories (e.g., leadAgents + subAgents), verify no entity appears in more than one array. Duplicates inflate totals. (Field report #298.)
|
|
56
|
+
|
|
53
57
|
## Step 2.5 — Smoke Tests
|
|
54
58
|
After build + restart, **Flash** `subagent_type: Flash` parallelizes curl commands against the running server for each new or modified feature:
|
|
55
59
|
- **Primary user flow:** Execute via curl/fetch against localhost — verify the end-to-end path works
|
package/.claude/commands/ux.md
CHANGED
|
@@ -32,6 +32,8 @@ Before agent deployment, run the Herald to select the optimal roster:
|
|
|
32
32
|
Detect: framework, styling system, component library, routing, state management.
|
|
33
33
|
Document in phase log: "How to run", key routes, where components/styles/copy live.
|
|
34
34
|
|
|
35
|
+
**Screenshot mandate (MANDATORY):** If the app is runnable, start the server, take screenshots of EVERY page via Playwright or browser, and READ them via the Read tool. Without screenshots, the review is code-reading — not visual verification. Take at desktop (1440x900), plus 375px and 768px for responsive proof-of-life.
|
|
36
|
+
|
|
35
37
|
## Step 1 — Product Surface Map
|
|
36
38
|
List every screen/route, primary user journeys, key shared components, and the state taxonomy (loading/empty/error/success/partial/unauthorized). Write to phase log.
|
|
37
39
|
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [23.5.4] - 2026-04-12
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- **3 command-doc sync gaps** — build.md now includes Phase 12.75 (distribution verification gate), ux.md now includes screenshot mandate, qa.md now includes dynamic count check + cross-array uniqueness audit
|
|
13
|
+
- **ROADMAP.md version** — updated from v23.5.0 to v23.5.3
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
9
17
|
## [23.5.3] - 2026-04-12
|
|
10
18
|
|
|
11
19
|
### Fixed
|
package/VERSION.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Version
|
|
2
2
|
|
|
3
|
-
**Current:** 23.5.
|
|
3
|
+
**Current:** 23.5.4
|
|
4
4
|
|
|
5
5
|
## Versioning Scheme
|
|
6
6
|
|
|
@@ -14,6 +14,7 @@ This project uses [Semantic Versioning](https://semver.org/):
|
|
|
14
14
|
|
|
15
15
|
| Version | Date | Summary |
|
|
16
16
|
|---------|------|---------|
|
|
17
|
+
| 23.5.4 | 2026-04-12 | Command-doc sync: build.md Phase 12.75, ux.md screenshots, qa.md dynamic counts |
|
|
17
18
|
| 23.5.3 | 2026-04-12 | Fix 201 broken subagent_type refs (filename→YAML name) + /campaign as default start command |
|
|
18
19
|
| 23.5.2 | 2026-04-12 | /void auto-cleanup ~/.claude/ duplicates + git init stack trace fix |
|
|
19
20
|
| 23.5.1 | 2026-04-12 | Fix CLI self-upgrade: wrong package name (voidforge → thevoidforge) + stale npx cache on re-exec |
|