원클릭으로
fin-ledger
Sovereign financial tracking using plaintext accounting (hledger/beancount).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Sovereign financial tracking using plaintext accounting (hledger/beancount).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Essential file system operations.
Common Git version control operations.
Upload, download, and edit files on remote servers via NAVIG
Summarize web pages, articles, YouTube videos, and documents using AI
Query and manage databases on remote servers via NAVIG
Check GitHub repos, CI status, PRs, and issues using the gh CLI
| name | fin-ledger |
| description | Sovereign financial tracking using plaintext accounting (hledger/beancount). |
| metadata | {"navig":{"emoji":"💰","requires":{"bins":["hledger"],"files":["main.ledger"]}}} |
Manage personal finances using the powerful, future-proof plaintext accounting method. This skill allows you to record transactions, check balances, and track budgets using hledger.
Append a new transaction to the journal.
Command:
# Format: Date Description Account1 Amount Account2
echo "2024-03-20 Grocery Store Expenses:Food:Groceries $50.00 Assets:Bank" >> main.ledger
Agent Tip: When a user says "I spent $50 on groceries", convert it to the Ledger format above.
View current processing of all accounts.
Command:
# Show balance report
hledger bal
# Show specific account (e.g., Food expenses)
hledger bal Expenses:Food
See the history of transactions for an account.
Command:
# List last 10 transactions for Bank
hledger reg Assets:Bank --tail 10
Check performance against defined monthly budgets.
Command:
# Requires --budget flag and defined budget rules in ledger file
hledger bal --budget
main.ledger Starter; Journal file for personal finance
; --- Accounts Configuration ---
account Assets:Bank
account Assets:Cash
account Liabilities:CreditCard
account Expenses:Food:Groceries
account Expenses:Food:Dining
account Expenses:Rent
account Income:Salary
; --- Budget Rules ---
~ Monthly
Expenses:Food:Groceries $400
Expenses:Food:Dining $150
; --- Opening Balances ---
2024-01-01 * Opening Balance
Assets:Bank $5000.00
Equity:OpeningBalances
Expenses:Food:Dining).