From rafayels-engineering
Run all tests (Go unit tests + frontend tests). Use after implementing features, fixing bugs, or before creating PRs to verify correctness.
npx claudepluginhub rafayelgardishyan/rafayels-engineeringThis skill is limited to using the following tools:
```bash
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
make test-all
make test-all runs both Go and frontend test suites:
go test -race -count=1 across all packages (excludes example/)frontend/ and modules/chat/frontend/Run individual suites when debugging:
make test # Go only
make test-frontend # Frontend only (Vitest)
make test-e2e # Playwright E2E (requires make docker-up + seed)
Tests require built embed prerequisites (chat frontend bundle + email templates):
make build-modules # Build chat frontend bundle
make build-emails # Compile MJML templates
On a fresh clone, run /getting-started first — it handles all prerequisites.
This runs unit tests only. For quality checks (lint, typecheck), use /check.
For E2E tests, use make test-e2e (requires Docker + SurrealDB).