show-airtable-link
Installation
SKILL.md
Show Airtable link
After any MCP call that affects user-visible Airtable content, return a clickable link to the most-specific surface the call's results give the user access to. The link is how the user reviews the agent's work — without it, the work is invisible until they go hunting for it.
URL templates
All URLs are built from IDs the tool calls actually returned. Don't include any ID slot — viw*, tbl*, rec*, pag*, etc. — that wasn't in a tool response.
| Surface | URL pattern |
|---|---|
| Workspace | https://airtable.com/workspaces/<wspId> |
| Base | https://airtable.com/<appId> |
| Base interfaces hub | https://airtable.com/<appId>/interfaces |
| Table | https://airtable.com/<appId>/<tblId> |
| Record (table context) | https://airtable.com/<appId>/<tblId>/<recId> |
| Interface page | https://airtable.com/<appId>/<pagId> |
| Record (page context) | https://airtable.com/<appId>/<pagId>/<recId> |
ID prefixes: wsp (workspace), app (base), tbl (table), pag (interface page), rec (record), fld (field). Construct URLs using IDs verbatim from MCP responses — do not lowercase, transform, or guess them.