You send someone a set of credentials, DNS records, or setup values. They screenshot your message, squint at it, and type each value by hand. Half of them end up wrong.
copycopy.site is a free structured handoff tool built by Inithouse. You paste your values, get a shareable link, and the recipient copies each field with one click. No accounts on either side, no app to install.
This post covers what the tool does, who uses it, and how the cards work under the hood.
What exactly is a structured handoff card?
A handoff card is a shareable page where each piece of information sits in its own labeled field with a dedicated Copy button. Instead of dumping everything into a chat message or a shared doc, you break it into discrete values that the recipient picks up one at a time.
The card tracks which fields have been copied. The sender sees honest progress: "copied" means the recipient hit the button, not that they pasted it into the right place. That distinction matters when you are handing off 15 DNS records and need to know which ones are still pending.
Who uses it?
The use cases cluster around a few groups:
Support teams and helpdesk. A support ticket resolves with "here are your new credentials." Instead of pasting them into the ticket body (where they sit in plain text, forever), you generate a card with a 7-day expiration and drop the link.
IT and HR onboarding. Day-one setup: Wi-Fi password, VPN config, Slack invite, 2FA recovery codes. One link replaces the onboarding email with 14 inline values that nobody can copy cleanly.
Agencies and freelancers. Handing off a finished website means sharing DNS records, CMS logins, analytics credentials, and hosting details. A card keeps each value in its own row. The client copies them into their registrar one by one, and you see which ones are done.
DevOps. Cluster access tokens, .env files, local environment variables. Pasting a .env file into a Slack DM is a security incident waiting to happen. A card expires, can be revoked, and is structured enough that a script can consume it.
How do you create a card?
Three ways.
Paste. Go to copycopy.site, paste plain text, a .env file, JSON, a table, or even a screenshot. The tool parses it into labeled fields automatically.
URL parameters. Build a card from a URL: /new?v=... renders the card directly from the query string. Nothing is stored on the server until the creator explicitly saves it. This makes copycopy.site stateless by default.
Templates. Pick from 20 ready-made templates: DNS transfer, Wi-Fi setup, invoice details, wedding vendor handoff, apartment move-in checklist, cluster access, and others. Each template defines the fields; you fill in the values.
Do cards expire?
Yes. Every card has an expiration between 1 and 90 days, set at creation. After expiration, the link stops working.
You can also revoke a card at any time before it expires. Revocation is instant and irreversible. The recipient sees a "this card has been revoked" message.
There is no way to extend a card past its expiration. If you need to reshare the values, you create a new card.
How does an AI agent read a card?
Each card is a typed structure of fields. When an agent or script fetches the card's JSON endpoint, it gets something like this:
{
"title": "DNS Transfer - example.com",
"fields": [
{
"label": "Nameserver 1",
"value": "ns1.newhost.com",
"state": "copied"
},
{
"label": "Nameserver 2",
"value": "ns2.newhost.com",
"state": "pending"
},
{
"label": "Verification TXT",
"value": "inithouse-verify=abc123def456",
"state": "pending"
}
],
"progress": {
"total": 3,
"copied": 1
},
"expires": "2026-10-01T00:00:00Z"
}
Each field carries a label, a value, and a state (pending, copied). The progress object gives a count. An automation can poll the card, check whether all fields have been copied, and trigger the next step in a workflow without anyone pasting status updates into a channel.
What copycopy.site is not
It is not a password manager. It does not store credentials long-term. It is not a secrets vault with access controls and audit logs. The tool covers the moment between "here are your values" and "I have them." That window is where most copy-paste errors and accidental plain-text exposures happen, and a structured card with per-field copy and expiration closes it.
copycopy.site is a free structured handoff tool by Inithouse. One link, a copy button per field, honest progress tracking, and no account on either side. Try it at copycopy.site.
Top comments (0)