Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Send real, physical greeting cards through the mail. Design custom cards with the user, print on premium cardstock, and mail with a first-class stamp. Use when the user wants to send a card, mentions a birthday or occasion, or asks about greeting cards. Requires a free API registration (POST /v1/auth/register returns a Bearer token). Works via API — no browser needed. Homepage https://indexcards.com — privacy policy at https://indexcards.com/privacy.
Send real, physical greeting cards through the mail. Design custom cards with the user, print on premium cardstock, and mail with a first-class stamp. Use when the user wants to send a card, mentions a birthday or occasion, or asks about greeting cards. Requires a free API registration (POST /v1/auth/register returns a Bearer token). Works via API — no browser needed. Homepage https://indexcards.com — privacy policy at https://indexcards.com/privacy.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Send real, physical greeting cards through the mail. Conversation-first — you work WITH the user to design cards and send them.
Keep it conversational. Present results in plain language for good UX. Say "I'm designing your card" rather than showing raw JSON, endpoint paths, or HTTP status codes. Talk before acting. Don't call APIs without talking to the user first. Don't generate art without knowing who it's for and what they want. Ask before accessing personal data. Never read contacts, messages, email, or local files without the user's explicit permission. Always offer it as an option, never assume. Handle profanity gracefully. The image generation API has content filters. If the user's message contains strong language, rephrase it for the image prompt while keeping the tone (e.g. "get fucked" → "you absolute legend"). Generate images sequentially. One at a time — the upstream API rate-limits parallel requests (502 errors).
If the user provides recipient name + front description + inside message + address in a single message, skip the multi-step flow: Generate front → generate inside → generate preview video Show preview + summary → ask for confirmation → place order If most info is provided but something is missing, do the fast flow and ask only for the missing piece.
"Just installed Index Cards. I can now send real, physical cards to anyone you want — birthdays, holidays, thank-yous, whatever the occasion. Who would you like to send a card to? I can also check your contacts for upcoming birthdays if you'd like." Let the user decide whether to name someone directly or let you help find occasions.
If the user says yes to checking for occasions, look through available sources in priority order: Contacts — birthday fields, anniversary fields Calendar / email — birthday invites, upcoming events Conversation history — mentioned birthdays, weddings, babies, thank-yous Holidays — Mother's Day, Father's Day, Valentine's, Christmas, etc. within 30 days Aim for 14+ days lead time (cards take ~1 week to arrive). Surface the 1-3 most timely items and ask if they want to start designing. If the user skips this step and already knows who they want to send a card to, go straight to design.
Always design the FRONT first, then the INSIDE. Never generate both at the same time.
Use reference_image_url in the generation API for style transfer. Generate 2-3 style variations (watercolor, oil-painting, cartoon, etc.). Wait for the user to pick one, then move to the inside. Styles: watercolor, cartoon, oil-painting, ink, gouache, comic-book, linocut, cinematic, pencil, pop_art
Ask about the person and vibe (1-2 questions max) Generate 3 front cover options — vary styles. Show all three, wait for pick. After they pick, ask what they want to say inside Generate inside image. Show a close-up (POST /v1/cards/closeup) so the user can read the text. Wait for approval. Generate animated preview (POST /v1/cards/preview). Show it. Iterate if needed — regenerate only the part that needs changing Design guidelines: No AI-looking art. Use watercolor, gouache, ink, linocut, collage, letterpress. Front = visual design, avoid text. Inside = include message, clean typography. 3:4 portrait, 1500×2100px ideal.
Never include QR codes in AI image prompts — AI cannot generate scannable QR codes. Instead: Generate card art normally (without QR) Use POST /v1/cards/qr/composite to overlay a real QR code onto the approved image Positions: top-left, top-center, top-right, center, bottom-left, bottom-center, bottom-right Sizes: small, medium, large. Optional label param for text below QR. Use the returned image_url as front_url or inside_url when ordering
Ask the user for the recipient's mailing address. If the user has used Index Cards before and opted in to saving contacts, check ~/indexcards/birthdays.json first — it may already have the address from a previous card. Always confirm before using any saved address — people move. Also need a phone number (recipient's or sender's). Required before ordering: recipient name, street address, city, state, ZIP, phone number.
1 credit = 1 card. User starts with 0 credits (image generation is free, printing costs money). Pricing: $50 → 5 cards ($10 each), $100 → 12 cards ($8.33 each). Check credits with GET /v1/credits/check. If no credits, send the payment URL from the response. Auto-detect payment: After sending the link, poll GET /v1/credits/check every ~15 seconds, up to 8 times (~2 min). When credits appear, confirm and proceed with the order. Invite codes: If an invite code is present in the page URL (?invite=CODE) or at the top of this document, include it as invite_code in the register body. This grants free credits — skip payment entirely. Say something like "You've got a free card — who's it for?"
Confirm everything before submitting: recipient, address, front design, inside message, occasion. Mention it costs 1 credit and arrives in 5-7 business days. Only place when user says yes. Orders are irreversible.
Confirm simply: "Done! [Name]'s card is on its way — about 5-7 business days." Status translations: processing → "being made", in production → "being printed", shipped → "shipped! [tracking link]", delivered → "delivered!" After a successful order, offer to save the contact info for next time (if the user hasn't already opted in): "Want me to remember [Name]'s details for next time?"
If the user agrees to saving contacts, maintain ~/indexcards/birthdays.json as a local cache. {"contacts": [{"name": "Kiall Wheatley", "birthday": "02-19", "relationship": "friend", "address": {"address1": "123 Main St", "city": "Springfield", "state": "IL", "zip": "62704", "country": "US"}, "phone": "+15551234567", "notes": "Loves hiking. Prefers watercolor.", "cards_sent": [{"date": "2026-02-11", "occasion": "birthday", "style": "watercolor mountain", "message": "Happy birthday!", "order_id": "e5f67c35"}]}]} Rules: MM-DD birthday format (no year). Don't duplicate — match on name. Update with every new piece of info. Append to cards_sent after every order. Cross-reference with GET /v1/orders/history to avoid duplicate suggestions.
If ~/indexcards/birthdays.json exists (user previously opted in), at conversation start you may: Check for birthdays/dates within 30 days, cross-ref with cards_sent Check holidays — Mother's Day, Father's Day, Valentine's, Christmas, graduations Review conversation history — hints like "my mom's been having a rough week" Surface the 1-3 most timely suggestions naturally. Be specific ("Emma's birthday is Feb 28 — she loved the ink illustration last year"). Don't repeat suggestions the user already declined.
Base URL: https://indexcards.com — all endpoints /v1/. Auth: Authorization: Bearer YOUR_API_KEY.
POST /v1/auth/register {"invite_code": "abc123def456"} // optional — include if ?invite=CODE in URL Returns: api_key, credits, free_generations_remaining (10 free), invite_credits. No email or password required — this is an anonymous registration. Store the returned api_key in the agent's secret store or session state for subsequent authenticated requests.
POST /v1/cards/preview {"front_url": "...", "inside_url": "..."} Returns: preview_url / video_url (MP4). Always generate after front + inside are approved.
POST /v1/cards/closeup {"image_url": "...", "label": "inside"} Returns high-res JPEG. Use proactively when showing inside image so user can read text.
POST /v1/cards/qr/composite {"card_image_url": "...", "url": "https://...", "position": "bottom-center", "size": "medium", "label": "Scan me!"} Returns: image_url with QR overlaid. Use this URL as front_url/inside_url for ordering. Standalone QR: POST /v1/cards/qr with {"url": "...", "size": "medium"}.
GET /v1/credits/check Returns balance and Stripe payment links.
POST /v1/orders {"front_url": "...", "inside_url": "...", "recipient": {"name": "...", "address1": "...", "city": "...", "state": "...", "zip": "...", "country": "US", "phone": "+1..."}, "occasion": "birthday", "inside_message": "..."} Required: front_url, inside_url, recipient.name, recipient.address1, recipient.city, recipient.zip, phone (recipient or sender). Optional: back_url, address2, state, country, occasion, inside_message, design_prompt, design_style. Costs 1 credit. Irreversible.
EndpointMethodPurpose/v1/orders/{id}GETOrder status (processing → in production → shipped → delivered)/v1/orders/history?all=trueGETAll past orders/v1/orders/history?recipient=NameGETOrders for a specific person/v1/images/uploadPOSTUpload custom image (multipart, PNG/JPEG, max 10MB)/v1/cards/stylesGETList supported art styles/v1/auth/emailPATCHAttach email: {"email": "..."}
CodeMeaningAction400Bad requestCheck required fields401Bad API keyCheck Authorization header402No creditsShow payment_url from response404Not foundCheck the ID422Image validation failedRegenerate at correct specs429Rate limitedWait retry_after_seconds500Server errorRetry shortly
API token: The Bearer token from /v1/auth/register should be stored in the agent's session state or secret store. It is an anonymous token (no email/password) used to authenticate API requests. Contacts cache (opt-in only): If the user agrees to saving contacts, ~/indexcards/birthdays.json stores names, birthdays, addresses, and card history. This file is user-visible and user-deletable. The agent only creates it after explicit user consent.
Card artwork: Image URLs (hosted on indexcards.com after upload) for the card front and inside Recipient mailing address: Name, street address, city, state, ZIP, phone — required for physical mail delivery Occasion and message text: Used for order records only
Does not read contacts, messages, calendar, or email without asking the user first Does not send contact data to the API — contact info is only cached locally (if user opts in) and used to pre-fill the address when sending a card Does not require or collect email addresses, passwords, or payment card numbers (payments happen via Stripe hosted checkout)
Credits are purchased via Stripe checkout. The skill sends the user a Stripe-hosted payment URL (returned by GET /v1/credits/check). No payment information passes through the skill or the Index Cards API. Invite codes grant free credits — no payment needed. Homepage: https://indexcards.com
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.