zod-nest 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -461,6 +461,21 @@ If you're coming from `nestjs-zod`, the headline changes are:
|
|
|
461
461
|
|
|
462
462
|
Full guide with side-by-side diffs and a 19-row breaking-changes table in [`MIGRATION.md`](MIGRATION.md).
|
|
463
463
|
|
|
464
|
+
## AI tooling — `npx skills`
|
|
465
|
+
|
|
466
|
+
`zod-nest` ships two AI-agent skills you can install into your project via [`npx skills`](https://github.com/vercel-labs/skills) (Claude Code primary; Cursor / Continue best-effort):
|
|
467
|
+
|
|
468
|
+
- **`zod-nest-migrate`** — walks an agent through the 8-step `nestjs-zod` → `zod-nest` migration, plan-then-apply per step.
|
|
469
|
+
- **`zod-nest`** — diagnostic best-practices skill for schema and `@ZodResponse` ergonomics; auto-triggers on edits to `*.controller.ts` / `*.dto.ts` files that import from `zod-nest`.
|
|
470
|
+
|
|
471
|
+
```bash
|
|
472
|
+
npx skills add rodrigowbazevedo/zod-nest # both skills
|
|
473
|
+
npx skills add rodrigowbazevedo/zod-nest --skill zod-nest-migrate # migration only
|
|
474
|
+
npx skills add rodrigowbazevedo/zod-nest --skill zod-nest # best-practices only
|
|
475
|
+
```
|
|
476
|
+
|
|
477
|
+
Full details, agent compatibility notes, and what each skill diagnoses: [`docs/skills.md`](docs/skills.md).
|
|
478
|
+
|
|
464
479
|
## Contributing
|
|
465
480
|
|
|
466
481
|
`zod-nest` is a young, single-maintainer OSS project — contributions and issues are welcome. The codebase is well-tested (>340 tests, full coverage on document/schema layers) and is meant to stay small enough that a first-time contributor can hold the whole surface in their head.
|