Connection check
verified live · 20h ago
agentee
Shop all-over print cotton tees with your AI agent: search, cart, promos, checkout. Human pays.
Tools
31
GitHub stars
—
Installs / wk
—
Licence
—
Transport
streamable-http
Last checked
20h ago
Tools & capabilities
31 toolsRead from the running server on 20h ago.
add_custom_to_cart
qtysize*productprint_id*
Put a FINISHED custom print into the cart as a product. Args: print_id (must be done), product? (same set as studio_generate), size, qty?. Then the normal checkout flow applies (ge… Put a FINISHED custom print into the cart as a product. Args: print_id (must be done), product? (same set as studio_generate), size, qty?. Then the normal checkout flow applies (get_order_preview -> prepare_order).
add_to_cart
qtysize*fabricgood_id*
Add a product to the user's cart. Args: good_id (from search/get_product), size (must be one of the product's sizes), fabric? (if the product offers a choice), qty? (default 1). Re… Add a product to the user's cart. Args: good_id (from search/get_product), size (must be one of the product's sizes), fabric? (if the product offers a choice), qty? (default 1). Returns the updated cart.
apply_promo
code*
Validate and apply a promo code to the cart (server-checked). Returns the new discount/shipping/total, or applied=false with a reason. Args: code. Validate and apply a promo code to the cart (server-checked). Returns the new discount/shipping/total, or applied=false with a reason. Args: code.
cart_remove
can modify data
index*
Remove a cart line by its index (from view_cart). Args: index. Remove a cart line by its index (from view_cart). Args: index.
cart_update
qtysizeindex*fabric
Change a cart line by its index (from view_cart): set qty (0 removes), or switch size/fabric. Args: index, qty?, size?, fabric?. Change a cart line by its index (from view_cart): set qty (0 removes), or switch size/fabric. Args: index, qty?, size?, fabric?.
checkout_link
read-only
Get the URL where the human opens their cart to review and pay. The agent never pays — checkout is always done by the person in the browser. Get the URL where the human opens their cart to review and pay. The agent never pays — checkout is always done by the person in the browser.
designer_designs
read-only
limit
The user's own published designs with live status (products on sale / hidden / pending). Args: limit? (default 50). The user's own published designs with live status (products on sale / hidden / pending). Args: limit? (default 50).
designer_stats
read-only
The user's designer-program stats (if they are a designer-partner): units sold, revenue, accrued royalties, available for payout, royalty percent, their designer page URL. The user's designer-program stats (if they are a designer-partner): units sold, revenue, accrued royalties, available for payout, royalty percent, their designer page URL.
designer_submissions
read-only
limit
The user's Studio publications in moderation: in review / in catalog / needs changes. Args: limit?. The user's Studio publications in moderation: in review / in catalog / needs changes. Args: limit?.
designer_uploads
read-only
limit
What the designer has already sent in and where it stands: in review / accepted / needs changes (with the reason). Args: limit?. What the designer has already sent in and where it stands: in review / accepted / needs changes (with the reason). Args: limit?.
designer_upload_slot
filename
Get a short-lived URL to upload an image file to us (use when the designer has no public link — otherwise pass the URL straight to submit_design). Args: filename?. PUT the raw byte… Get a short-lived URL to upload an image file to us (use when the designer has no public link — otherwise pass the URL straight to submit_design). Args: filename?. PUT the raw bytes to upload_url, then pass the returned upload_id to submit_design.
get_order_preview
read-only
Full order summary to show the human before ordering: line items, promo/discount, shipping, address, grand total. Prices are server-computed. Full order summary to show the human before ordering: line items, promo/discount, shipping, address, grand total. Prices are server-computed.
get_product
read-only
code*
Full details of one product by its code: available sizes, fabrics, per-variant price, and the design 'about' text. Args: code (from search_products). Full details of one product by its code: available sizes, fabrics, per-variant price, and the design 'about' text. Args: code (from search_products).
get_saved_addresses
read-only
Return shipping addresses the user used in past orders — offer these to a returning buyer instead of asking again. Return shipping addresses the user used in past orders — offer these to a returning buyer instead of asking again.
get_shipping_options
read-only
Available shipping methods for the current cart/address, with price and ETA (free over the threshold). Available shipping methods for the current cart/address, with price and ETA (free over the threshold).
get_user_prefs
read-only
Return the shopper's saved default size and fit. Call this BEFORE asking the user for a size — if a default is set, apply it automatically (add_to_cart uses it when size is omitted… Return the shopper's saved default size and fit. Call this BEFORE asking the user for a size — if a default is set, apply it automatically (add_to_cart uses it when size is omitted), and prefer products matching their fit (basic vs oversized).
list_collections
read-only
limit
List active curated collections (themed landing pages) with their slugs and urls. Args: limit?. List active curated collections (themed landing pages) with their slugs and urls. Args: limit?.
order_status
read-only
limitnumber
Look up the user's recent orders (or one by number) and their fulfilment status. Args: number?, limit? (default 5). Look up the user's recent orders (or one by number) and their fulfilment status. Args: number?, limit? (default 5).
prepare_order
Create a draft order from the cart + address + promo and return {checkout_url, draft_id, expires_at}. The human opens checkout_url — everything is pre-filled — reviews and pays. Th… Create a draft order from the cart + address + promo and return {checkout_url, draft_id, expires_at}. The human opens checkout_url — everything is pre-filled — reviews and pays. The agent never pays. Call get_order_preview and confirm with the human first.
remove_promo
Remove the applied promo code from the cart. Remove the applied promo code from the cart.
search_products
read-only
limitquerythemesectionmax_price
Search the allover.art catalog (one card per design). Args: query? (free text, e.g. 'cat', 'neon koi'), theme? (canonical theme like Cats/Anime/Skulls, comma-separated for several)… Search the allover.art catalog (one card per design). Args: query? (free text, e.g. 'cat', 'neon koi'), theme? (canonical theme like Cats/Anime/Skulls, comma-separated for several), section? (mens|womens|kids), limit? (<=48), max_price? (USD). Returns product cards with good_id, price and url.
set_cart_quantity
qty*index*
Change the quantity of a cart line by its index (from view_cart); qty=0 removes it. Args: index, qty. Change the quantity of a cart line by its index (from view_cart); qty=0 removes it. Args: index, qty.
set_shipping_address
zipcity*name*phone*address*country*
Set the shipping address for this order (validated). Args: name, country, city, address, zip?, phone. Set the shipping address for this order (validated). Args: name, country, city, address, zip?, phone.
set_shipping_method
option_id
Choose a shipping method by its option_id (from get_shipping_options). Args: option_id. Choose a shipping method by its option_id (from get_shipping_options). Args: option_id.
set_user_prefs
fitsize
Save the shopper's default size and/or fit so they don't re-enter it each time. Args: size (XS…5XL), fit (basic | oversized). Pass only what the user stated. Save the shopper's default size and/or fit so they don't re-enter it each time. Args: size (XS…5XL), fit (basic | oversized). Pass only what the user stated.
studio_credits
read-only
The user's Studio credit balance. Check before studio_generate (1 credit per generation, either engine; welcome bonus 20; every bought tee adds 20). The user's Studio credit balance. Check before studio_generate (1 credit per generation, either engine; welcome bonus 20; every bought tee adds 20).
studio_generate
modelprompt*productpreserveimage_urlplacement
+1
Generate a CUSTOM t-shirt print from a text prompt (AI, takes 2-10 min). SPENDS THE ACCOUNT OWNER'S STUDIO CREDITS: tell them the cost and their balance and get a yes BEFORE callin… Generate a CUSTOM t-shirt print from a text prompt (AI, takes 2-10 min). SPENDS THE ACCOUNT OWNER'S STUDIO CREDITS: tell them the cost and their balance and get a yes BEFORE calling this — never spend silently, and never spend to 'try something' on your own initiative. Credits are earned (20 free on signup, 20 with every tee bought), so a wasted one is a real loss to them. Free exception: preserve=true prints their own image as-is and costs nothing. IMPORTANT: first call studio_options and ask the human to pick placement + product (and optionally background); do NOT silently use defaults. Args: prompt (design description), product? (one of ['kids_basic_tshirt_boy', 'kids_basic_tshirt_girl', 'kids_oversize_tshirt_boy', 'kids_oversize_tshirt_girl', 'mens_basic_tshirt', 'mens_oversize_tshirt', 'womens_basic_tshirt', 'womens_oversize_tshirt']), background? (t-shirt background, one of ['washed-beige', 'washed-black', 'washed-blue', 'washed-brown', 'washed-gray', 'washed-green', 'washed-orange', 'washed-pink', 'washed-red', 'washed-yellow', 'watercolor-beige', 'watercolor-blue', 'watercolor-sky']), placement? (print size/position, one of ['portrait_extended', 'square_center', 'chest_small']), model? (nb2 default | gpt-image-2 — both 1 credit, different styles), image_url? (https link to the user's OWN image — used as style/subject reference), preserve? (true = print the user's image exactly as-is, no AI redraw — kids' drawings, own art; FREE, no credits; requires image_url). Returns print_id — poll studio_status until done.
studio_options
read-only
START HERE for any custom-print request: the menu of generation choices (print placements with plain-language descriptions, products, backgrounds, engines+costs). Present these to… START HERE for any custom-print request: the menu of generation choices (print placements with plain-language descriptions, products, backgrounds, engines+costs). Present these to the human — at minimum ask which PLACEMENT and which PRODUCT they want — before calling studio_generate.
studio_status
read-only
print_id*
Check a custom print generation. Args: print_id (from studio_generate). When done returns preview_url — show it to the human. Check a custom print generation. Args: print_id (from studio_generate). When done returns preview_url — show it to the human.
submit_design
backname*notebatchfront*layout
+1
Send one of the designer's own artworks for moderation. TWO inputs, same path: either artwork files — front/back accept a public image URL OR an upload_id from designer_upload_slot… Send one of the designer's own artworks for moderation. TWO inputs, same path: either artwork files — front/back accept a public image URL OR an upload_id from designer_upload_slot — or session_id of a FINISHED Studio session of theirs (generated with studio_generate; no need to download the print, we fetch it server-side). Args: name (required), front OR session_id (one of them), back?, layout? ('front_back' default, or 'r10' for a ready print-side file), note?, batch? (same string across a bulk run so the moderator sees them as one batch). Minimum 2048px on the short side. IMPORTANT for the designer: this queues the artwork for moderation — catalog listing follows production and is not instant.
view_cart
read-only