myot-validate
Runs defined lint and build scripts to validate MYOT project status.
Install
mkdir -p .claude/skills/myot-validate && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12569" && unzip -o skill.zip -d .claude/skills/myot-validate && rm skill.zipInstalls to .claude/skills/myot-validate
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Run MYOT project validation commands (lint and build) and report results.Key capabilities
- →Run npm lint command
- →Run npm build command
- →Report command exit status
- →Report error output if any
- →Indicate whether validation passed or failed
How it works
The skill executes predefined npm lint and build commands from package.json and reports their outcomes.
Inputs & outputs
When to use myot-validate
- →Lint code
- →Validate build status
- →Report CI-like check results
About this skill
Skill: myot-validate
Commands
npm run lint # ESLint
npm run build # tsc -b && vite build
Notes
- Use only commands defined in
package.jsonscripts. Do not invent commands. - There is no automated test suite.
- Manual verification:
npm run dev→ openhttp://localhost:5173→Ctrl+KDevTools → Tester tab. - Claude Code: do not run
npm run devin the terminal; ask the user to start it manually.
Output
Report:
- Command run
- Exit status
- Error output (if any)
- Whether validation passed or failed
When not to use it
- →When the commands are not defined in package.json scripts
- →When automated test suite is required
Limitations
- →Only uses commands defined in package.json scripts
- →Does not have an automated test suite
- →Does not run npm run dev in the terminal
How it compares
This skill automates the execution and reporting of lint and build commands, unlike manually running each command and interpreting its output.
Compared to similar skills
myot-validate side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| myot-validate (this skill) | 0 | 3mo | Review | Beginner |
| dependency-upgrade | 26 | 5mo | Review | Intermediate |
| lint-and-validate | 6 | 6mo | Review | Beginner |
| customaize-agent:create-hook | 0 | 5mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
dependency-upgrade
wshobson
Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.
lint-and-validate
davila7
Automatic quality control, linting, and static analysis procedures. Use after every code modification to ensure syntax correctness and project standards. Triggers onKeywords: lint, format, check, validate, types, static analysis.
customaize-agent:create-hook
LAI-YEN-CHUN
Create and configure git hooks with intelligent project analysis, suggestions, and automated testing
verify
hoangsonww
Run Forge's canonical verification chain (format:check + lint + typecheck + build + test). Use before claiming any task done or opening a PR.
lint-js
y1feng200156
Check JavaScript/TypeScript code quality with ESLint
unit-tests
DEFRA
Expert unit test engineer for MMO Shared Reference Data. Use when: writing unit tests, updating tests for code changes, fixing failing tests, improving code coverage, fixing SonarQube issues.