SDK CLI Reference
Developer commands: init, build, dev, validate, doctor.
# SDK CLI Reference
The SDK exposes developer CLI commands via `npx @weavetab/sdk <command>` or local `weavetab <command>`:
```bash
# Scaffold a new plugin
weavetab init <plugin-name> --template <template>
# Build TypeScript and synchronize weavetab.json
weavetab build
# Live TypeScript watch mode with manifest auto-sync
weavetab dev
# Validate schema, permissions, and sandbox compliance
weavetab validate
# Run environment diagnostics and check plugin health
weavetab doctor
# Print current SDK version
weavetab version
# → 2.5.0
```