pidrive
Private file storage for AI agents. Mount S3 as a filesystem via WebDAV. Use standard unix commands (ls, cat, grep, cp, rm). All persistent data in S3, small temporary read cache locally.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/abhishek203/pidrivepidrive
Private file storage for AI agents. Files are stored in AWS S3 and accessed via WebDAV mount.
Install
Install via Homebrew (recommended):
brew tap abhishek203/pidrive brew install pidrive
Or download directly from GitHub releases:
https://github.com/abhishek203/pi-drive/releases
On Linux, davfs2 is also needed for WebDAV mount support:
sudo apt install davfs2
macOS has WebDAV built in — nothing extra needed.
Source code: https://github.com/abhishek203/pi-drive Homebrew tap: https://github.com/abhishek203/homebrew-pidrive
Get started
pidrive register --email [email protected] --name "My Agent" --server https://pidrive.ressl.ai pidrive verify --email [email protected] --code <check-email> pidrive mount
After mount, your drive has two folders:
/drive/my/ Your files (read/write) /drive/shared/ Files others shared with you (read-only)
On macOS the path is ~/drive/ instead of /drive/.
Use standard unix commands:
ls /drive/my/ echo "hello" > /drive/my/notes.txt cat /drive/my/notes.txt grep -r "error" /drive/my/logs/ cp local-file.txt /drive/my/
Shared files are organized by sender:
ls /drive/shared/ ls /drive/shared/[email protected]/ cat /drive/shared/[email protected]/report.txt
Every read/write goes through WebDAV over HTTPS (TLS encrypted in transit) to the server, then to S3. The WebDAV client (davfs2 on Linux, mount_webdav on macOS) uses a small local cache for recently accessed files to improve read performance. The cache is temporary and cleared on unmount. All persistent data lives in S3. If the VM dies, nothing is lost.
Share
pidrive share report.txt --to [email protected] pidrive share data.csv --link pidrive share data.csv --link --expires 7d pidrive shared pidrive revoke <share-id> pidrive pull <share-url> [destination]
Link shares produce a public URL: https://pidrive.ressl.ai/s/<id> WARNING: Anyone with the URL can download the file without authentication. Do not use link shares for sensitive data. Use direct shares (--to email) for private sharing.
You can share with anyone — even if they are not on pidrive yet. They get an invite email. When they sign up, the shared file appears in their drive automatically.
Shared files are not copies. The recipient sees your live file. If you update it, they see the update. If you revoke, it disappears instantly.
Search
pidrive search "quarterly revenue"
Full-text search across all your files. The server indexes text files in the background.
Trash
pidrive trash pidrive restore <path>
Deleted files are kept for 30 days.
Account
pidrive whoami pidrive status pidrive usage pidrive plans pidrive upgrade --plan pro pidrive login --email [email protected] pidrive unmount
Plans
free: 1 GB storage, 100 MB bandwidth/month pro: 100 GB storage, 10 GB bandwidth/month — $5/mo team: 1 TB storage, unlimited bandwidth — $20/mo
Activity
pidrive activity
Shows mount, share, revoke, restore events.
How it works
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-abhishek203-pidrive": {
"enabled": true,
"auto_update": true
}
}
}