How to Integrate DropLink as a Custom Skill in Cursor
Cursor agents work best when they can fetch documents from stable URLs instead of local files. The droplink-share Skill lets your agent upload Markdown from the workspace and return a rendered link in one step.
If you are new to agent file sharing, start with Getting started with AI agents for file sharing.
Install droplink-share in Cursor
Open the Agent access section on the Drop Link homepage for install paths.
Add the Skill from the monorepo:
textgithub.com/fenfenxu/droplink/tree/main/packages/droplink-skills/droplink-shareRestart Cursor or reload the workspace so the Skill is picked up.
Configure DROPLINK_ACCESS_TOKEN
Create a free account at droplink.cloud/signup, then generate an access token from your dashboard.
Set the token in your environment (or Cursor Skill secrets):
export DROPLINK_ACCESS_TOKEN="dlk_your_token_here"The Skill uses this token to upload files on your behalf and to manage link visibility.
Upload Markdown and share the link
Ask Cursor to publish a document from your repo:
Upload docs/proposal.md with droplink-share and give me the public share URL.The agent uploads the file, renders it as a web page, and returns a link you can paste into any session:
Review the updated spec at https://www.droplink.cloud/s/my-proposalOther agents and teammates can open the URL without cloning your repository.
When to use the Skill vs manual upload
| Workflow | Best approach |
|---|---|
| One-off share from the browser | Upload on the homepage |
| Repeated uploads from a coding session | droplink-share Skill |
| Private client deliverables | Log in, set email gate, then upload via Skill |
For private email-gated links, see Upload AI-Generated Markdown to Share via Private Email Link.