Interactive visual studio for creating typed AI agent tools. Fill in a form, see live TOML + SKILL.md preview, compile to MCP / OpenAI / LangChain, and scaffold your project — all in the browser.
npx @effectorhq/studioOpens http://localhost:7432 in your browser.
npx @effectorhq/studio --port 8080 # custom port
npx @effectorhq/studio --no-open # don't auto-open browser- Create — Fill in name, description, type, input/output types, permissions
- Preview — See live-generated
effector.tomlandSKILL.mdas you type - Compile — Switch between MCP, OpenAI Agents, LangChain, JSON targets
- Validate — Real-time validation against the Effector spec
- Scaffold — Write the complete project to disk with one click
The studio also exposes a JSON API for programmatic use:
| Method | Path | Description |
|---|---|---|
GET |
/api/types |
Returns the 36-type catalog |
POST |
/api/validate |
Validate { toml } |
POST |
/api/compile |
Compile { toml, skill, target } |
POST |
/api/scaffold |
Write project { name, toml, skill, outputDir } |
MIT