Use Goodeye workflows from your AI agent
Goodeye templates are reusable workflows. Search them on this site, then fetch or fork them through the Goodeye CLI, MCP server, or REST API.
Install the CLI
The Goodeye CLI ships on PyPI. Install it with whichever Python tool manager you already use.
uv tool install goodeyepipx install goodeyeBrowse public templates
List every public template, or narrow with a search across name, outcome, description, and tags.
goodeye templates listgoodeye templates list --search sqlFetch a template
Fetching a template returns its full workflow so your agent can execute it.
goodeye templates get @handle/slugRegister and sign in
Browsing and fetching public templates works without an account. Creating a free account unlocks forking templates into your own private copies, customizing them, and sharing them.
Register a new account
- Request a one-time code:Start registration
goodeye register --email you@example.com - Open the email Goodeye sends, copy the code, then verify:Finish registration
goodeye register-verify --email you@example.com --code 123456
The CLI saves credentials locally, so subsequent commands authenticate automatically.
Sign in on a new machine
Same two-step email-code flow, but with the login commands:
goodeye login --email you@example.comgoodeye login-verify --email you@example.com --code 123456Or use goodeye login with no arguments for the interactive browser device-code flow.
Fork a template
Forking creates a private copy you own and customize.
goodeye templates fork @handle/slugUse from MCP
Connect Goodeye to Claude, Cursor, ChatGPT, VS Code, Windsurf, or any MCP client and call template tools directly from your AI agent.
Install the Goodeye MCP serverUse from API
The same templates are available through a public REST API for non-Python clients and server-side integrations.
curl https://api.goodeye.dev/v1/templatescurl https://api.goodeye.dev/v1/templates/@handle/slugFull API reference: api.goodeye.dev/v1/docs