Skip to content

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.

Install with uv
uv tool install goodeye
Install with pipx
pipx install goodeye

Browse public templates

List every public template, or narrow with a search across name, outcome, description, and tags.

List all templates
goodeye templates list
Search by keyword
goodeye templates list --search sql

Fetch a template

Fetching a template returns its full workflow so your agent can execute it.

Fetch by identifier
goodeye templates get @handle/slug

Register 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

  1. Request a one-time code:
    Start registration
    goodeye register --email you@example.com
  2. 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:

Start sign-in
goodeye login --email you@example.com
Finish sign-in
goodeye login-verify --email you@example.com --code 123456

Or 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.

Fork into your account
goodeye templates fork @handle/slug

Use 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 server

Use from API

The same templates are available through a public REST API for non-Python clients and server-side integrations.

List templates
curl https://api.goodeye.dev/v1/templates
Fetch a template
curl https://api.goodeye.dev/v1/templates/@handle/slug

Full API reference: api.goodeye.dev/v1/docs