- name
- feishu-skills-installer
- description
- |
Feishu Skills Installer
Module compatibility: Scripts are provided in both.jsand.mjs. Prefer.mjs; if you get a module error, fall back to.js.
Install the full Feishu skill pack by executing the commands below. All script output is single-line JSON.
Included skills
| Skill | Description |
|---|---|
feishu-quick-setup | One-click Feishu bot creation via Device Flow |
feishu-auth | User-level OAuth authorization |
feishu-create-doc | Create Feishu documents |
feishu-fetch-doc | Fetch document content |
feishu-search-doc | Search documents |
feishu-update-doc | Update document content |
feishu-im-read | Read messages from chats |
feishu-chat | Group/chat management |
feishu-calendar | Calendar events |
feishu-task | Task management |
feishu-bitable | Bitable (multi-dimensional tables) |
feishu-docx-download | Export documents as files |
feishu-drive | Drive file management |
feishu-image-ocr | Image OCR |
feishu-search-user | Search users |
feishu-sheet | Spreadsheet operations |
feishu-wiki | Wiki / knowledge base |
Installation steps
After downloading and extracting the skill pack, run the installer script.
Run installer
node {extracted_dir}/install.mjsIf you get an ESM-related error, use the CommonJS version instead:
node {extracted_dir}/install.jsThe installer auto-detects the environment (EnClaws or OpenClaw) and copies skill directories to the correct location.
Handling the result
The installer outputs JSON. Check the success field:
| Result | Action |
|---|---|
success: true | Show the reply field to the user |
success: false | Show the message field to the user |
Notes
- Always run
install.mjs(orinstall.js) to complete the installation; do not copy skill directories manually. - The installer handles environment detection, file placement, and cleanup automatically.
- This skill only installs files. It does not perform Feishu authorization or permission checks.
- Execute each step rather than describing it to the user.