Neta patch skill
Patch all published Neta image skills with the latest API standards — base URL, polling logic, token setup, and README info. Run after upstream neta-skills updates.From its SKILL.md
npx -y skills add wkl-nieta/neta-patch-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 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.
SKILL.md
1.5 KB, 331 tokens by cl100k_base, as published. Nobody here has run it
Neta Skills Patcher
Applies API standard updates across all published Neta image generation skills. Keeps skill repos in sync when the upstream neta-skills API changes.
When to use
Use when:
- Neta API base URL, endpoint paths, or request format has changed
- Token acquisition flow has been updated
- Polling logic needs new terminal states
- README billing/registration info is outdated
Quick start
# Patch all active skills (uses embedded spec — no upstream fetch)
node netapatch.js
# Patch specific skills only
node netapatch.js --repos waifu-generator-skill,chibi-gen-skill
# Preview changes without pushing
node netapatch.js --dry-run
# Fetch latest spec from upstream before patching (slower, costs API call)
node netapatch.js --fetch-upstream
Options
| Flag | Description |
|---|---|
--repos slug1,slug2 | Only patch these slugs (comma-separated) |
--dry-run | Show what would change, don't push |
--fetch-upstream | Fetch latest API spec from talesofai/neta-skills before patching |
--skip-readme | Only patch .js files, skip README updates |
--skip-js | Only patch README files, skip .js updates |
Install
npx skills add wkl-nieta/neta-patch-skill
What ships with it: 3 files
25.4 KB alongside SKILL.md, 1 of them executable
- netapatch.jsruns23.4 KB
- package.json183 B
- README.md1.9 KB