Feishu Bot Manager

v1.0.0

Manage Feishu bots in OpenClaw configuration. Supports add, delete, update, list, and info operations. Triggers on phrases like "添加飞书机器人", "删除飞书机器人", "修改飞书机器...

0· 547·24 current·24 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for xiangxinag-princess/feishu-bot-manager.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Feishu Bot Manager" (xiangxinag-princess/feishu-bot-manager) from ClawHub.
Skill page: https://clawhub.ai/xiangxinag-princess/feishu-bot-manager
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install xiangxinag-princess/feishu-bot-manager

ClawHub CLI

Package manager switcher

npx clawhub@latest install feishu-bot-manager
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description claim CRUD management of Feishu bots and the included script implements add/delete/update/list/info by reading and writing $HOME/.openclaw/openclaw.json and managing workspace/agent directories — this is proportionate to the stated purpose.
Instruction Scope
SKILL.md instructs the agent to run the provided script which backups, modifies, and moves the OpenClaw config and can create/delete directories. That behavior is expected, but it does mean the skill will write secrets (appSecret) into the OpenClaw config and modify files under $HOME/.openclaw; users should expect disk writes and config changes when running the skill or invoking it autonomously.
Install Mechanism
No install spec or network downloads are present; this is an instruction-only skill with a bundled shell script. Nothing is downloaded or extracted from external URLs.
Credentials
The skill declares no required env vars and doesn't request unrelated credentials. It does read/write $HOME and the OpenClaw config; it will store provided appSecret values in openclaw.json — which is consistent with its function but worth noting since secrets are persisted to disk.
Persistence & Privilege
always is false and the skill does not modify other skills or system-wide agent settings. It operates within the user's OpenClaw config and its own workspace directories.
Assessment
This skill appears to do exactly what it says: it edits $HOME/.openclaw/openclaw.json, creates/removes .openclaw workspaces, and stores the provided Feishu appId/appSecret in that config. Before installing or running: (1) ensure you trust the skill source because it will write secrets to disk; (2) make sure jq is installed; (3) inspect file permissions on ~/.openclaw/openclaw.json and backups to protect appSecret; (4) consider testing on a copy of your config first (it creates backups but still modifies files); and (5) be aware that if the agent invokes this skill autonomously it can change your OpenClaw configuration — only enable it for agents you trust.

Like a lobster shell, security has layers — review code before you run it.

latestvk97af69fd39w3at21nmfggkd0d82fnjg
547downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Feishu Bot Manager

Complete CRUD management for Feishu bots in OpenClaw.

Operations

Add Bot

添加飞书机器人:botId, appId=xxx, appSecret=xxx, model=xxx(可选)

Delete Bot

删除飞书机器人:botId

Update Bot

修改飞书机器人:botId, model=xxx / appId=xxx / appSecret=xxx

List Bots

列出所有飞书机器人

Info Bot

查看飞书机器人:botId

Script Usage

# Add
{baseDir}/scripts/feishu-bot.sh add --botId "xxx" --appId "xxx" --appSecret "xxx" [--model "xxx"]

# Delete
{baseDir}/scripts/feishu-bot.sh delete --botId "xxx"

# Update
{baseDir}/scripts/feishu-bot.sh update --botId "xxx" [--model "xxx"] [--appId "xxx"] [--appSecret "xxx"]

# List
{baseDir}/scripts/feishu-bot.sh list

# Info
{baseDir}/scripts/feishu-bot.sh info --botId "xxx"

Parameters

ParameterRequiredDefaultDescription
botIdYes-Bot identifier
appIdAdd: Yes-Feishu app ID
appSecretAdd: Yes-Feishu app secret
modelNobailian-coding-plan/glm-5Model for this bot

Notes

  • Backs up config before modifications
  • Backup filename: openclaw.json.bak.YYYY.MMdd.HHmm (UTC+8)
  • Requires jq for JSON manipulation
  • Run openclaw gateway restart after changes

Comments

Loading comments...