Proof shortio airtable
This skill creates Proof documents from Markdown or draft content, creates or reuses Short.io links for them, and records the result in Airtable. Use it when you want a seamless Proof link workflow, when a Proof document URL needs a shortlink, when creating tracked Proof docs, when troubleshooting Proof to Short.io to Airtable syncs, when configuring the automation, or when checking activation status. MANDATORY TRIGGERS: Proof shortlink, create Proof link, tracked Proof link, proof-shortio, proof-shortio-airtable, proof-shortlink-Airtable, proof-shortlink-airtable, Proof.ai Links, Short.io, Airtable shortlink, proof share URL.From its SKILL.md
npx -y skills add fullREFIT/skills --skill proof-shortio-airtableAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 18 days oldThe repository was created 18 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.8 KB, 937 tokens by cl100k_base, as published. Nobody here has run it
Proof Short.io Airtable
Operate the local automation at ${PROJECT_ROOT}/proof-shortio-airtable.
Purpose
This skill exists to make Proof link creation and tracking seamless. The user should be able to provide a title and Markdown or draft content, then receive a clean human result: the Proof document link, the Short.io shortlink, and confirmation that Airtable was updated.
The preferred workflow is one step:
- Create the Proof document from Markdown or draft content.
- Use the tokenized Proof URL internally.
- Create or reuse the Short.io link on
${SHORT_IO_DOMAIN}. - Write or confirm the Airtable row.
- Report a human-readable result, not JSON.
The existing URL-only workflow remains valid when a tokenized Proof URL already exists.
Required reading
Before running or changing the automation, read references/runtime-contract.md.
Default runtime mapping
Use this mapping unless the SSOT says otherwise. Override by setting the corresponding env vars:
AIRTABLE_BASE_ID=${AIRTABLE_BASE_ID}AIRTABLE_TABLE_ID=${AIRTABLE_TABLE_ID}AIRTABLE_PROOF_URL_FIELD=URLAIRTABLE_SHORT_URL_FIELD=Backup LinkAIRTABLE_TITLE_FIELD=NameSHORT_IO_DOMAIN=${SHORT_IO_DOMAIN}
Do not set AIRTABLE_SHORTENED_AT_FIELD to Last Updated unless the code is changed to write a date-only value or the Airtable field is changed to date-time.
Seamless create-and-track workflow
When the user provides Markdown or draft content and asks for a Proof link, create the Proof document first, then shortlink and track it. Do not ask the user to manually create the Proof doc first.
Use this wrapper when the user provides Markdown or draft content:
~/.claude/skills/proof-shortio-airtable/scripts/create-proof-and-shortlink.sh \
--title "Document title" \
--markdown-file "/absolute/path/to/source.md" \
--slug "optional-custom-shortio-path"
The wrapper:
- Read the Markdown source.
- Create a Proof doc with
POST https://www.proofeditor.ai/share/markdown. - Keep
accessToken,ownerSecret, and tokenized URLs out of user-facing logs. - Pass the tokenized Proof URL to the existing shortlink runner.
- Verify the Short.io redirect without printing the Proof token.
- Verify the Airtable row.
- Returns a plain-English success message with the safe links and record ID.
Existing Proof URL workflow
Use the helper script when a tokenized Proof URL already exists:
~/.claude/skills/proof-shortio-airtable/scripts/run-proof-shortlink.sh "https://www.proofeditor.ai/d/<slug>?token=<token>"
The script sources ~/.env.mcp when available, maps SHORT_IO_PROOF_SHORTENER_API to SHORT_IO_API_KEY, sets non-secret defaults, then runs npm start in the project directory.
Validation workflow
- Confirm whether the input is draft content or an existing tokenized Proof share URL.
- If the input is draft content, create the Proof doc first.
- If the input is an existing tokenized Proof URL, skip doc creation.
- Run the shortlink and Airtable sync.
- Confirm the internal runner output includes a
shortUrl,recordId, and title. - Re-read the Airtable row if a production change needs verification.
- If Airtable returns
401, check whetherAIRTABLE_API_KEYis an unresolvedop://reference instead of a resolvedpat...token. - If Short.io fails, verify
SHORT_IO_PROOF_SHORTENER_APIorSHORT_IO_API_KEYexists in~/.env.mcpand that${SHORT_IO_DOMAIN}is a configured Short.io domain.
Reporting contract
The user-facing output should be simple and human-readable:
- Status.
- Proof document link.
- Short.io shortlink.
- Airtable record ID or confirmation.
- What was verified.
Do not provide JSON to the user as the primary result. JSON is acceptable only as internal machine output between scripts or for debugging under a clearly labeled technical section.
Boundaries
Do not print secrets. Do not expose Proof share tokens or ownerSecret in chat. Do not create new Airtable fields without explicit approval. Do not introduce Supabase, a generic link platform, or a CMS.
What ships with it: 4 files
12.8 KB alongside SKILL.md, 2 of them executable
references/
- runtime-contract.md2.3 KB
scripts/
- create-proof-and-shortlink.shruns6.6 KB
- run-proof-shortlink.shruns1.8 KB
- README.md2.1 KB