PM周报数据同步

AdvisoryAudited by Static analysis on May 4, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

If the user confirms an incorrect preview, weekly revenue values in the Feishu spreadsheet could be changed.

Why it was flagged

The script can write values into Feishu spreadsheet cells, but it defaults to preview mode and requires an explicit --confirm argument before mutation.

Skill content
dry_run = True   # 默认干跑模式,不写入 ... elif arg == "--confirm": confirm = True ... "write", token, sheet_id + "!" + cell + ":" + cell
Recommendation

Run the dry-run preview first, verify the matched rows, columns, and values, and only then use --confirm.

What this means

Anyone or any skill with access to those credentials may be able to edit shared Feishu spreadsheet data within the app's permissions.

Why it was flagged

The skill requires Feishu application credentials with spreadsheet edit authority. This is expected for updating a Feishu sheet, but it is sensitive delegated access.

Skill content
飞书应用权限:你需要有一个乐荐的飞书应用,该应用需要开通「电子表格」编辑权限(`sheets:spreadsheet`)... openclaw config set channels.feishu.appId ... appSecret
Recommendation

Use least-privilege Feishu app credentials, share only the intended spreadsheet with the app, and protect the OpenClaw configuration file.

What this means

The actual Feishu API behavior also depends on the separately installed helper skill.

Why it was flagged

The skill depends on a separate Feishu spreadsheet skill that is not included in the reviewed artifacts and is not version-pinned in the instruction.

Skill content
本技能依赖 `lejian-feishu-sheet`(飞书电子表格操作技能)... openclaw skills install lejian-feishu-sheet
Recommendation

Review and trust the `lejian-feishu-sheet` skill before installing it, and pin or control its version if your environment supports that.

What this means

An accidental or untrusted reconfiguration link could cause future syncs to write to the wrong spreadsheet.

Why it was flagged

The target spreadsheet token, sheet ID, and URL are stored persistently and can be updated when a new Feishu URL is provided.

Skill content
目标飞书表格配置存储在 `env.vars` ... 如果用户发送了新的飞书表格 URL,视为重新配置提示,重复流程1逐字段更新。
Recommendation

Confirm the target Feishu URL before saving or changing configuration, and restrict who can initiate reconfiguration.