Meeting Minutes CN
PassAudited by ClawScan on May 11, 2026.
Overview
This skill is coherent for creating Chinese meeting minutes, with disclosed Feishu syncing and action-item memory logging that users should confirm before use.
Before installing, decide whether you want meeting content synced to Feishu and action items saved in memory. Review or trust the separate feishu-doc skill before using the sync feature, and confirm sensitive meeting details before publishing them.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Meeting content could be sent to Feishu, and unsafe command construction could behave unexpectedly if raw user text is inserted directly.
The workflow invokes a local command with meeting title and content placeholders. This is aligned with Feishu syncing, but user-provided content should be passed safely and reviewed before creating a document.
python3 .claude/skills/feishu-doc/scripts/doc_ctl.py create "会议纪要 - {title} - {date}" --content "{minutes_content}"Confirm the document title, destination, and content before syncing; use safe argument passing rather than raw shell interpolation.
The generated minutes may be created under the user's or workspace's Feishu identity and become visible according to Feishu permissions.
Creating a Feishu document likely relies on whichever Feishu account or workspace permissions are configured in the separate feishu-doc skill.
Use the feishu-doc skill to create a document with the filled content
Make sure the Feishu account and target workspace are correct before allowing the sync.
Feishu syncing depends on the trustworthiness and availability of a separate feishu-doc skill.
The skill depends on another skill/script that is not included in the provided artifacts, so its behavior is outside this review.
If the feishu-doc skill is not available, output the minutes as markdown and inform the user.
Only enable Feishu syncing if the separate feishu-doc skill is installed from a trusted source and reviewed separately.
Action items from meetings may persist beyond the current conversation and be reused or exposed in later context.
The skill proposes writing action items, owners, and deadlines into persistent memory for follow-up.
After creating minutes, add action items to `memory/YYYY-MM-DD.md`
Avoid storing sensitive meeting tasks in memory unless the user wants persistent follow-up tracking.
