LaunchKit · 2026
Back to Skills

akaunting

Interact with Akaunting open-source accounting software via REST API.

0
772 downloads
by @liekzejaws

Setup & Installation

openclaw skills install @liekzejaws/akaunting

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install akaunting

What This Skill Does

Connects to Akaunting, a self-hosted open-source accounting platform, via REST API. Enables creating transactions, managing accounts and categories, and automating bookkeeping through a CLI or API calls.

Self-hosted setup means financial data stays on your own infrastructure, unlike cloud accounting SaaS tools.

When to use it

  • Log a client payment as income from the command line
  • Record an office expense without opening the web UI
  • Pull a list of all transactions for a given category
  • Create a new product or service item in the catalog
  • Automate recurring expense entries via scripts

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: log a $200 payment received for consulting work

AGENT
  1. 1Run `akaunting categories --type income` to find the correct category
  2. 2Identify the relevant category ID from the response
  3. 3Run `akaunting income --amount 200 --category Consulting --description 'Consulting payment received'`
  4. 4Confirm the transaction was created by checking `akaunting transactions --type income`
OUTPUT

New income transaction of $200 recorded under the Consulting category in Akaunting

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Akaunting instance deployed and accessible (self-hosted or remote)AKAUNTING_URL, AKAUNTING_EMAIL, AKAUNTING_PASSWORD environment variables or config fileAkaunting user account with read-api permission (Admin role by default)