Any brew withDocumentation Index
Fetch the complete documentation index at: https://greenteagentic.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
status = ready can be shared via a public, read-only URL. No account required for the viewer.
Mint a share link
- Open a finished brew
- In the Share this brew panel, click Create link
- Copy the URL — it looks like
https://greenteagentic.app/b/aB3xQ9kL
What viewers see
A clean, read-only rendering of:- Title, brew type, and tea score
- The final Pour output (formatted to match the brew type’s schema)
- Stage names + statuses (no internal step payloads)
- An OpenGraph card preview when shared on social or chat
- Your raw context / draft
- Your Cellar entries
- Your wallet address or user id
- Refinement history or feedback notes
Revoke a link
In the same panel, click Revoke. The public route returns 404 immediately — there’s no propagation delay because reads hit the database, not a cache. You can mint a fresh link afterwards; it will have a new slug.How it works under the hood
brew_sharestable stores(brew_id, slug, created_at, revoked_at)./api/public/brew/:slugis a server route that usessupabaseAdmin(bypassing RLS) but only returns a safe DTO — never raw rows./b/:slugis a public TanStack route with full OG meta tags.