← Back to Skills Marketplace
ckchzh

Personal Bookkeeper

by BytesAgain2 · GitHub ↗ · v2.0.1 · MIT-0
cross-platform ✓ Security Clean
463
Downloads
0
Stars
2
Active Installs
13
Versions
Install in OpenClaw
/install personal-bookkeeper
Description
Record double-entry bookkeeping for personal finances. Use when logging transactions, categorizing accounts, balancing ledgers, trending expenses.
README (SKILL.md)

Personal Bookkeeper

A command-line finance toolkit for individuals and freelancers. Personal Bookkeeper provides 12 dedicated commands for recording transactions, categorizing expenses, checking balances, tracking trends, forecasting budgets, generating reports, and managing tax notes — all backed by simple timestamped log files.

Commands

Command Description
personal-bookkeeper record \x3Cinput> Record a financial transaction (income, expense, transfer). Without args, shows recent record entries.
personal-bookkeeper categorize \x3Cinput> Categorize a transaction (food, rent, transport, entertainment). Without args, shows recent entries.
personal-bookkeeper balance \x3Cinput> Log a balance snapshot (account balance, net worth checkpoint). Without args, shows recent balance entries.
personal-bookkeeper trend \x3Cinput> Record a spending or income trend observation. Without args, shows recent trend entries.
personal-bookkeeper forecast \x3Cinput> Log a budget forecast or projection. Without args, shows recent forecast entries.
personal-bookkeeper export-report \x3Cinput> Save a report entry (monthly summary, quarterly review). Without args, shows recent export-report entries.
personal-bookkeeper budget-check \x3Cinput> Record a budget check (over/under budget notes). Without args, shows recent budget-check entries.
personal-bookkeeper summary \x3Cinput> Log a financial summary (weekly recap, category totals). Without args, shows recent summary entries.
personal-bookkeeper alert \x3Cinput> Record a financial alert (overspending, low balance, due date). Without args, shows recent alert entries.
personal-bookkeeper history \x3Cinput> Log a history note or view recent history entries.
personal-bookkeeper compare \x3Cinput> Record period-over-period comparisons (this month vs last). Without args, shows recent compare entries.
personal-bookkeeper tax-note \x3Cinput> Save tax-related notes (deductible expenses, filing reminders). Without args, shows recent tax-note entries.
personal-bookkeeper stats Show summary statistics across all categories — entry counts per log file, total entries, and data size.
personal-bookkeeper export \x3Cfmt> Export all data to a file. Supported formats: json, csv, txt.
personal-bookkeeper search \x3Cterm> Search across all log files for a keyword (case-insensitive).
personal-bookkeeper recent Show the 20 most recent entries from the activity history log.
personal-bookkeeper status Health check — version, data directory, total entries, disk usage, last activity.
personal-bookkeeper help Display the full help message with all available commands.
personal-bookkeeper version Print the current version (v2.0.0).

Data Storage

All data is stored as plain-text log files in ~/.local/share/personal-bookkeeper/:

  • Each command writes to its own log file (e.g. record.log, categorize.log, tax-note.log)
  • Every action is also recorded in history.log with a timestamp
  • Entries use the format YYYY-MM-DD HH:MM|\x3Cinput> (pipe-delimited)
  • Export produces files at ~/.local/share/personal-bookkeeper/export.{json,csv,txt}
  • No database required — all data is grep-friendly and human-readable

Requirements

  • Bash 4+ (uses set -euo pipefail)
  • Standard Unix utilities: date, wc, du, head, tail, grep, cat, cut
  • No external dependencies — pure bash, no Python, no API keys
  • Works on Linux and macOS

When to Use

  1. Daily expense tracking — Use record every time you make a purchase, then categorize to tag it (food, transport, entertainment) for end-of-month analysis.
  2. Monthly budget reviews — Run budget-check to note whether you're over or under budget, summary to log category totals, and compare to see this month vs. last.
  3. Tax season preparation — Use tax-note throughout the year to flag deductible expenses, then export csv to hand your accountant a clean spreadsheet.
  4. Financial forecasting — Log forecast entries with projected income and expenses for upcoming months, then trend to track whether actuals match your projections.
  5. Freelancer income managementrecord each invoice payment, balance to snapshot your account after deposits, and alert to flag overdue invoices or low cash reserves.

Examples

# Record a grocery expense
personal-bookkeeper record "Groceries at Costco -¥358.50"

# Categorize a transaction
personal-bookkeeper categorize "Costco receipt -> food/groceries"

# Check if you're on budget this month
personal-bookkeeper budget-check "March budget: spent ¥4200 of ¥5000 limit"

# Add a tax-deductible note
personal-bookkeeper tax-note "Home office internet bill ¥199/mo — deductible"

# Export everything to CSV for spreadsheet review
personal-bookkeeper export csv

Powered by BytesAgain | bytesagain.com | [email protected]

Usage Guidance
This skill appears to do exactly what it says: a local, pure-bash bookkeeping tool that writes plain-text logs to ~/.local/share/personal-bookkeeper. Before installing or running it, consider: (1) sensitive financial data will be stored unencrypted in your home directory — if that’s a concern, back up/encrypt the directory or avoid storing highly sensitive items; (2) there is no automatic installer — the included script must be run or installed to your PATH manually; (3) verify the script content (it’s short and readable) before running to ensure you trust the source; (4) there are no network calls or credential requests, so exfiltration risk is low; (5) the registry metadata and the script have a version mismatch (v2.0.0 vs v2.0.1) — minor but check you’re using the intended release.
Capability Analysis
Type: OpenClaw Skill Name: personal-bookkeeper Version: 2.0.1 The skill is a straightforward Bash-based personal finance logger that stores data in plain-text files within the user's local data directory (~/.local/share/personal-bookkeeper/). Analysis of scripts/script.sh and SKILL.md shows no network activity, no unauthorized file access, and no suspicious execution patterns; it relies entirely on standard Unix utilities (grep, awk, date) for local data management.
Capability Assessment
Purpose & Capability
Name/description, SKILL.md, and the included bash script align: commands implement recording, categorization, exporting, searching, and status checks for personal finance logs. Requested resources are limited to standard Unix utilities and the user's home directory. (Minor note: SKILL.md and the script report v2.0.0 while registry shows v2.0.1 — version metadata mismatch but not a security issue by itself.)
Instruction Scope
Instructions and the script only read/write files under $HOME/.local/share/personal-bookkeeper and use standard utilities. They do not reference external endpoints, unrelated config paths, or request environment credentials. All actions described (logging, exporting, searching) are within the stated bookkeeping scope.
Install Mechanism
There is no install spec (instruction-only), which is low-risk. However, a runnable bash script is included in the package but not installed to PATH by the skill metadata — the agent or user would need to execute the script directly or install it themselves. Be aware the script will create and write files to the user's home directory when run.
Credentials
The skill requires no environment variables or credentials, which is proportionate. It stores all data in plain-text log files in the user's home directory; this is expected but means sensitive financial data is unencrypted and accessible to anyone with access to the account.
Persistence & Privilege
always is false and the skill does not request system-wide privileges or modify other skills/configs. Its persistent effect is confined to creating files under ~/.local/share/personal-bookkeeper, which is appropriate for its purpose.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install personal-bookkeeper
  3. After installation, invoke the skill by name or use /personal-bookkeeper
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.1
update
v2.0.0
v2.5 standard: Use-when desc, homepage, source, security fix
v2.4.6
old template -> domain-specific v2.0.0
v2.4.5
old template -> domain-specific v2.0.0
v2.4.4
Quality upgrade
v2.4.3
Quality upgrade: custom functionality
v2.4.2
De-template, unique content, script cleanup
v2.4.1
Quality improvement: better docs, examples, cleaner text
v2.4.0
Fixed: aligned documentation with implementation, added missing commands
v2.3.0
Quality fixes: removed third-party references, aligned docs with implementation
v1.1.1
v1.1.0
Major upgrade: new pain-point commands, tips.md reference doc, enhanced SEO.
v1.0.0
Initial release with Chinese SEO optimization.
Metadata
Slug personal-bookkeeper
Version 2.0.1
License MIT-0
All-time Installs 2
Active Installs 2
Total Versions 13
Frequently Asked Questions

What is Personal Bookkeeper?

Record double-entry bookkeeping for personal finances. Use when logging transactions, categorizing accounts, balancing ledgers, trending expenses. It is an AI Agent Skill for Claude Code / OpenClaw, with 463 downloads so far.

How do I install Personal Bookkeeper?

Run "/install personal-bookkeeper" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Personal Bookkeeper free?

Yes, Personal Bookkeeper is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Personal Bookkeeper support?

Personal Bookkeeper is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Personal Bookkeeper?

It is built and maintained by BytesAgain2 (@ckchzh); the current version is v2.0.1.

💬 Comments