From plugins-dev-tools
Run lint, typecheck, and test across the monorepo. Use for pre-push validation, CI checks, or when asked to verify code quality.
How this skill is triggered — by the user, by Claude, or both
Slash command
/plugins-dev-tools:quality-gateThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run all code quality checks for the monorepo. Each step runs sequentially — if a step fails, report the failure and stop.
Run all code quality checks for the monorepo. Each step runs sequentially — if a step fails, report the failure and stop.
allowed-tools.--fix.pnpm turbo lint -- --fix 2>&1
--fix, report the remaining errors and stop.pnpm turbo typecheck 2>&1
pnpm turbo test 2>&1
On completion, display a summary table:
| Step | Status |
|---|---|
| Lint | pass/fail |
| Typecheck | pass/fail |
| Test | pass/fail |
If all steps pass, report Quality gate passed. If any step fails, report Quality gate failed at: <step> with the relevant error output.
npx claudepluginhub pcollinsonline/claude-asana --plugin plugins-dev-toolsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.