Ai Intelligent Budget Management

PassAudited by ClawScan on May 1, 2026.

Overview

The packaged skill is only documentation for a budget-management app; no malicious behavior is shown, but it tells users to install and run an external Python project and would handle persistent financial data if deployed.

This skill looks coherent and benign as packaged, but it is only a README-style artifact. Before installing, verify the external GitHub repository and dependencies, run it in an isolated environment, and avoid loading real enterprise budget data until access control and data-retention settings are clear.

Findings (2)

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 could end up running external code that was not included in the reviewed skill artifact.

Why it was flagged

The packaged artifact has no code or install spec, so following the documented setup would fetch and run code and dependencies outside the reviewed package. This is a common setup pattern for a Python web app, but it is still a provenance point users should verify.

Skill content
git clone https://github.com/openclaw-skills/ai-intelligent-budget-management
cd ai-intelligent-budget-management
pip install -r requirements.txt
python app.py
Recommendation

Inspect the referenced GitHub repository and dependency file before running it, prefer a virtual environment or container, and only run the setup after explicit user approval.

What this means

Sensitive enterprise budget data may be stored and reused by the deployed system, so incorrect or unauthorized data could affect financial alerts and forecasts.

Why it was flagged

The skill describes persistent database-backed tracking and AI prediction over budget information. That is purpose-aligned, but stored budget data may influence later alerts, analyses, or predictions.

Skill content
- 执行跟踪(实时监控)
- 预测模型(AI预测)
...
- 数据库(PostgreSQL)
Recommendation

Define access controls, retention, backups, and review workflows for budget data before using it with real company financial information.