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.

What this means

Meeting content could be sent to Feishu, and unsafe command construction could behave unexpectedly if raw user text is inserted directly.

Why it was flagged

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.

Skill content
python3 .claude/skills/feishu-doc/scripts/doc_ctl.py create "会议纪要 - {title} - {date}" --content "{minutes_content}"
Recommendation

Confirm the document title, destination, and content before syncing; use safe argument passing rather than raw shell interpolation.

What this means

The generated minutes may be created under the user's or workspace's Feishu identity and become visible according to Feishu permissions.

Why it was flagged

Creating a Feishu document likely relies on whichever Feishu account or workspace permissions are configured in the separate feishu-doc skill.

Skill content
Use the feishu-doc skill to create a document with the filled content
Recommendation

Make sure the Feishu account and target workspace are correct before allowing the sync.

What this means

Feishu syncing depends on the trustworthiness and availability of a separate feishu-doc skill.

Why it was flagged

The skill depends on another skill/script that is not included in the provided artifacts, so its behavior is outside this review.

Skill content
If the feishu-doc skill is not available, output the minutes as markdown and inform the user.
Recommendation

Only enable Feishu syncing if the separate feishu-doc skill is installed from a trusted source and reviewed separately.

What this means

Action items from meetings may persist beyond the current conversation and be reused or exposed in later context.

Why it was flagged

The skill proposes writing action items, owners, and deadlines into persistent memory for follow-up.

Skill content
After creating minutes, add action items to `memory/YYYY-MM-DD.md`
Recommendation

Avoid storing sensitive meeting tasks in memory unless the user wants persistent follow-up tracking.