Quickstart

Use templates from your agent loop

Goodeye templates are reusable workflow runbooks. Browse metadata on the web, then fetch or fork the runbook through Goodeye.

Install the CLI

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

Browse public templates

List templates
goodeye templates list
Lexical search
goodeye templates list --search sql

Fetch a template

Fetching returns the template body through Goodeye. The body is not rendered on this website.

Get latest template
goodeye templates get @handle/slug

Fork a template after login

Login
goodeye login
Fork
goodeye templates fork @handle/slug

Use MCP

Connect the Goodeye MCP server from your agent client, then call the template tools directly.

MCP tool
get_template(identifier="@handle/slug")

Use REST

List public templates
curl "https://api.goodeyelabs.com/v1/templates"
Fetch through REST
curl -H "accept: application/json" "https://api.goodeyelabs.com/v1/templates/@handle/slug"

REST API docs live at api.goodeyelabs.com/v1/docs.

Next

Browse the registry and copy a command from any template detail page.

Browse templates