Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

pidrivepidrive 搜索

Agent Skill

pidrive 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,460

周安装

349

GitHub Stars

公开资料未说明

下载量

2,764
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pidrive(pidrive 搜索)
来源仓库:https://github.com/abhishek203/pidrive
安装命令:
openclaw skills install pidrive
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install pidrive

简介

将 S3 存储挂载为 WebDAV 文件系统,便于命令行操作。

  • 支持 ls、cat、grep 等 Unix 命令直接访问云端文件。
  • 所有数据持久化保存于 S3,安全可靠且可扩展。
  • 需配置正确的访问密钥与区域设置才能连接成功。pidrive 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 频繁读写可能产生额外费用,建议合理规划缓存策略。

SKILL.md

name
pidrive
description
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.

pidrive

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 you@company.com --name "My Agent" --server https://pidrive.ressl.ai pidrive verify --email you@company.com --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/alice@company.com/ cat /drive/shared/alice@company.com/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 other-agent@company.com 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 you@company.com 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

  1. pidrive mount connects your machine to the pidrive server via WebDAV over HTTPS
  2. Your API key authenticates the connection (HTTP Basic Auth over TLS)
  3. The server maps your session to your private directory
  4. All file data is stored in AWS S3 (encrypted in transit via HTTPS)
  5. Each agent is isolated — you can only see your own files under /my/
  6. Sharing creates a reference, not a copy. Recipients read from your live file via /shared/. Revoking removes access instantly.

Credentials

On registration, you receive an API key (pk_ prefix, 32 random characters). It is stored locally at ~/.pidrive/credentials (file permissions 0600, owner-only read). The API key is sent as HTTP Basic Auth password over HTTPS on every WebDAV request. To revoke access, delete ~/.pidrive/credentials and re-register or re-login.

What gets installed

Homebrew installs the pidrive CLI binary to the Homebrew prefix (typically /opt/homebrew/bin/pidrive on macOS or /home/linuxbrew/.linuxbrew/bin/pidrive on Linux). SHA-256 checksums are verified by Homebrew automatically.

No background services, daemons, or cron jobs are installed. Source code: https://github.com/abhishek203/pi-drive

Frequently asked questions

Q: What is pidrive? A: pidrive is private file storage for AI agents. It gives agents a mounted filesystem backed by S3. Agents use standard unix commands (ls, cat, grep, cp) to read and write files. No SDKs or API calls needed.

Q: How is pidrive different from S3? A: S3 is an API — you need SDKs, presigned URLs, and credentials management. pidrive is a filesystem. You just write to /drive/file.txt and it is stored in S3 automatically.

Q: How is pidrive different from Google Drive? A: Google Drive requires OAuth2, browser-based auth, and REST API calls. pidrive uses a simple API key and unix commands. It is built for AI agents, not humans.

Q: Can agents see each other's files? A: No. Each agent has isolated private storage. Sharing is explicit — you choose what to share and with whom.

Q: Where are files stored? A: All persistent data is in AWS S3. The WebDAV client keeps a small temporary cache of recently accessed files for performance. The cache is cleared on unmount.

Q: What happens if my agent's VM dies? A: Nothing is lost. All data is in S3. Mount again from a new VM and all files are there.

Q: What file operations are supported? A: All standard unix operations: ls, cat, echo, cp, mv, rm, mkdir, grep, head, tail, wc, find, pipes, and redirects.

Q: How do I share a file? A: Run pidrive share file.txt --link to get a public URL, or pidrive share file.txt --to other@company.com to share directly with another agent.

Q: Is there a free tier? A: Yes. The free plan includes 1 GB storage and 100 MB bandwidth per month.

Q: What languages/frameworks does pidrive work with? A: Any. pidrive is a filesystem, not a library. If your agent can run unix commands, it can use pidrive. Works with Python, Node.js, Go, Rust, bash scripts, LangChain, CrewAI, AutoGPT, or any other framework.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.8%
按下载量换算2,593

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills