with one click
with one click
Scaffold and implement a new MCP tool end-to-end — endpoint, handler, registration, docs
Debug a malfunctioning MCP tool — trace the full request lifecycle to find the issue
Structured bug fix workflow — find issue in tracker, root-cause, fix, test, verify, document
Guided npm publish workflow — version bump, quality gate, build, publish, tag
Post-task retrospective — captures what worked, what went wrong, writes lessons to auto-memory
Review code for bugs, MCP protocol violations, consistency issues, and convention adherence
| name | verify |
| description | Run the full quality gate — format, typecheck, lint, test, build |
| argument-hint | [scope: "quick" for typecheck+lint only, or empty for full gate] |
Run verification for the TestDino MCP project.
Use when: you just modified code and want a fast check.
npm run typecheck && npm run lint
Use when: work is complete, ready to commit.
npm run format && npm run typecheck && npm run lint && npm run test && npm run build
Use when: preparing a release.
npm run format && npm run typecheck && npm run lint && npm run test && npm run build
Then verify:
package.json, server.json, and src/index.tsdist/ is up to date (check git diff dist/).env or secrets in staged filesIf $ARGUMENTS is "quick" or "fast" → run Quick Gate.
If $ARGUMENTS is "publish" or "release" → run Publish Gate.
Otherwise → run Full Gate.
Scope: quick / full / publish
format: PASS/FAIL/SKIPPED
typecheck: PASS/FAIL
lint: PASS/FAIL
test: PASS/FAIL (N tests, N passed, N failed)
build: PASS/FAIL/SKIPPED
version: CONSISTENT/MISMATCH (publish only)