Help us improve
Share bugs, ideas, or general feedback.
From rafayels-engineering
Run all quality checks (Go lint, frontend lint, typecheck). Use before committing, creating PRs, or when you need to verify code quality passes.
npx claudepluginhub rafayelgardishyan/rafayels-marketplace --plugin rafayels-engineeringHow this skill is triggered — by the user, by Claude, or both
Slash command
/rafayels-engineering:checkThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
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.
make check
make check runs three checks sequentially. All must pass.
Note: This does NOT run tests. Use make test or /test separately.
golangci-lint with depguard architecture rules, errcheck, gosec, complexity limitsfrontend/ and modules/chat/frontend/svelte-check on both frontend projectsRun individual checks when debugging:
make lint # Go only
make lint-frontend # Biome only
make typecheck # svelte-check only
/fix for auto-fixable lint and formatting issuesmake check to confirmAll checks must pass before committing or creating a PR.