Use when building or modifying CRUD endpoints with FastCRUD (the fastcrud PyPI package) in a FastAPI project — covers FastCRUD, crudrouter, EndpointCreator, FilterConfig, JoinConfig, auto-relationship detection, the filter operator syntax (gte, in, ilike, etc.), cursor pagination, soft delete, and how to avoid N+1…
Instructions for fr0ster/mcp-abap-adt, covering mcp abap adt - development guide, testing, integration tests, soft mode (mass run) — save full log and test configuration.
MCP server for SAP ABAP ADT: repository analysis and CRUD for RAP and classic ABAP. Runs locally from the @mcp-abap-adt/core npm package. Needs 10 environment variables to run.
Instructions for caspel26/django-ninja-aio-crud, covering claude.md, project overview, project structure, running tests and test-driven development protocol.
Generate complete CRUD application services for ABP Framework following DDD patterns. Creates interface in Contracts layer, implementation in AppServices, and DTOs in Contracts. Use when: (1) creating new entity services, (2) scaffolding CRUD operations, (3) implementing standard ABP service patterns, (4) accelerating…
Instructions for docdyhr/simplenote-mcp-server, covering github copilot code generation instructions, python standards, file standards, pre-commit compliance and common anti-patterns to avoid.
Flags N+1 query patterns, unbounded include/relation depth, missing pagination limits, and inefficient query-builder usage in Kavo's engine and TypeORM adapter. Use during review of any branch touching query resolution, the include resolver, pagination, or packages/orms/typeorm. Read-only; never edits files.
Reviews a Kavo branch for correctness, engine/registry design invariants, package-boundary and public-API compliance, docs sync, and naming-convention compliance. Use as the main review pass before opening or merging a PR. Read-only; reports findings and never edits.
Audits a Kavo change for security-relevant surface — mass assignment, filter/sort/select allowlist bypass, exposeInternals misuse, and DTO leakage of internal fields. Use during review of any branch touching config resolution, query normalization, DTO derivation, or the TypeORM adapter. Read-only; never edits files.
The end-to-end procedure for adding, overriding, or disabling a Kavo operation — registry entry, DTO slots, handler, route metadata, and tests. Use when a change introduces a new CRUD operation or a custom per-entity operation.
Reference skills for building apps with Kavo — quick start, @Kavo() config, global config, query grammar, DTOs, error handling, soft delete, policy authorization, composite primary keys, Swagger, and the GraphQL and MCP bindings, plus per-ORM wiring for TypeORM, Prisma, Mongoose, and MikroORM.
12 yesterdayA
tokens not measured
originalApache-2.0
Reference for what @Kavo(Entity, config?) generates and how to configure/override it — routes table, EntityConfig shape (dto/allowlists/operations), manual-method-wins, @Override, and fully custom routes. Use when writing or reviewing a @Kavo-decorated controller, or answering "how do I configure/override this route"…
Reference for Kavo's policy authorization DSL — permission()/role()/owner()/authenticated()/filtered()/when() composed with and()/or()/not(), config placement, entity-aware nodes, enforcement order, and the authorization.required default-deny switch. Use when gating an operation on the caller (403 KAVOFORBIDDEN)…