sillytavern-extension-builder
Installation
SKILL.md
SillyTavern Extension Builder
Overview
Create production-ready SillyTavern third-party extensions with the documented extension APIs and packaging rules.
Workflow
- Define the extension contract.
- Confirm extension slug, display name, minimum supported SillyTavern version, required modules, and whether the feature is UI-only, slash-command-only, or background worker based.
- If the user does not provide a slug, generate a lowercase kebab-case slug.
- Scaffold baseline files.
- Prefer
scripts/scaffold_extension.shto generatemanifest.json,index.js,style.css, andsettings.html. - Choose template mode:
defaultfor UI/event-focused extensions.slashfor slash-command-first extensions.
- If the user already has files, perform minimal edits instead of full rewrites.
Related skills