Invoice & Expense Tracker

PassAudited by ClawScan on May 1, 2026.

Overview

This instruction-only finance skill is coherent and purpose-aligned, but it will store and update local financial records on disk.

Install only if you are comfortable with the assistant maintaining a local financial ledger in the workspace. Review parsed entries before accepting them, keep the generated ledger and backup files private, and avoid storing tax-critical or highly sensitive records without your own security and backup practices.

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

The skill can create and update local ledger, backup, and export files as part of tracking expenses.

Why it was flagged

The skill instructs the agent to create and modify local files. That is expected for an expense tracker, but users should know it will write bookkeeping data to disk.

Skill content
Maintain a local JSON ledger at `./data/ledger.json`. Create it if it doesn't exist.
Recommendation

Use it in a project folder where local financial files are expected, and review confirmations before entries are saved or exported.

What this means

Financial records will remain in the local ledger and may be used in future summaries, alerts, and exports.

Why it was flagged

The ledger is persistent state reused for future reports and queries. This is central to the skill, but incorrect or sensitive entries may affect later outputs.

Skill content
Always read the existing ledger before writing. Append, never overwrite.
Recommendation

Keep the ledger file in a private location, back it up securely, and correct mistakes promptly so future reports remain accurate.