Release Readiness
Use this skill after implementing a change.
Workflow
- Identify the touched services from the changed files.
- Map each touched area to its minimum useful validation.
- Check for obvious repo-specific drift risks:
- generated output edited instead of source
- backend or crawler scheduled paths mismatched
- frontend API URL inconsistency introduced
- newsletter or crawler live-side-effect commands run unintentionally
- infra placeholders or mutable tags left behind
- Report:
- what is validated
- what is unvalidated
- what should block merge versus what is residual risk
Minimum Validation Hints
backend/:npm testfrontend/:npm run lint, plus Playwright for user-flow changescrawler/:npm testnewsletters/:npm testagentic_ai/: static review unless Python environment is confirmedinfrastructure/: manifest/script consistency review unless deploy tooling is confirmed
References
- Read
references/validation-matrix.mdif the touched surface spans multiple services.