npx claudepluginhub joncik91/ucai --plugin ucaiThis skill uses the workspace's default tool permissions.
references/api_design_patterns.mdreferences/backend_security_practices.mdreferences/database_optimization_guide.mdExecutes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Guides idea refinement into designs: explores context, asks questions one-by-one, proposes approaches, presents sections for approval, writes/review specs before coding.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Backend development patterns, API design, database optimization, and security practices for any language or framework.
Before writing any code, identify the language and framework from project signals:
| Signal file / pattern | Stack |
|---|---|
package.json with express/fastify/hono/koa | Node.js |
package.json with nest | NestJS |
go.mod | Go |
Cargo.toml | Rust |
pyproject.toml / requirements.txt + FastAPI/Django/Flask | Python |
pom.xml / build.gradle | Java/Spring |
*.csproj / Program.cs | .NET/C# |
mix.exs | Elixir/Phoenix |
Gemfile with rails/sinatra | Ruby |
Check: ls -la, cat package.json, cat go.mod, cat pyproject.toml — whichever exists.
Once you know the stack, search for current best practices before making recommendations:
WebSearch: "<framework> REST API best practices 2025"
WebSearch: "<framework> authentication JWT best practices 2025"
WebSearch: "<database> query optimization <framework> 2025"
WebSearch: "<framework> microservices patterns 2025"
Use the search results to ground your recommendations in current community standards.
These apply regardless of language or framework.
/users, /orders/{id})/api/v1/ prefix or Accept: application/vnd.api+json;version=1 header{ error: { code, message, details } } across all endpointsalg, iss, aud, explevel, timestamp, requestId, userId, message, error* in production for credentialed requestsnpm audit, cargo audit, pip-audit, govulncheck)Before any backend PR: