Agent skill

feishu-drive

Feishu cloud storage file management. Activate when user mentions cloud space, folders, drive.

SafeAI-Lab-Xgithub.com/SafeAI-Lab-XGitHub ↗
claude-code
Install
npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-drive --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: legacy/clawkeeper-watcher/extensions/feishu/skills/feishu-drive/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,027
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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`

What's inside
Steps it walks through
  1. Token Extraction
  2. Actions
  3. List Folder Contents
  4. Get File Info
  5. Create Folder
  6. Move File
  7. Delete File
  8. File Types
  9. Configuration
  10. Permissions
  11. Known Limitations
More from ClawKeeper
All skills →
About this skill
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.

Keep going