Collection of agent skills and custom agents for code review, testing, security, and more
QA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.
Senior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.
Security engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.
Web performance engineer focused on Core Web Vitals, loading, rendering, and network optimization. Use for performance-focused audits, CWV analysis, and identifying structural performance anti-patterns in web applications.
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints, defining type contracts between modules, or establishing boundaries between frontend and backend.
Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze network requests, profile performance, or verify visual output with real runtime data. Requires the chrome-devtools MCP server to be configured.
Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test runners in CI, or establish deployment strategies.
Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to assess code quality across multiple dimensions before it enters the main branch.
Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend than it should be. Use when reviewing code that has accumulated unnecessary complexity.
Uses power tools
Uses Bash, Write, or Edit tools
Based on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A multi-user expense & income tracker with a clean ASP.NET Core 10 backend and a React + Vite + shadcn/ui frontend. Designed for personal finance tracking with THB currency, Thai-friendly UI, system + custom categories, transaction CRUD, dashboard with charts, and CSV export.
📘 Full plan & architecture → docs/PLAN.md
📐 Project standards → .github/copilot-instructions.md
HttpOnly + SameSite=Strict cookies (15-min access token in memory, 7-day rotated refresh token)=, +, -, @ are prefixed with ')| Layer | Tech |
|---|---|
| Backend | .NET 10 (latest), ASP.NET Core, EF Core 10, Npgsql, FluentValidation, Serilog, BCrypt, CsvHelper |
| Frontend | React 19, Vite, TypeScript, shadcn/ui, Tailwind CSS, Recharts, React Query, React Hook Form + Zod, axios |
| Database | PostgreSQL 16 (Docker Compose locally; Testcontainers in CI) |
| Testing | xUnit + FluentAssertions (BE), Vitest + RTL + MSW (FE), Playwright (E2E) |
| Tool | Version | Notes |
|---|---|---|
| .NET SDK | 10.0.x (latest feature band) | rollForward: latestFeature in backend/global.json — installs the newest 10.0.x automatically |
| Node.js | 22 LTS (≥ 22.0.0, < 23) | frontend/.nvmrc and frontend/.node-version pin this. nvm use, fnm use, nvs, or asdf auto-switch on cd frontend/ |
| Docker | Engine 24+ with Compose v2 | Required for the local Postgres |
| Git | latest | — |
💡 The frontend declares
"engines": { "node": ">=22.0.0 <23" }inpackage.json— a Node 23+ install will failnpm ci.
If your host is Windows 11 with WSL2 (and Postgres is running inside WSL2 via Docker or systemd), localhost:5432 from a Windows process will not reach WSL2's Postgres by default. WSL2's eth0 IP is NAT'd and unreachable from Windows user-mode processes.
The API and the integration tests in tests/ExpenseTracker.IntegrationTests/ already work end-to-end (the test host spins up Postgres via Testcontainers, which routes through the same Windows loopback as the API). But for a manual dotnet run of the API on Windows, you need a portproxy:
# Run PowerShell as Administrator
make db-wsl-ip # prints the current WSL IP
make db-portproxy # forwards localhost:5432 -> WSL:5432
make db-portproxy-remove
Under the hood: netsh interface portproxy add v4tov4 listenport=5432 listenaddress=0.0.0.0 connectport=5432 connectaddress=<WSL_IP>. See scripts/db-portproxy.ps1 for the script.
On macOS, Linux, or when the API runs inside WSL2, this is unnecessary — localhost:5432 works directly.
# 1. Clone the repository
git clone <repo-url> ExpenseTracker
cd ExpenseTracker
# 2. Start Postgres (detached, with healthcheck)
make db-up
# 3. One-time: populate per-developer user-secrets (Jwt:SecretKey + connection string).
# Secrets are stored OUTSIDE the repo, never in tracked files.
make dev-secrets
# 4. Backend: install tools, apply migrations, run
cd backend
dotnet tool restore
dotnet ef database update --project src/ExpenseTracker.Infrastructure --startup-project src/ExpenseTracker.Api
dotnet run --project src/ExpenseTracker.Api
# → API at http://localhost:5000 · Swagger at http://localhost:5000/swagger
# 5. Frontend: install deps, run dev server (in a new terminal)
cd ../frontend
nvm use # auto-switches to Node 22 LTS
npm ci
npm run dev
# → App at http://localhost:5173
Then open http://localhost:5173, register an account, and start logging transactions.
Run the full suite locally before opening a PR:
# Backend
cd backend
dotnet format --verify-no-changes
dotnet build -c Release
dotnet test
# Frontend
cd ../frontend
npm run lint
npm run typecheck
npm test
npm run build
npx claudepluginhub jampissarandev/expense-tracker --plugin agent-skillsComprehensive .NET development skills for modern C#, ASP.NET, MAUI, Blazor, Aspire, EF Core, Native AOT, testing, security, performance optimization, CI/CD, and cloud-native applications
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Harness-native ECC plugin for engineering teams - 67 agents, 279 skills, 94 legacy command shims, reusable hooks, rules, MCP conventions, and operator workflows for Claude Code plus adjacent agent harnesses
Binary reverse engineering, malware analysis, firmware security, and software protection research for authorized security research, CTF competitions, and defensive security
Evidence-gated AI coding workflow: scan → analyze → plan → TDD → execute → fix → verify → review, powered by Codebase Memory MCP >= 0.9.0 with optional Serena LSP intelligence. Includes blast-radius planning, test/cycle gates, independent review, and Windows Git Bash hook auto-resolution.
Complete creative writing suite with 10 specialized agents covering the full writing process: research gathering, character development, story architecture, world-building, dialogue coaching, editing/review, outlining, content strategy, believability auditing, and prose style/voice analysis. Includes genre-specific guides, templates, and quality checklists.