Loading...
Loading...
Use when verifying code works — after feature work, before committing, before deploy, or any request to "verify", "check", or "make sure it works"
npx skill4agent add iankiku/forwward-teams gate.claude/project.json${CLAUDE_PLUGIN_ROOT}/scripts/cli init${CLAUDE_PLUGIN_ROOT}/scripts/cli gate # lint + typecheck + build + test
${CLAUDE_PLUGIN_ROOT}/scripts/cli gatekeep -g # same, with PASS/FAIL report
${CLAUDE_PLUGIN_ROOT}/scripts/cli gatekeep -l # lint only
${CLAUDE_PLUGIN_ROOT}/scripts/cli gatekeep -t # test only| Error Type | Fix | Don't |
|---|---|---|
| Type errors | Fix the type, add the import | Use |
| Build errors | Fix imports, exports, modules | Skip the check |
| Lint errors | Fix the actual issue | Blanket |
| Test failures | Fix the code or the test | Delete the test |
| Flag | What |
|---|---|
| Lint only |
| Typecheck only |
| Build only |
| Tests only |
| App startup (dev server + health check) |
| UI tests (Playwright/Cypress) |
| Full gate: lint + typecheck + build + test |
| Everything including app + UI |