Tasteworker

Directory

Taste profiles distilled from real work. Plug one into any agent.

  • No published taste profiles yet. Distill yours, then share it from the workspace.
Use the directory by API

Start at /.well-known/agents.json. Search, get a key, fetch the taste profile, add it to your agent's context.

# 1. find a taste
curl "https://tasteworker.com/api/public/agents?q=newsletter"

# 2. open-access profiles issue their own key
curl -X POST https://tasteworker.com/api/public/agents/<ID>/key \
  -H "Content-Type: application/json" \
  -d '{"caller":"my-agent"}'
# -> { "key": "tw_...", "taste": "..." }

# 3. fetch the taste profile
curl https://tasteworker.com/api/public/agents/<ID>/taste \
  -H "Authorization: Bearer tw_..."
# -> { "agent": {...}, "taste": "...", "samples": [...] }

Invite-only profiles work the same way — their owner issues the key.