quickbooks by membranedev/application-skills
npx skills add https://github.com/membranedev/application-skills --skill quickbooksQuickbooks 是一款广受小型企业欢迎的会计软件,用于管理财务。它有助于处理发票、薪资和费用跟踪等任务。许多小企业主和会计师使用 Quickbooks 来保持账目清晰。
官方文档:https://developer.intuit.com/app/developer/qbo/docs/develop/overview
此技能使用 Membrane CLI 与 Quickbooks 交互。Membrane 会自动处理身份验证和凭证刷新——因此您可以专注于集成逻辑,而不是身份验证的基础设施。
安装 Membrane CLI,以便您可以从终端运行 membrane 命令:
npm install -g @membranehq/cli
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
membrane login --tenant
浏览器窗口将打开以进行身份验证。
无头环境: 运行该命令,复制打印出的 URL 供用户在浏览器中打开,然后使用 membrane login complete <code> 完成验证。
```bash
membrane search quickbooks --elementType=connector --json
```
从 `output.items[0].element?.id` 获取连接器 ID,然后:
```bash
membrane connect --connectorId=CONNECTOR_ID --json
```
用户在浏览器中完成身份验证。输出包含新的连接 ID。
当您不确定连接是否已存在时:
```bash
membrane connection list --json
```
如果存在 Quickbooks 连接,请记下其 `connectionId`。
当您知道要做什么但不确定确切的 action ID 时:
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
这将返回包含 id 和 inputSchema 的 action 对象,以便您了解如何运行它。
| 名称 | 键 | 描述 |
|---|---|---|
| 查询 | query | 对任何 QuickBooks 实体运行类似 SQL 的查询 |
| 查询客户 | query-customers | 使用类似 SQL 的语法查询客户 |
| 获取客户 | get-customer | 按 ID 从 QuickBooks 检索客户 |
| 获取发票 | get-invoice | 按 ID 从 QuickBooks 检索发票 |
| 获取供应商 | get-vendor | 按 ID 从 QuickBooks 检索供应商 |
| 获取项目 | get-item | 按 ID 从 QuickBooks 检索项目 |
| 获取账户 | get-account | 按 ID 从 QuickBooks 检索账户 |
| 获取账单 | get-bill | 按 ID 从 QuickBooks 检索账单 |
| 获取付款 | get-payment | 按 ID 从 QuickBooks 检索付款 |
| 获取估算 | get-estimate | 按 ID 从 QuickBooks 检索估算 |
| 获取采购订单 | get-purchase-order | 按 ID 从 QuickBooks 检索采购订单 |
| 创建客户 | create-customer | 在 QuickBooks 中创建新客户 |
| 创建发票 | create-invoice | 在 QuickBooks 中创建新发票 |
| 创建供应商 | create-vendor | 在 QuickBooks 中创建新供应商 |
| 创建项目 | create-item | 在 QuickBooks 中创建新项目(产品/服务) |
| 创建账户 | create-account | 在科目表中创建新账户 |
| 创建账单 | create-bill | 在 QuickBooks 中创建新账单(应付账款) |
| 创建付款 | create-payment | 创建付款以记录从客户处收到的款项 |
| 创建估算 | create-estimate | 在 QuickBooks 中创建新估算/报价 |
| 创建采购订单 | create-purchase-order | 在 QuickBooks 中创建新采购订单 |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
传递 JSON 参数:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
当可用的操作无法满足您的用例时,您可以通过 Membrane 的代理直接向 Quickbooks API 发送请求。Membrane 会自动将基础 URL 附加到您提供的路径,并注入正确的身份验证标头——如果凭证过期,还会透明地刷新凭证。
membrane request CONNECTION_ID /path/to/endpoint
常用选项:
| 标志 | 描述 |
|---|---|
-X, --method | HTTP 方法(GET, POST, PUT, PATCH, DELETE)。默认为 GET |
-H, --header | 添加请求头(可重复),例如 -H "Accept: application/json" |
-d, --data | 请求体(字符串) |
--json | 发送 JSON 正文并设置 Content-Type: application/json 的简写 |
--rawData | 按原样发送正文,不做任何处理 |
--query | 查询字符串参数(可重复),例如 --query "limit=10" |
--pathParam | 路径参数(可重复),例如 --pathParam "id=123" |
membrane action list --intent=QUERY(将 QUERY 替换为您的意图)以查找现有操作。预构建的操作处理了原始 API 调用可能遗漏的分页、字段映射和边界情况。每周安装数
120
代码仓库
GitHub 星标数
18
首次出现
13 天前
安全审计
安装于
gemini-cli120
github-copilot120
codex120
kimi-cli120
cursor120
amp120
Quickbooks is a popular accounting software used by small businesses to manage their finances. It helps with tasks like invoicing, payroll, and tracking expenses. Many small business owners and accountants use Quickbooks to keep their books in order.
Official docs: https://developer.intuit.com/app/developer/qbo/docs/develop/overview
This skill uses the Membrane CLI to interact with Quickbooks. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.
Install the Membrane CLI so you can run membrane from the terminal:
npm install -g @membranehq/cli
membrane login --tenant
A browser window opens for authentication.
Headless environments: Run the command, copy the printed URL for the user to open in a browser, then complete with membrane login complete <code>.
Create a new connection:
membrane search quickbooks --elementType=connector --json
Take the connector ID from output.items[0].element?.id, then:
membrane connect --connectorId=CONNECTOR_ID --json
The user completes authentication in the browser. The output contains the new connection id.
When you are not sure if connection already exists:
Check existing connections:
membrane connection list --json
If a Quickbooks connection exists, note its connectionId
When you know what you want to do but not the exact action ID:
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
This will return action objects with id and inputSchema in it, so you will know how to run it.
| Name | Key | Description |
|---|---|---|
| Query | query | Run a SQL-like query against any QuickBooks entity |
| Query Customers | query-customers | Query customers using SQL-like syntax |
| Get Customer | get-customer | Retrieve a customer by ID from QuickBooks |
| Get Invoice | get-invoice | Retrieve an invoice by ID from QuickBooks |
| Get Vendor | get-vendor | Retrieve a vendor by ID from QuickBooks |
| Get Item | get-item | Retrieve an item by ID from QuickBooks |
| Get Account | get-account | Retrieve an account by ID from QuickBooks |
| Get Bill | get-bill | Retrieve a bill by ID from QuickBooks |
| Get Payment | get-payment | Retrieve a payment by ID from QuickBooks |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
To pass JSON parameters:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
When the available actions don't cover your use case, you can send requests directly to the Quickbooks API through Membrane's proxy. Membrane automatically appends the base URL to the path you provide and injects the correct authentication headers — including transparent credential refresh if they expire.
membrane request CONNECTION_ID /path/to/endpoint
Common options:
| Flag | Description |
|---|---|
-X, --method | HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
-H, --header | Add a request header (repeatable), e.g. -H "Accept: application/json" |
-d, --data | Request body (string) |
--json | Shorthand to send a JSON body and set Content-Type: application/json |
--rawData |
membrane action list --intent=QUERY (replace QUERY with your intent) to find existing actions before writing custom API calls. Pre-built actions handle pagination, field mapping, and edge cases that raw API calls miss.Weekly Installs
120
Repository
GitHub Stars
18
First Seen
13 days ago
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
gemini-cli120
github-copilot120
codex120
kimi-cli120
cursor120
amp120
Skills CLI 使用指南:AI Agent 技能包管理器安装与管理教程
40,000 周安装
| Get Estimate | get-estimate | Retrieve an estimate by ID from QuickBooks |
| Get Purchase Order | get-purchase-order | Retrieve a purchase order by ID from QuickBooks |
| Create Customer | create-customer | Create a new customer in QuickBooks |
| Create Invoice | create-invoice | Create a new invoice in QuickBooks |
| Create Vendor | create-vendor | Create a new vendor in QuickBooks |
| Create Item | create-item | Create a new item (product/service) in QuickBooks |
| Create Account | create-account | Create a new account in the chart of accounts |
| Create Bill | create-bill | Create a new bill (accounts payable) in QuickBooks |
| Create Payment | create-payment | Create a payment to record money received from a customer |
| Create Estimate | create-estimate | Create a new estimate/quote in QuickBooks |
| Create Purchase Order | create-purchase-order | Create a new purchase order in QuickBooks |
| Send the body as-is without any processing |
--query | Query-string parameter (repeatable), e.g. --query "limit=10" |
--pathParam | Path parameter (repeatable), e.g. --pathParam "id=123" |