From b9ae7093f958ec2d4e5310fd0e84c08e7cc45467 Mon Sep 17 00:00:00 2001 From: rahuldotiyer Date: Wed, 1 Apr 2026 22:42:08 -0400 Subject: [PATCH 1/3] Add Papercut postcard service Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index 2d67f1a2..fd4dbf63 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -6256,4 +6256,29 @@ export const services: ServiceDef[] = [ }, ], }, + + // ── Papercut ─────────────────────────────────────────────────────────── + { + id: "papercut", + name: "Papercut", + url: "https://papercut.lol", + serviceUrl: "https://papercut.lol", + description: + "Postcards penned by your agent. Let your agent roast and send you a digital or physical postcard.", + categories: ["ai", "social"], + integration: "first-party", + tags: ["postcards", "roast", "github", "ai-art"], + docs: { homepage: "https://papercut.lol", llmsTxt: "https://papercut.lol/llms.txt" }, + realm: "papercut.lol", + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + { + route: "POST /api/send", + desc: "Write and send an agent-penned postcard", + dynamic: true, + amountHint: "$1 digital, $3 physical", + }, + ], + }, ]; From 682f82659103ae0ddea347935cb19cd1ebace0e0 Mon Sep 17 00:00:00 2001 From: rahuldotiyer Date: Thu, 2 Apr 2026 07:34:01 -0400 Subject: [PATCH 2/3] Add provider field for website link on services page Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/schemas/services.ts b/schemas/services.ts index fd4dbf63..d1580d0b 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -6269,6 +6269,7 @@ export const services: ServiceDef[] = [ integration: "first-party", tags: ["postcards", "roast", "github", "ai-art"], docs: { homepage: "https://papercut.lol", llmsTxt: "https://papercut.lol/llms.txt" }, + provider: { name: "Papercut", url: "https://papercut.lol" }, realm: "papercut.lol", intent: "charge", payment: TEMPO_PAYMENT, From 9c7498cccb6ace5461e2ec2e605c70c376e442dc Mon Sep 17 00:00:00 2001 From: rahuldotiyer Date: Thu, 2 Apr 2026 12:27:05 -0400 Subject: [PATCH 3/3] Format docs field to multi-line per Biome formatter Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/schemas/services.ts b/schemas/services.ts index f8d38626..8fc386d8 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -6267,7 +6267,10 @@ export const services: ServiceDef[] = [ categories: ["ai", "social"], integration: "first-party", tags: ["postcards", "roast", "github", "ai-art"], - docs: { homepage: "https://papercut.lol", llmsTxt: "https://papercut.lol/llms.txt" }, + docs: { + homepage: "https://papercut.lol", + llmsTxt: "https://papercut.lol/llms.txt", + }, provider: { name: "Papercut", url: "https://papercut.lol" }, realm: "papercut.lol", intent: "charge",