Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add ElsiKora/NestJS-Crud-Automator --skill crud-automatorgit clone --depth 1 https://github.com/ElsiKora/NestJS-Crud-AutomatorWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/elsikora/nestjs-crud-automator/crud-automator)<a href="https://agentmods.dev/skills/elsikora/nestjs-crud-automator/crud-automator"><img src="https://agentmods.dev/badge/skills/elsikora/nestjs-crud-automator/crud-automator/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/elsikora/nestjs-crud-automator/crud-automator"><img src="https://agentmods.dev/badge/skills/elsikora/nestjs-crud-automator/crud-automator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00121 | $0.05012 |
| Opus 5 | $0.00060 | $0.02506 |
| Sonnet 5 | $0.00024 | $0.01002 |
| Haiku 4.5 | $0.00012 | $0.00501 |
Grade A, and why
crud-automator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Crud Automator
Source Priority
Use local source as the contract:
src/interface/**,src/type/**, and exported barrels define public API shape.test/unit/**andtest/e2e/**show supported behavior.docs/**andREADME.mdexplain behavior, but may drift and must be checked against source.
Default Workflow
- Inspect the existing entity, service, controller, subscriber, policy, and DTO configuration.
- Prefer native Crud Automator primitives before adding custom controllers, mappers, facades, or wrappers.
- Verify route config against current interfaces before copying examples.
- Validate Swagger, DTO shape, relation loading, subscriber firing, authorization decisions, and transaction behavior after meaningful changes.
Current Contract Reminders
@ApiController()applies Nest@Controller()internally; usepath.routes: {}is valid and still generates default CRUD routes; omitted route entries do not disable routes.- Generated controller routes are
CREATE,GET,GET_LIST,UPDATE(PUT /:id),PARTIAL_UPDATE(PATCH /:id), andDELETE. GET_MANYis service/function/subscriber-only, not a generated HTTP route.- Route controls live under
generation:generation.isEnabled,generation.shouldWriteToController, andgeneration.decorators. - Route security lives under
security.authenticationandsecurity.authorization. authentication.typeis the principal category (USER,ADMIN,ACCOUNT,MERCHANT, or project string), not the bearer/security scheme.- Route-level Swagger security schemes use
authentication.securityRequirements; one object is an AND group and multiple objects are OR alternatives. - Request config is target keyed with
EApiControllerRequestTarget.BODY,PARAMETERS, andQUERY. - Response config is target keyed with
EApiControllerResponseTarget.RESPONSE. - OpenAPI response headers live directly under
response.headers, not underEApiControllerResponseTarget.RESPONSE. autoDtois validators-only. EntityApiPropertyDescribe({ properties })remains the capability baseline; generated GET_LISTrequest[QUERY].filter,order, andpaginationown its generated query contract.ApiPropertyDescribe({ isAutoDtoEnabled: false })keeps entity metadata, TypeORM behavior, and manual DTO use but removes the property from every generated BODY, PARAMETERS, QUERY, and RESPONSE DTO, generated Swagger relation components, and metadata-driven or typed client filter/order input. Omitted ortruepreserves normal generation.- Route/DTO
isEnabled: true, generated GET identity,read.scope.parameters, and query plans cannot re-enable a globally hidden property. ExplicitApiPropertyCopymay deliberately copy it to a manual DTO, but all other route/DTO, guard, and validation rules still apply. PAGE server-only defaults/tie-breakers may use the described scalar; CURSOR ordering cannot because it requires generated response exposure. - Manual
dtoandautoDtoroute branches are mutually exclusive. - A manual GET_LIST QUERY DTO is mutually exclusive with generated filter/order/pagination configuration. Manual RESPONSE DTOs remain compatible; CURSOR additionally requires Automator metadata proving its exact flat wrapper and same-name raw protected item fields.
- Generated GET accepts top-level
identity: { parameter: "gameId" }to rename only its primary-key wire parameter. The service predicate and HOOKS/IAM canonical identity still use the actual primary field, while the response shape is unchanged. Identity-only GET is valid only when the controller path has no inherited dynamic parameters; otherwise the same route needs a completeread.scope.parametersmapping. - Generated GET/GET_LIST
read.scope.parametersis a non-empty array of{ parameter, field }mappings. It must exactly cover every required scalar inherited controller-path parameter once, maps only to distinct described direct scalar fields, and is mutually exclusive with a manual PARAMETERS DTO. Wildcard and optional/grouped dynamic path parameters fail at bootstrap. - Generated read scope creates a route-scoped PARAMETERS DTO and Swagger contract. GET includes its primary identity under the configured alias or the ordinary primary-field name; GET_LIST adds only inherited scope parameters. Identity/query predicates are AND-merged with path scope and then HOOKS/IAM scope without overwrite semantics.
- GET_LIST order config may declare server-only ordered
defaultOrderandtieBreakersentries. These validate against all described direct scalar fields, including UUID columns that are not client-sortable. A client order pair replaces defaults, tie-breakers are appended, and duplicate fields keep the earlier entry. - GET_LIST pagination defaults to
PAGE. ExplicitPAGEkeeps requiredlimit/pageand the count envelope.CURSORkeeps requiredlimit, accepts at most one ofafter/before, omitspage, and returns only{ items, nextCursor, previousCursor }. CURSORis a generated-route mode over the existing service: the first window uses onegetManyquery withtake = limit + 1; a cursor window adds exactly one opposite-directiontake = 1probe. It does not add a provider, read model, service, cursor table, or signing-key configuration.- A
CURSORorder must be explicit. Every possible order field must be a selected, persisted, described, non-null direct scalar with no TypeORM value transformer or accessor and must be unconditionally raw-exposed in the generated response; the entity must have one primary column, and that column must occur only as the final explicit tie-breaker and remain absent from the client order allowlist. - CURSOR v1 is PostgreSQL-only and requires the standard text result parsers. Its exact TypeORM order-declaration matrix is:
boolean; signedsmallintandinteger, including increment-generated columns physically emitted throughSMALLSERIAL/SERIALDDL; numeric enums backed bysmallintorinteger; signedbigint, including increment-generatedBIGSERIALDDL, exposed as canonical decimalBIGINT_STRING; and nativeuuid. Do not usesmallserial,serial, orbigserialas TypeORM column type literals. Binary mode, customextra.types, every other PostgreSQL storage type, and every other driver fail before CURSOR query I/O; PAGE is unchanged.ApiPropertyDescribeestablishes the primitive wire category and raw exposure, but request-only bounds, lengths, patterns, andmultipleOfdo not constrain the opaque seek boundary.BIGINT_STRINGnever converts throughNumber. Entity@AfterLoadlisteners are rejected at bootstrap; applicable active TypeORMafterLoadsubscribers fail before query I/O. Active subscriberlistenTo()targets and PostgreSQL parser configuration are trusted TypeORM extension code and must be deterministic. ApiPropertyDescribeobject metadata usesdataType; manualApiPropertyObjectusestype.ApiPropertyDescriberelation metadata does not currently accept array options.GetDefaultStringFormatProperties(format)provides canonical defaults for supported string formats.- BigInt string sign options use
EApiGetDefaultStringFormatPropertiesBigIntStringSign; the old type alias and paired-suffix validator configuration internals were removed. Import supported symbols from the package root. - Generated CREATE, UPDATE, and PARTIAL_UPDATE bodies omit date fields identified as
CREATED_AT,RECEIVED_AT, orUPDATED_AT; responses retain them. Exclusion follows the semantic identifier rather than property names, andDATEremains writable. - There is no custom-only/default-disabled controller mode. Disable all six generated routes explicitly when a controller should expose only custom routes.
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago Changed · +2 lines 367037cd9661
- 13d ago First seen · 152 lines · 121 tokens per session scan A 40a82ec35e11
crud-automator is a skill published in the GitHub repository ElsiKora/NestJS-Crud-Automator (278 stars, last pushed 9d ago), licensed MIT. It adds 121 tokens to every session and 5,012 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
mem0-oss-to-platform
Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…
agui-dotnet-protobuf
Use the protobuf wire transport (instead of the default Server-Sent Events) for an AG-UI connection with the AG-UI .NET SDK — a compact binary event stream negotiated via the Accept header. USE FOR: making an AGUIChatClient prefer protobuf by wiring an AGUIEventStreamHandler with ProtobufEventStreamFormatter (then…
azure-mgmt-botservice-dotnet
Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".
fastapi-router-py
Create FastAPI routers with CRUD operations, authentication dependencies, and proper response models. Use when building REST API endpoints, creating new routes, implementing CRUD operations, or adding authenticated endpoints in FastAPI applications.
aws-sdk-java-v2-core
Provides AWS SDK for Java 2.x client configuration, credential resolution, HTTP client tuning, timeout, retry, and testing patterns. Use when creating or hardening AWS service clients, wiring Spring Boot beans, debugging auth or region issues, or choosing sync vs async SDK usage.
migrate-segw-to-rap
Reverse-engineer a SEGW-built OData V2 service (MPC/DPC/MPCEXT/DPCEXT) into a modern RAP V4 service — tables, CDS views (interface + projection), behavior definitions, draft entities, service definition + binding. Use when asked to "migrate this SEGW service to RAP", "convert OData V2 to V4 RAP", "modernize this…