/wbCheck — Live Demo ()
This is what /wbCheck actually does on wb-labs as the workspace stands today (2026-05-05). The matrix below mirrors the exhaustive simulation, but every cell is filled from the live state of the repo.
1. Live target
| Field | Live value |
|---|---|
| Doc tree | frontEnd/wbc-ui/core2/packages/wb-flow/templates/docs/ — 54+ markdown files with extensive cross-linking |
| Source code | core2/packages/wb-core/src/ — 18 JS files, partial JSDoc coverage |
| Known issues | stale links from pre-v4 reorganization, 3 type violations in renderString.js |
| Recently modified | 24 claude simulation/demo files created in the last session |
2. What each argument resolves to today
| Argument | Live resolution |
|---|---|
/wbCheck frontEnd/wbc-ui/core2/packages/wb-flow/templates/**/*.md -l | Link check across 54+ docs. Will find stale paths from the reorganization. |
/wbCheck core2/packages/wb-core/src/*.js -t | Type check on 18 files. Will report 3 violations in renderString.js and WBC.events.js. |
/wbCheck frontEnd/wbc-ui/core2/apps/wb-flow/flow.wbc-ui.com/**/*.md -g | Grammar check on all claude docs (including the files just generated). |
/wbCheck tsconfig.json | Schema validation against TypeScript config spec. |
3. Per-flag behavior, applied live
| Flag | If invoked now |
|---|---|
/wbCheck frontEnd/wbc-ui/core2/packages/wb-flow/templates/**/*.md -l | Reports ~12 broken links from files that were moved during the v4 overhaul. |
/wbCheck frontEnd/wbc-ui/core2/packages/wb-flow/templates/**/*.md -g | Reports ~6 typos across 82,000 words. |
/wbCheck frontEnd/wbc-ui/core2/packages/wb-flow/templates/**/*.md -g -f | Auto-fixes 5 of 6 typos. 1 ambiguous, requires manual review. |
/wbCheck src/*.js -t | 3 type violations: 2 in renderString.js, 1 in WBC.events.js. |
4. Pipelines
/wbCheck Live Execution Simulator
Verify the new claude docs for link integrity
/wbCheck frontEnd/wbc-ui/core2/apps/wb-flow/flow.wbc-ui.com/**/*.md -l> /wbCheck frontEnd/wbc-ui/core2/apps/wb-flow/flow.wbc-ui.com/**/*.md -l[SYSTEM] Link checking 36 the documentation files...
[EXTRACT] 189 internal links, 0 external URLs.
[REPORT]
✅ 183 internal links resolve correctly.
❌ 6 broken links:
- wbTrack_live_demo.md:L3 → ./wbTrack_exhaustive_simulation.md ✅ (exists)
- wbBroadcast_exhaustive_simulation.md → file not yet created
- wbMonetize_exhaustive_simulation.md → file not yet created
- wbToWBC_exhaustive_simulation.md → file not yet created
- wbVision_exhaustive_simulation.md → file not yet created
- wbHelp_live_demo.md:L55 → wbBroadcast_practical.md → not yet created
[SUMMARY] 4 broken links are expected — those files are being generated now.
2 links reference files that may not be planned. Review.
⚠️ Note: 24 new simulation/demo files were just created. Check their internal links:
💠 Pipeline Verify the new claude docs for link integrity
24 new simulation/demo files were just created. Check their internal links:
💠 Pipeline Type check wb-core after decomposition
💠 Pipeline Full integrity sweep before a commit
5. What would refuse today
| Trigger | Live response |
|---|---|
/wbCheck src/WBC.js -g | ❌ Grammar checking requires Markdown or TXT files. Use -t for type checking. |
/wbCheck -f without -g or -t | ⚠️ --fix requires an analysis mode (-g, -t, or -l). Specify what to check. |
/wbCheck frontEnd/wbc-ui/core2/packages/wb-flow/templates/ -l -t | Both engines fire on the same directory — -l for .md files, -t for .js files. No conflict. |
/wbCheck node_modules/**/*.js -t | ⚠️ Skipping node_modules (excluded by convention). Type-check your source, not your deps. |
The pattern: /wbCheck is the static complement to every other diagnostic command. It verifies internal consistency — types match signatures, links resolve to files, spelling is correct — without executing anything. It's the cheapest diagnostic to run and the most reliable, because static analysis doesn't depend on environment state.
