jpskill.com
💼 ビジネス コミュニティ 🟡 少し慣れが必要 👤 経営者・事業責任者・マーケ

💼 クイックBooksAutomation

QuickBooks Automation

会計ソフト「QuickBooks Online」で、請求

⏱ 営業メール作成 15分/通 → 1分/通

📺 まず動画で見る(YouTube)

▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

QuickBooks Automation: manage invoices, customers, accounts, and payments in QuickBooks Online for streamlined bookkeeping

🇯🇵 日本人クリエイター向け解説

一言でいうと

会計ソフト「QuickBooks Online」で、請求

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • QuickBooks Automation で、私のビジネスを分析して改善案を3つ提案して
  • QuickBooks Automation を使って、来週の会議用の資料を作って
  • QuickBooks Automation で、現状の課題を整理してアクションプランに落として

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

QuickBooks Automation

Automate QuickBooks Online operations including creating invoices, managing customers, querying accounts, and listing invoices for financial reporting.

Toolkit docs: composio.dev/toolkits/quickbooks


Setup

This skill requires the Rube MCP server connected at https://rube.app/mcp.

Before executing any tools, ensure an active connection exists for the quickbooks toolkit. If no connection is active, initiate one via RUBE_MANAGE_CONNECTIONS.


Core Workflows

1. Create an Invoice

Create a new invoice for a customer with line items.

Tool: QUICKBOOKS_CREATE_INVOICE

Key Parameters:

  • customer_id (required) -- ID of the customer (CustomerRef.value)
  • lines (required) -- Array of line item objects. Each must include:
    • DetailType -- e.g., "SalesItemLineDetail"
    • Amount -- Line item total
    • SalesItemLineDetail -- Object with ItemRef containing value (item ID)
  • minorversion -- Optional API version parameter

Example:

Tool: QUICKBOOKS_CREATE_INVOICE
Arguments:
  customer_id: "21"
  lines: [
    {
      "DetailType": "SalesItemLineDetail",
      "Amount": 150.00,
      "SalesItemLineDetail": {
        "ItemRef": {"value": "1", "name": "Services"}
      }
    }
  ]

Prerequisites: Resolve the customer ID using QUICKBOOKS_READ_CUSTOMER or create one with QUICKBOOKS_CREATE_CUSTOMER. Resolve item/account IDs using QUICKBOOKS_QUERY_ACCOUNT.


2. Manage Customers

Create and read customer records.

Tools:

  • QUICKBOOKS_CREATE_CUSTOMER -- Create a new customer
  • QUICKBOOKS_READ_CUSTOMER -- Read a customer by ID

Key Parameters for QUICKBOOKS_CREATE_CUSTOMER:

  • display_name -- Display name (must be unique across customers, vendors, employees; max 500 chars)
  • given_name -- First name (max 100 chars)
  • family_name -- Last name (max 100 chars)
  • middle_name -- Middle name (max 100 chars)
  • title -- Title, e.g., "Mr.", "Dr." (max 16 chars)
  • suffix -- Name suffix, e.g., "Jr." (max 16 chars)

At least one of display_name, title, given_name, middle_name, family_name, or suffix is required.

Key Parameters for QUICKBOOKS_READ_CUSTOMER:

  • customer_id (required) -- ID of the customer to read

Example:

Tool: QUICKBOOKS_CREATE_CUSTOMER
Arguments:
  display_name: "Acme Corporation"
  given_name: "John"
  family_name: "Doe"

3. Query and Read Accounts

Retrieve account information for use in invoice line items and financial reporting.

Tools:

  • QUICKBOOKS_QUERY_ACCOUNT -- Execute a query against accounts
  • QUICKBOOKS_READ_ACCOUNT -- Read a specific account by ID

Key Parameters for QUICKBOOKS_QUERY_ACCOUNT:

  • query (required) -- SQL-like query string, e.g., "SELECT * FROM Account WHERE AccountType = 'Income'"

Example:

Tool: QUICKBOOKS_QUERY_ACCOUNT
Arguments:
  query: "SELECT * FROM Account WHERE AccountType = 'Income' MAXRESULTS 10"

4. List and Filter Invoices

Retrieve invoices with optional pagination and filtering.

Tool: QUICKBOOKS_LIST_INVOICES

Steps:

  1. Call QUICKBOOKS_LIST_INVOICES with pagination parameters
  2. Use start_position and max_results to page through results
  3. Filter by specific criteria as needed

Recommended Execution Plan

  1. Resolve the customer using QUICKBOOKS_READ_CUSTOMER (if you have a customer ID) or create one with QUICKBOOKS_CREATE_CUSTOMER
  2. Resolve item/revenue accounts using QUICKBOOKS_QUERY_ACCOUNT and QUICKBOOKS_READ_ACCOUNT to get account or item IDs for invoice line items
  3. Create the invoice using QUICKBOOKS_CREATE_INVOICE with the resolved customer_id and well-formed line items
  4. Verify creation using QUICKBOOKS_LIST_INVOICES to locate the new invoice by ID or DocNumber

Known Pitfalls

Pitfall Detail
Invalid references QUICKBOOKS_CREATE_INVOICE fails if customer_id or ItemRef.value point to non-existent or inactive records. Always resolve IDs first.
Line item validation Incorrect DetailType or missing SalesItemLineDetail fields cause schema/validation errors during invoice creation.
Pagination QUICKBOOKS_LIST_INVOICES uses start_position and max_results. Incomplete pagination settings can miss invoices in larger books.
Sync tokens Any later edits require the latest SyncToken from a fresh invoice read. Stale sync tokens cause update rejections.
Rate limits QuickBooks enforces per-minute and daily API caps. High-volume runs should include backoff to avoid throttling errors.
DisplayName uniqueness Customer display_name must be unique across all Customer, Vendor, and Employee objects. Duplicates cause creation failures.

Quick Reference

Tool Slug Description
QUICKBOOKS_CREATE_INVOICE Create a new invoice with line items
QUICKBOOKS_READ_CUSTOMER Read a customer record by ID
QUICKBOOKS_CREATE_CUSTOMER Create a new customer record
QUICKBOOKS_QUERY_ACCOUNT Query accounts with SQL-like syntax
QUICKBOOKS_READ_ACCOUNT Read a specific account by ID
QUICKBOOKS_LIST_INVOICES List invoices with pagination

Powered by Composio