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-engineeringThis skill is limited to using the following tools:
```bash
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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.