Ts npm zod starter
npx -y skills add kongyo2/agent-primary-ts-starters --skill ts-npm-zod-starterAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Add zod to a TypeScript npm project and install the boundary-only parsing convention. Use when starting a new TS project that needs runtime schema validation, or when layering zod onto an existing TS npm project — even if the user doesn't explicitly say "zod" or "validation".
SKILL.md
1.7 KB, as published. Nobody here has run it
TS + npm Zod Starter
Use this when adding zod to a TypeScript npm project. In a monorepo, edit the workspace the user names — ask if it isn't named.
Expected Outcome
zodis independenciesof the targetpackage.json.- The Boundary Parsing Policy below is the documented convention for the project's zod usage.
Installation
npm add zod
zod ships runtime code, so it belongs in dependencies (not devDependencies). When zod is already declared, keep its current version unless the user asks for a change.
Boundary Parsing Policy
- Parse untrusted input at the boundary with
z.parse/z.safeParse. Downstream code takes the parsed value as trusted and does not re-parse. z.infer<typeof Schema>is the single source of truth for the static type — let it stand alone instead of declaring a parallelinterfaceortypealias.
Why: parsing at every layer doubles the work and obscures where the trust boundary actually is.
Schemas Directory
When the project has a concrete shape worth validating, add its schema under src/schemas/<name>.ts, exporting the schema, its z.infer type, and a parse(raw: unknown) wrapper used at the boundary.
When src/schemas/ already exists, defer to the project's existing convention.
Verification
npx tsc --noEmitpasses.zodappears underdependenciesinpackage.json.
References
- zod docs: https://zod.dev/