The flag is required so the per-project Worker can use Deno's
Worker.deno.permissions API. Without it, skmtc generate fails at
runtime with Unstable API 'Worker.deno.permissions'. If you
already installed without the flag, rerun the install with -f.
A SKMTC project (run skmtc init <project> first if needed).
Stock generators live at @skmtc/gen-*. Browse the catalog or
search JSR directly. Each generator's reference doc lists what it
produces and what it composes with.
After install, generate once and inspect a representative output
file. If the generator produces per-schema files (gen-zod,
gen-typescript), look for src/generated/<Schema>.generated.ts.
If it produces per-operation files (gen-msw, gen-tanstack-*),
look for src/generated/<Tag>/<operation>.generated.ts.
"Generator not found on JSR" — Check the package name; the
CLI normalizes @skmtc/gen-zod, jsr:@skmtc/gen-zod, and
@skmtc/gen-zod@^0.0.55 to the same install. Typos surface as
this error.
No output for the new generator — Run skmtc generate my-project --json | jq '.diagnostics'. The generator may have
isSupported filters that skip your operations (e.g.,
gen-shadcn-form only handles POST/PUT/PATCH with object
bodies).
Stale bundle warning — If the project has cloned
generators, run skmtc bundle my-project after install. skmtc doctor flags this.