Fund Proposal Assistant

PassAudited by ClawScan on May 10, 2026.

Overview

This looks like a benign fund-proposal writing helper, with an optional local Python script that creates/copies proposal files in hard-coded Windows folders.

This skill appears safe to use for proposal drafting and review. Before running the optional `daily_check.py` helper, review the code, fix or customize the hard-coded Windows paths and personal names, and keep backups of important Word documents.

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

A user expecting only writing instructions may overlook that there is local script code available to run.

Why it was flagged

The package has limited provenance metadata and is described as instruction-only even though it includes a runnable helper script. This is a low-level packaging/provenance note because the script source is included for review and there are no external dependencies shown.

Skill content
Source: unknown; Homepage: none; No install spec — this is an instruction-only skill. Code file presence: daily_check.py
Recommendation

Review the bundled script before running it, and treat the Python helper as optional rather than required.

What this means

If you run the command, local code will execute on your machine.

Why it was flagged

The skill documents manual execution of a bundled Python script. This is disclosed and aligned with the daily-check feature, but it means use is not purely conversational.

Skill content
**使用方法:** `cd fund-proposal-assistant` / `python daily_check.py`
Recommendation

Run the script only after reviewing it and confirming you want it to create local proposal reports and document versions.

What this means

Running the script can create or overwrite local proposal-version files in the configured folders.

Why it was flagged

The script creates local output/report folders and copies a Word document into a dated version path. This matches the stated daily-versioning purpose, but it is local file mutation using hard-coded paths.

Skill content
OUTPUT_DIR = r"D:\Personal\OpenClaw\fund-daily-versions"; REPORT_DIR = r"D:\Personal\OpenClaw\fund-check-reports"; shutil.copy2(source_file, output_path)
Recommendation

Back up important proposal documents and adjust the hard-coded paths/names before running the script.