quickbooks-skill
Description
Read-only access to QuickBooks Online data from Claude Code.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
QuickBooks Skill for Claude Code
Read-only access to QuickBooks Online data from Claude Code.
Features
- Query customers, vendors, employees, accounts, and items
- Query transactions: invoices, bills, purchases, deposits, payments
- Query time activities, estimates, sales receipts, credit memos, journal entries
- Date filtering with configurable date fields
- Automatic pagination for large result sets
- OAuth 2.0 token management with automatic refresh
Installation
This plugin is installed at `~/.claude/plugins/quickbooks-skill/`.
Install dependencies:
cd ~/.claude/plugins/quickbooks-skill
npm install
Setup
1. Create a QuickBooks App
- Go to https://developer.intuit.com/
- Sign in with your Intuit account
- Click "Dashboard" and then "Create an app"
- Select "QuickBooks Online and Payments"
- Name your app (e.g., "Claude QuickBooks Skill")
- Click "Create app"
2. Get OAuth Credentials
- In your app dashboard, go to "Keys & OAuth"
- Under "Production" (or "Development" for testing):
- Copy the Client ID
- Copy the Client Secret
3. Authorize and Get Tokens
- In the Intuit developer portal, use the "OAuth 2.0 Playground" or "API Explorer"
- Click "Connect to QuickBooks"
- Select your QuickBooks company and authorize
- Note the following from the response:
- Realm ID (Company ID) - shown in the URL or response
- Refresh Token - from the token response
4. Create Credentials File
Create `.claude/quickbooks-skill.local.json` in your project directory:
{
"client_id": "ABxxxxxxxxxxxxxxxxxxxxxxxxxx",
"client_secret": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"realm_id": "123456789012345",
"refresh_token": "AB11xxxx..."
}
5. Get Access Token
npx tsx ~/.claude/plugins/quickbooks-skill/scripts/quickbooks.ts refresh
This exchanges your refresh token for an access token and saves it to your credentials file.
6. Verify Connection
...
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11