skills$openclaw/quickbooks
mrgoodb8.2k

by mrgoodb

quickbooks – OpenClaw Skill

quickbooks is an OpenClaw Skills integration for business workflows. Manage QuickBooks Online accounting - invoices, customers, payments, and reports via Intuit API.

8.2k stars3.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026business

Skill Snapshot

namequickbooks
descriptionManage QuickBooks Online accounting - invoices, customers, payments, and reports via Intuit API. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/quickbooks
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/quickbooks
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains quickbooks in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
273 B
SKILL.md
1.9 KB
SKILL.md

name: quickbooks description: Manage QuickBooks Online accounting - invoices, customers, payments, and reports via Intuit API. metadata: {"clawdbot":{"emoji":"💰","requires":{"env":["QUICKBOOKS_ACCESS_TOKEN","QUICKBOOKS_REALM_ID"]}}}

QuickBooks Online

Small business accounting.

Environment

export QUICKBOOKS_ACCESS_TOKEN="xxxxxxxxxx"
export QUICKBOOKS_REALM_ID="123456789"  # Company ID
export QB_BASE="https://quickbooks.api.intuit.com/v3/company"

List Customers

curl "$QB_BASE/$QUICKBOOKS_REALM_ID/query?query=select * from Customer" \
  -H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
  -H "Accept: application/json"

Create Invoice

curl -X POST "$QB_BASE/$QUICKBOOKS_REALM_ID/invoice" \
  -H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "CustomerRef": {"value": "1"},
    "Line": [{
      "Amount": 100.00,
      "DetailType": "SalesItemLineDetail",
      "SalesItemLineDetail": {"ItemRef": {"value": "1"}}
    }]
  }'

List Invoices

curl "$QB_BASE/$QUICKBOOKS_REALM_ID/query?query=select * from Invoice" \
  -H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
  -H "Accept: application/json"

Get Company Info

curl "$QB_BASE/$QUICKBOOKS_REALM_ID/companyinfo/$QUICKBOOKS_REALM_ID" \
  -H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
  -H "Accept: application/json"
curl -X POST "$QB_BASE/$QUICKBOOKS_REALM_ID/payment" \
  -H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "CustomerRef": {"value": "1"},
    "TotalAmt": 100.00,
    "Line": [{"Amount": 100.00, "LinkedTxn": [{"TxnId": "123", "TxnType": "Invoice"}]}]
  }'
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install quickbooks?

Run openclaw add @mrgoodb/quickbooks in your terminal. This installs quickbooks into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/quickbooks. Review commits and README documentation before installing.