Skip to content

Commit 31799eb

Browse files
committed
feat(aeo): add llms.txt, skill.md, .well-known/security.txt
1 parent e6bcca4 commit 31799eb

3 files changed

Lines changed: 70 additions & 0 deletions

File tree

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Contact: mailto:anthony@profullstack.com
2+
Expires: 2027-06-04T00:00:00.000Z
3+
Preferred-Languages: en
4+
Canonical: https://c0upons.com/.well-known/security.txt

apps/web/public/llms.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# c0upons
2+
3+
> Community-powered coupon codes and deals. Find and share the best promo codes for your favourite stores — updated daily by real people.
4+
5+
c0upons is a free, open-source coupon aggregator where anyone can browse deals, copy codes, vote on the best ones, and submit new codes via the web or REST API. It covers hundreds of stores including Amazon, Nike, Walmart, and more.
6+
7+
## Browse
8+
9+
- [Homepage](https://c0upons.com/): Trending coupons and top stores.
10+
- [All Stores](https://c0upons.com/stores): Browse every store with active coupons.
11+
- [Search](https://c0upons.com/search): Full-text search across stores, codes, and titles.
12+
- [Submit a Coupon](https://c0upons.com/submit): Add a new coupon code to the community.
13+
14+
## Developers
15+
16+
- [Documentation](https://c0upons.com/docs): CLI reference and REST API docs.
17+
- [CLI Install](https://c0upons.com/install.sh): `curl -fsSL https://c0upons.com/install.sh | sh`
18+
- [REST API](https://c0upons.com/docs#api): JSON endpoints — no auth required for reads.
19+
20+
## Company
21+
22+
- [About](https://c0upons.com/about): Mission, project background, and open-source info.
23+
- [Privacy Policy](https://c0upons.com/privacy): How we handle your data.
24+
- [Terms of Service](https://c0upons.com/terms): Rules for using and contributing to c0upons.
25+
- [GitHub](https://github.com/profullstack/c0upons): Source code and issue tracker.
26+
27+
## Key facts
28+
29+
- **Free:** No account required to browse or search coupons.
30+
- **Community-driven:** Anyone can submit codes; votes surface the best ones.
31+
- **Open source:** MIT licensed, source on GitHub.
32+
- **API:** `GET /api/coupons`, `GET /api/stores`, `GET /api/search?q=query`
33+
- **Stack:** Next.js 16, SQLite Cloud, Tailwind CSS v4, deployed on Railway.

apps/web/public/skill.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# c0upons Skill
2+
3+
A community coupon code directory. Use it to find discount codes and deals for online stores.
4+
5+
**API base:** https://c0upons.com/api
6+
**Auth:** None required for read operations
7+
**Docs:** https://c0upons.com/docs
8+
9+
## Tools
10+
11+
- **search** — Search coupons by store name, code, or title
12+
`GET /api/search?q={query}``[{ id, title, code, discount, store_name, store_slug, votes }]`
13+
14+
- **list_coupons** — Get trending coupons ordered by votes
15+
`GET /api/coupons` → array of coupon objects
16+
17+
- **get_coupon** — Get a single coupon by ID
18+
`GET /api/coupons/{id}` → coupon object
19+
20+
- **list_stores** — List all stores with active coupons
21+
`GET /api/stores``[{ id, name, slug, coupon_count }]`
22+
23+
- **get_store** — Get a store and its coupons
24+
`GET /api/stores/{slug}``{ store, coupons[] }`
25+
26+
- **submit_coupon** — Submit a new coupon
27+
`POST /api/coupons` body: `{ store_id, title, code?, discount?, expiry_date?, url? }`
28+
29+
## Example queries
30+
31+
- "Find a Nike coupon code" → `GET /api/search?q=nike`
32+
- "What Amazon coupons are available?" → `GET /api/stores/amazon`
33+
- "Show me the best deals right now" → `GET /api/coupons`

0 commit comments

Comments
 (0)