Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub pcollinsonline/claude-asana --plugin plugins-dev-toolsHow 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.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
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.