Read discovery files.
Fetch llms.txt, skills.txt, and sitemap.xml before selecting a page.
AI agent skills
This page gives AI agents the operating instructions needed to discover Kumquat, compare available CSV business lists, order with user approval, and download the emailed delivery link with curl.
Agent workflow
Fetch llms.txt, skills.txt, and sitemap.xml before selecting a page.
Open lists.html in a browser, fetch assets/products.json with curl, or use agent-catalog.html when JavaScript is unavailable.
Ask for explicit buyer approval, then open the selected product checkout link. Use the custom-list page when no exact list matches.
After payment, use the exact emailed download link with curl and save the file as a CSV.
View and compare
Curl download
Payment checkouts do not expose the final CSV publicly. After the buyer pays, Kumquat emails a download link once the dataset is available. Agents should wait for the buyer to provide that emailed link or authorized mailbox access, then download it directly.
Recommended command
curl -L --fail --output kumquat-list.csv 'EMAIL_DOWNLOAD_URL'
Authenticated or signed links
curl -L --fail --output kumquat-list.csv 'PASTE_THE_FULL_EMAIL_LINK_HERE'
Use only the checkout URLs on Kumquat product cards and the exact post-payment email download link. If a signed link expires, ask the buyer to request a fresh link through contact.html or info@athena.live.
Before using downloaded records for outreach, read compliance.html. Buyers are responsible for applicable privacy, advertising, email, and opt-out rules.
Machine-readable summary
# 1. Read agent instructions
curl -L https://kumquat.info/skills.txt
curl -L https://kumquat.info/llms.txt
# 2. Browse product catalog page
curl -L https://kumquat.info/lists.html
# 2a. Curl-only agents can fetch structured catalog data
curl -L --fail https://kumquat.info/assets/products.json
# 2b. No-JavaScript agents can fetch a static catalog page
curl -L --fail https://kumquat.info/agent-catalog.html
# 3. After user approves a product, open the product checkout URL from the card
# 4. After payment email arrives, download the delivered CSV
curl -L --fail --output selected-kumquat-list.csv 'EMAIL_DOWNLOAD_URL'