Skip to main content

devverse-validate

Run repository-specific validation for DevVerse changes. Use when asked to test, validate, smoke check, or confirm modifications in this repository.

Jump to install

Source facts

Repository
hoangsonww/DevVerse-SWE-Blog
Last source activity
February 28, 2026 at 11:47
Detected SKILL.md language
English
Stars
15
Forks
13

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
3 files

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
devverse-validate
description
Run repository-specific validation for DevVerse changes. Use when asked to test, validate, smoke check, or confirm modifications in this repository.
# DevVerse Validation Workflow 1. Inspect the current diff first. Use `git status --short` and `git diff --name-only`. 2. Read the validation matrix before running commands. @references/validation-matrix.md 3. Choose the smallest useful set of validations that matches the touched files. 4. Never use `npm run lint` as a read-only validation step. It runs Prettier write mode in this repository. 5. Prefer the constrained-environment Jest commands when needed. Use `env JEST_USE_WATCHMAN=0 npm test -- --runInBand --watchman=false`. 6. Run `python3 scripts/check_content_contract.py` for article changes. 7. Run `npx tsc --noEmit --pretty false` for TypeScript, route, component, or library changes. 8. Run `npm run build` for page, layout, config, or global styling changes when it is worth the extra cost. If it fails because of Google font fetching, report that as an environment limitation unless there is evidence of a code regression. 9. Report exactly what ran, what passed, what failed, and what was skipped.
View on GitHub