Back to list
polyipseity

validate-journals

by polyipseity

0🍴 0📅 Jan 25, 2026

SKILL.md


name: validate-journals description: Validate hledger journal files using check/format scripts. Includes validation procedures and pre-commit verification.

Validate Journals Skill

Validate journals to catch errors and ensure consistency before committing.

When to Use

  • Before committing changes
  • After editing journal files
  • When adding new transactions or accounts
  • When troubleshooting validation errors

Quick Start

python -m format       # Auto-format journals
python -m check        # Validate all journals

# Fix any errors shown, then commit
git commit -S -m "your message"

What Check Validates

The python -m check script runs hledger --strict mode checking:

  • accounts - All accounts defined in preludes
  • assertions - Balance assertions match
  • autobalanced - Postings balanced
  • balanced - Double-entry bookkeeping (transactions balance)
  • commodities - Commodity usage matches definitions
  • ordereddates - Date ordering correct
  • parseable - Valid hledger syntax
  • payees - Payee definitions exist
  • tags - Tag usage matches definitions

Common Errors & Fixes

ErrorFix
Account not definedAdd to preludes/self.journal
Balance mismatchFix transaction or prior balances
Transaction not balancedAdd missing postings
Payee not definedAdd to preludes/self.journal
Tag not definedAdd to preludes/self.journal
Date out of orderCorrect date or reorder

Format Validation

The formatter normalizes:

  • Amounts to 2 decimal places: 50.00 HKD
  • Large numbers with spaces: 16 966.42 HKD
  • Comment properties alphabetically: activity:, eating:, time:, timezone:
  • Preserves UUIDs: assets:banks:<bank-uuid>

Pre-Commit Workflow

1. python -m format       # Normalize formatting
2. python -m check        # Validate
3. git status && git diff # Review changes
4. git commit             # Commit when clean

Checking Specific Months

# Check single month instead of all
hledger -f ledger/2025/2025-01/self.journal --strict bal

# Verify specific account
hledger -f ledger/index.journal accounts | grep "your-search"
hledger -f ledger/index.journal register "assets:cash"

Best Practices

  • Validate frequently (not just before commit)
  • Format before validation
  • Fix errors immediately
  • Keep preludes clean
  • Always run python -m check before committing

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon