银行流水格式批量转换

ReviewAudited by ClawScan on May 14, 2026.

Overview

This appears to be a purpose-aligned local Excel bank-statement converter, but it handles sensitive financial files and asks the agent to set up and run local Python scripts.

This skill looks suitable for local batch conversion of bank-statement Excel files. Before installing or running it, confirm that the input folder contains only the statements you intend to process, protect the generated summary workbook, and be aware that setup installs Python packages and writes reusable helper scripts under the agent skills directory.

Findings (3)

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

The agent will run a local command that reads spreadsheet files from the chosen folder and writes a new Excel output file.

Why it was flagged

The skill directs execution of a local Python converter over a user-provided folder and output path. This is expected for the stated conversion task, but users should ensure the paths are intentional.

Skill content
python3 /home/node/agents/skills/bank-statement-converter/converter.py "<输入文件夹路径>" "<输出文件路径>"
Recommendation

Provide only the folder that contains the statements you want converted, and verify the output path before running.

What this means

Setup depends on packages installed at runtime and on scripts created from the skill instructions.

Why it was flagged

The skill is instruction-only and asks for unpinned Python package installation plus writing local helper scripts. This is normal for a local converter, but the runnable code is not delivered as separately scanned files.

Skill content
pip install openpyxl xlrd ... 写入 field_mapping.py ... 写入 converter.py
Recommendation

Install dependencies from trusted package sources, consider pinning versions in controlled environments, and review the generated scripts if using this for regulated or production workflows.

What this means

The generated workbook may contain complete transaction details for multiple companies or accounts.

Why it was flagged

The converter creates a persistent consolidated workbook containing bank-transaction data from all processed files. This is the intended output, but it concentrates sensitive financial information in one file.

Skill content
汇总 Sheet:所有公司流水合并到一张表,额外增加 `_来源公司` 列 ... 分项 Sheet:每个源文件对应一个独立 Sheet
Recommendation

Store the output in an approved location, restrict sharing, and delete temporary or unneeded copies when finished.