An AI-native accounting backbone for ERPClaw that manages the General Ledger and Chart of Accounts with immutable audit trails.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install erpclaw-gl
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install erpclaw-gl using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
ERPClaw GL serves as the financial single source of truth within the ecosystem of Openclaw Skills. Designed for AI-native ERP environments, it provides a robust, local-only SQLite-based system for managing complex financial data. The skill enforces the fundamental double-entry invariant (Debits = Credits) and maintains an immutable ledger where corrections are made through reversals rather than deletions, ensuring a perfect audit trail.
By integrating this skill, developers and accountants can automate fiscal year transitions, budget tracking, and cost center management. It acts as the core engine for other financial modules, providing standardized document numbering and real-time balance tracking without requiring cloud dependencies or external API calls.
First, ensure erpclaw-setup is complete. Then, initialize the database:
python3 ~/.openclaw/erpclaw/init_db.py --db-path ~/.openclaw/erpclaw/data.sqlite
If Python dependencies are missing, install the required packages:
pip install -r scripts/requirements.txt
The skill manages eight primary tables in a local SQLite file. Financial amounts are stored as TEXT to maintain precision via Python Decimal types, and all IDs utilize UUID4.
| Table | Description |
|---|---|
| account | Hierarchical Chart of Accounts using nested sets and parent IDs. |
| gl_entry | Immutable record of all financial movements; cancellations use reversals. |
| fiscal_year | Defined date ranges and period status (Open/Closed). |
| cost_center | Departmental or project-based tracking for granular reporting. |
| budget | Budgetary limits and alert configurations per account/cost center. |
| naming_series | System for generating sequential, year-based document IDs. |
Loading
A local-first, AI-native CRM skill for ERPClaw that automates lead qualification, sales pipeline tracking, and campaign management.

A comprehensive procurement management skill for Openclaw that handles the entire procure-to-pay cycle from material requests to purchase invoices.

An AI-native billing analyst skill for managing metered usage, tiered pricing, and automated billing cycles within the ERPClaw ecosystem.

An AI-native fixed asset management skill for tracking depreciation, maintenance, and asset lifecycles within the ERPClaw ecosystem.

A comprehensive AI-driven growth engine for ERPClaw that manages CRM pipelines and provides deep business intelligence through cross-module analytics.

An AI-native HR management skill for ERPClaw that handles the complete employee lifecycle from onboarding to expense reimbursements.








































