Install
openclaw skills install accounting-workflowsFile-based workflow coordinator for Greek accounting. Defines processing pipelines, validation rules, and routine templates. No external APIs needed.
openclaw skills install accounting-workflowsFile-based workflow coordinator for Greek accounting operations. This skill defines the processing pipelines, validation rules, and routine templates that guide the OpenClaw agent through standard accounting tasks.
This skill provides workflow definitions and validation rules — it tells the agent how to process documents that are already in the local filesystem. It does NOT:
greek-document-ocr for that)greek-email-processor for that)greek-compliance-aade / efka-api-integration)client-communication-engine)What it DOES:
# 1. Set the data directory
export OPENCLAW_DATA_DIR="/data"
# 2. Ensure jq is installed (used for JSON processing)
which jq || sudo apt install jq
# 3. Create the directory structure
mkdir -p $OPENCLAW_DATA_DIR/{incoming/{invoices,receipts,statements,government},processing,clients}
# 4. No credentials needed — this skill is entirely local
Documents flow through three stages, all within OPENCLAW_DATA_DIR:
/data/incoming/ → /data/processing/ → /data/clients/{AFM}/
(raw files placed here) (validation & extraction) (final canonical location)
/data/incoming/invoices/, /data/incoming/receipts/, or /data/incoming/statements//data/clients/{AFM}/documents//data/clients/{AFM}/compliance/Required Fields:
- vendor_name: Company issuing the invoice
- vendor_afm: Supplier AFM (format: ^EL[0-9]{9}$)
- invoice_number: Unique identifier from vendor
- invoice_date: Date issued (YYYY-MM-DD)
- due_date: Payment due date
- net_amount: Amount before VAT (2 decimal places)
- vat_amount: VAT charged
- vat_rate: Must be one of [0.24, 0.13, 0.06, 0.0]
- total_amount: Final amount due
Validation Rules:
- total_amount = net_amount + vat_amount (tolerance: 0.01)
- vat_amount = net_amount * vat_rate (tolerance: 0.01)
- invoice_date <= due_date
- vendor_afm matches ^EL[0-9]{9}$
- Duplicate invoice_number from same vendor flags for review
Required Fields:
- merchant_name: Business name
- transaction_date: Date of purchase (YYYY-MM-DD)
- total_amount: Total paid (2 decimal places)
- payment_method: cash | card | transfer
- category: EGLS account code
Validation Rules:
- transaction_date <= current_date
- total_amount > 0
- category must be valid EGLS account code
Required Fields:
- bank: alpha | nbg | eurobank | piraeus
- account_iban: Format ^GR[0-9]{25}$
- statement_period: YYYY-MM
- opening_balance: Starting balance
- closing_balance: Ending balance
- transactions: List of debits and credits
Validation Rules:
- closing_balance = opening_balance + sum(all_transactions)
- All transaction dates within statement period
- IBAN format validated per ISO 13616
1. Check /data/incoming/ for new documents placed since yesterday
2. Validate and route each document through the processing pipeline
3. Flag items with confidence < 90% for human review in /data/processing/flagged/
4. Update /data/clients/{AFM}/compliance/filings.json with any completed processing
5. Generate daily summary report to /data/reports/daily/
openclaw accounting monthly-close --period 2026-01 --client EL123456789
# This coordinates:
# 1. Verify all incoming documents for the period are processed
# 2. Check bank reconciliation status (requires greek-banking-integration skill)
# 3. Validate all transactions are categorized with EGLS accounts
# 4. Flag any incomplete items as blockers
# 5. Generate readiness report for financial statement generation
1. Run monthly close for all three months
2. Aggregate quarterly VAT totals
3. Prepare quarterly compliance report
4. Generate variance analysis vs. prior quarter
# Process new documents in incoming folder
openclaw accounting process-invoices --input-dir /data/incoming/invoices/ --greek-format
# Validate and classify receipts
openclaw accounting extract-receipts --input-dir /data/incoming/receipts/ --auto-classify
# Run validation checks on processed data
openclaw accounting validate-documents --vat-check --greek-standards
# Export transactions for a client and period
openclaw accounting export-transactions --client EL123456789 --format csv --period 2026-02
# Batch process all pending documents
openclaw accounting batch-process --type invoices --output-format json
# Check processing status
openclaw accounting status --show-queue --show-errors
OPENCLAW_DATA_DIR:
incoming/ # Raw documents placed here by user or companion skills
invoices/
receipts/
statements/
government/
processing/ # Temporary workspace (cleaned after pipeline completes)
validated/
classification/
flagged/ # Items needing human review
clients/{AFM}/ # Final canonical location (managed by client-data-management)
documents/
compliance/
reports/ # Generated reports
daily/
monthly/
This skill works best with these companions (install separately):
| Skill | What it adds |
|---|---|
greek-document-ocr | OCR for scanned invoices and receipts (requires tesseract) |
greek-email-processor | Email inbox monitoring and attachment extraction (requires IMAP credentials) |
greek-banking-integration | Bank statement CSV parsing for Greek banks |
greek-compliance-aade | VAT filing preparation and AADE submission (requires AADE credentials) |
efka-api-integration | Social security contribution calculations |
client-data-management | Client record management and GDPR lifecycle |
openclaw-greek-accounting-meta | Orchestrator that coordinates all skills together |
# Retry failed processing
openclaw accounting retry-failed --batch-id {id}
# Review flagged items
openclaw accounting manual-review --flagged-documents
# Check system health
openclaw accounting health-check
/data/incoming/ until archivedThis skill applies Greek-specific validation rules when processing documents:
^EL[0-9]{9}$ pattern on all tax identification numbersActual AADE submissions, EFKA filings, and government portal interactions are handled by companion skills (
greek-compliance-aade,efka-api-integration).
When companion skills are installed, this skill coordinates multi-step workflows:
Email arrives (greek-email-processor)
→ Attachment extracted to /data/incoming/
→ OCR processed (greek-document-ocr)
→ Validated by this skill's rules
→ Filed to /data/clients/{AFM}/documents/
→ Compliance updated (greek-compliance-aade)
The workflow coordinator does not access email or perform OCR directly — it defines the validation and routing rules that companion skills follow.
Processed data can be exported in formats compatible with external accounting software:
# Standard exports (always available)
openclaw accounting export-transactions --client EL123456789 --format csv --period 2026-02
openclaw accounting export-transactions --client EL123456789 --format json --period 2026-02
# Optional: accounting software formats (if companion export skill configured)
openclaw accounting export-transactions --client EL123456789 --target quickbooks --period 2026-02
openclaw accounting export-transactions --client EL123456789 --target xero --period 2026-02
CSV and JSON exports work out of the box. QuickBooks/Xero formats require the corresponding export configuration.