feishu-drive
Feishu cloud storage file management. Activate when user mentions cloud space, folders, drive.
npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-drive --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Feishu Drive Tool Single tool `feishu_drive` for cloud storage operations. ## Token Extraction From URL `https://xxx.feishu.cn/drive/folder/ABC123` → `folder_token` = `ABC123` ## Actions ### List Folder Contents ```json { "action": "list" } ``` Root directory (no folder_token). ```json { "action": "list", "folder_token": "fldcnXXX" } ``` Returns: files with token, name, type, url, timestamps. ### Get File Info ```json { "action": "info", "file_token": "ABC123", "type": "docx" } ``` Searches for the file in the root directory. Note: file must be in root or use `list` to browse folders first. `type`: `doc`, `docx`, `sheet`, `bitable`, `folder`, `file`, `mindnote`, `shortcut` ### Create Folder ```json { "action": "create_folder", "name": "New Folder" } ``` In parent folder: ```json { "action": "create_folder", "name": "New Folder", "folder_token": "fldcnXXX" } ``` ### Move File ```json { "action": "move", "file_token": "ABC123", "type": "docx", "folder_token": "fldcnXXX" } ``` ### Delete File ```json { "action": "delete", "file_token": "ABC123", "type": "docx" } ``` ## File Types | Type | Description | | ---------- | ----------------------- | | `doc` | Old format document | | `docx`
- Token Extraction
- Actions
- List Folder Contents
- Get File Info
- Create Folder
- Move File
- Delete File
- File Types
- Configuration
- Permissions
- Known Limitations
What does the feishu-drive skill do?
Feishu cloud storage file management. Activate when user mentions cloud space, folders, drive.
How do I install it?
Run `npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-drive --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From SafeAI-Lab-X/ClawKeeper, a repository with 1,027 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
