From kakutey-skills
Register journal entries (single or bulk) and list journals in the kakutey bookkeeping app. Use for daily bookkeeping, year-end batch entry, and reviewing posted journals.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kakutey-skills:kakutey-bookkeepingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
kakutey の仕訳登録ワークフローを支援するスキル。勘定科目の確認、単発・一括の仕訳登録、登録済み仕訳の一覧表示を行う。
kakutey の仕訳登録ワークフローを支援するスキル。勘定科目の確認、単発・一括の仕訳登録、登録済み仕訳の一覧表示を行う。
kakutey CLI がインストールされ、アプリが起動している必要があります。
# インストール
npm install -g kakutey-cli
# 状態確認
kakutey health
kakutey journals --help, kakutey accounts --help仕訳データを JSON ファイルとして準備し、一括登録する。
勘定科目を確認して、科目名を把握する
kakutey accounts list
kakutey accounts list --category expense
仕訳データ JSON を準備する(配列形式)
[
{
"date": "2025-01-15",
"description": "文房具購入",
"lines": [
{"side": "debit", "account": "消耗品費", "amount": 1000},
{"side": "credit", "account": "現金", "amount": 1000}
]
}
]
一括登録する
kakutey journals bulk-add journals.json
登録内容を確認する
kakutey journals list 2025-01-01 2025-12-31
単発の取引を登録する。
# 簡易形式(2行仕訳)
kakutey journals add '{"date":"2025-03-10","description":"サンプル商事 打ち合わせ交通費","debit_account":"旅費交通費","credit_account":"現金","amount":500}'
# 複合仕訳(3行以上)
kakutey journals add '{"date":"2025-01-01","description":"開始仕訳","lines":[{"side":"debit","account":"現金","amount":50000},{"side":"debit","account":"普通預金","amount":100000},{"side":"credit","account":"元入金","amount":150000}]}'
# ファイルから登録
kakutey journals add --file journal.json
| コマンド | 説明 |
|---|---|
kakutey accounts list [--category <type>] | 勘定科目一覧(entity_id, code, name, category) |
kakutey journals add '<json>' | 仕訳を1件登録(簡易形式 or 複合仕訳形式) |
kakutey journals add --file <path> | JSON ファイルから仕訳を1件登録 |
kakutey journals bulk-add <file> | JSON ファイルから仕訳を一括登録 |
kakutey journals list <start> <end> | 指定期間の仕訳一覧を表示(entity_id 付き) |
npx claudepluginhub usa-tech-lab/kakutey-skills --plugin kakutey-skillsRecords Japanese journal entries (shiwake), imports transactions from CSV/receipts/invoices via CLI, manages ledger with init/search/update/delete. For bookkeeping workflows.
Prepares journal entries with debits, credits, and details for AP/payroll/prepaid accruals, depreciation/amortization, revenue recognition. Use for month-end closes or audit docs.
Guides Korean startup/sole proprietor/freelancer bookkeeping automation: import card PDFs, bank CSVs, receipts; tag account subjects; generate tax CSV and management reports.