Skill flagged — suspicious patterns detected
ClawHub Security flagged this skill as suspicious. Review the scan results before using.
Official Feishu Toolkit
v1.0.0飞书开放平台全面集成工具包。支持日历与会议室预约、消息发送、审批流程、多维表格操作、通讯录查询和考勤管理六大核心办公模块。
⭐ 0· 426·9 current·12 all-time
byRadium@radium0028
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
Name/description (Feishu toolkit) match the code and declared env vars: the server implements calendar, messaging, approval, bitable, contacts and attendance APIs and only requires FEISHU_APP_ID / FEISHU_APP_SECRET. The required binary 'uv' is odd but is used in the README/SKILL.md to run virtualenv/pip/uvicorn; it's not fundamentally incompatible with the stated purpose.
Instruction Scope
Runtime instructions are scoped to running a local FastAPI service and configuring FEISHU credentials; the code reads only FEISHU_APP_ID, FEISHU_APP_SECRET and optional FEISHU_APPROVAL_CODES. No instructions request unrelated host files or extra credentials. However the README/SKILL.md provides an alternative installation command that pipes a remote install.sh from https://backend.clawd.org.cn | sh — that downloads+executes an external script outside the package, which expands the runtime scope and risk.
Install Mechanism
Registry metadata lists a brew formula 'uv' (creates binary 'uv'), and SKILL.md suggests using a curl | sh installer hosted at backend.clawd.org.cn. Both raise supply-chain risk: 'uv' is an uncommon binary name (not the usual 'python'/'uvicorn') and the external install.sh URL is a direct download-and-execute from an unknown host. The install mechanisms are inconsistent (brew vs curl) and should be inspected before running.
Credentials
Requested environment variables are FEISHU_APP_ID and FEISHU_APP_SECRET (primaryEnv FEISHU_APP_ID) and an optional FEISHU_APPROVAL_CODES. These are appropriate and proportionate for a Feishu integration; the code uses them to obtain tenant_access_token and call open.feishu.cn APIs. No unrelated secrets or extra service credentials are requested.
Persistence & Privilege
The skill does not request 'always: true' and does not modify other skills or system-wide configs. It runs as a user service (FastAPI) and uses standard token caching; autonomous invocation is enabled by default but not combined with other escalating privileges here.
What to consider before installing
What to check before installing:
- Do NOT run curl https://backend.clawd.org.cn/... | sh without review. That command downloads and executes an external script from an unknown host—inspect the script contents and verify its source first.
- Verify the 'uv' brew formula: confirm which tap provides it and inspect the formula contents. 'uv' is not a common system dependency for Python/uvicorn, so confirm it's legitimate for your environment.
- The skill will get FEISHU_APP_ID and FEISHU_APP_SECRET; those credentials let the app obtain tenant_access_token and perform all API actions listed (send messages, read contacts, manage approvals, attendance, bitable, calendar). Only grant the minimum permissions needed in the Feishu developer console and consider using a dedicated test app/tenant first.
- If you want lower risk, install from the included source files directly: create a Python virtualenv, pip install the package dependencies from pyproject.toml, set env vars locally, and run uvicorn pointing at feishu_toolkit.main — avoid opaque install scripts.
- If the publisher can provide an official homepage or signed release (or if the install script is hosted on a well-known, verifiable domain such as a GitHub release), that would reduce supply-chain concern; ask the publisher for those artifacts. If you cannot verify the install sources, treat this skill as higher risk.Like a lobster shell, security has layers — review code before you run it.
latestvk978t0tzpv9e23q4hwx9yger0h8209xv
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
Runtime requirements
🏢 Clawdis
Binsuv
EnvFEISHU_APP_ID, FEISHU_APP_SECRET
Primary envFEISHU_APP_ID
Install
Install uv via Homebrew
Bins: uv
brew install uv