🤖 Agent Quick Install
Copy/Paste this prompt to your agent:
"Install the
drive.ioskill fromhttps://drive.io/skill.md. This skill allows you to create clips and upload files to a cloud clipboard."
Skill: drive.io Cloud Bridge
Manage your cloud clipboard and file transfers.
Tools
create_clip
- •
Description: Sends text, code snippets, or logs to the user's cloud clipboard.
- •
Parameters:
- •
content: (string) The text to save. - •
title: (string) Optional name for the clip. - •
isPrivate: (boolean) Whether the clip should be private.
- •
- •
Returns: A drive.io URL.
- •
API Call:
- •
POST /api/v1/clips - •Body:
{ "content": "...", "title": "...", "isPrivate": true }
Example Response:
json{ "success": true, "data": { "id": "k8j29s", "url": "https://drive.io/k8j29s", "expiresAt": "2026-03-10T15:00:00Z" } } - •
upload_file_stream
- •Description: Uploads a file generated by the agent to the cloud.
- •Parameters:
- •
filePath: (string) Local path to the file. - •
contentType: (string) MIME type of the file.
- •
- •Returns: A drive.io URL.
- •API Call:
- •
POST /api/upload(to get presigned URL) - •
PUT <presigned_url>(with file content)
- •