Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

gl-importer总进口商

Agent Skill

gl-importer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,392

周安装

308

GitHub Stars

2

下载量

2,464
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gl-importer(总进口商)
来源仓库:https://github.com/michaelastreikosynder/gl-importer
安装命令:
openclaw skills install gl-importer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install gl-importer

简介

通过 Synder Importer API 导入 CSV/XLSX 会计数据到 QuickBooks 或 Xero。

  • 支持发票、账单与日记账分录等多种财务单据类型。
  • 自动映射字段并校验数据完整性后提交至目标系统。
  • 需申请 Synder API 密钥并绑定对应会计软件账户。
  • gl-importer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
gl-importer
description
Import CSV/XLSX accounting data into QuickBooks Online or Xero via the Synder Importer REST API. Use when asked to import invoices, bills, journal entries, customers, vendors, or any accounting data from spreadsheets/CSV files into QBO or Xero. Handles field mapping, file upload, import execution, status polling, and result retrieval. Supports smart auto-mapping for quick imports. NOT for reading/exporting data from QBO/Xero — this is import-only.
requirements
apiKeys
description
Bearer token for the Synder Importer API. Generate at importer.synder.com → Account → API Keys.
required
true

Synder Importer API

Import CSV/XLSX files into QuickBooks Online or Xero.

Setup

Getting an API Token

If the user doesn't have a token yet, guide them through these steps:

  1. Create an account at importer.synder.com and confirm your email
  2. Connect your accounting software — in the web UI, link QuickBooks Online or Xero via OAuth
  3. Generate an API key — go to Account → API Keys, click Generate. Copy the token immediately — it's shown only once
export IMPORTER_API_TOKEN="your_token_here"
export BASE="https://importer.synder.com/api/v1"
Trial users: Imports are limited by row count without a paid subscription. No subscription is required to use the API itself.

Data Privacy

  • Homepage: importer.synder.com | Docs: importer.synder.com/apidocs
  • Operator: Synder Technologies Inc. — synder.com
  • What's sent: CSV/XLSX files containing accounting data (invoices, bills, journal entries, etc.) are uploaded to importer.synder.com and forwarded to your connected accounting provider (QuickBooks Online or Xero)
  • Retention: Uploaded files are stored for import processing only and are not retained after import completion. Import logs (row counts, status, error messages) are retained for your account history.
  • Scope: API tokens are scoped to a single user account and its connected companies. Tokens can be revoked at any time from the web UI.
  • Recommendation: Always use dryRun=true first to preview before importing live data. Use non-production data for initial testing.

Quick Reference

ActionMethodEndpoint
Account infoGET/account
List companiesGET/companies
Company settingsGET/POST/companies/{id}/settings
List entitiesGET/companies/{id}/entities
Entity fieldsGET/companies/{id}/entities/{name}/fields
Create mappingPOST/companies/{id}/mappings
List mappingsGET/companies/{id}/mappings
Update mappingPUT/companies/{id}/mappings/{mid}
Delete mappingDELETE/companies/{id}/mappings/{mid}
Execute importPOST/companies/{id}/imports
Auto-importPOST/companies/{id}/imports/auto
List importsGET/companies/{id}/imports
Import statusGET/companies/{id}/imports/{iid}
Cancel importPOST/companies/{id}/imports/{iid}/cancel
Revert importPOST/companies/{id}/imports/{iid}/revert
Import resultsGET/companies/{id}/imports/{iid}/results

Core Workflow

1. Find the company

curl "$BASE/companies" -H "Authorization: Bearer $IMPORTER_API_TOKEN"

Response is an array. Pick the company with status: "ACTIVE". Save its id.

2. Choose entity and check fields

Common entities: Invoice, Bill, JournalEntry, Customer, Vendor, Expense, SalesReceipt, Payment, CreditMemo

curl "$BASE/companies/$CID/entities/$ENTITY/fields" -H "Authorization: Bearer $IMPORTER_API_TOKEN"

Fields with isRequired: true MUST be mapped. Fields with isForGrouping: true (e.g., DocNumber) combine multiple CSV rows into one entity (multi-line invoices).

Important: Check GET /companies/{id}/settings for dateFormat (e.g., MM/dd/yyyy). CSV date columns must match this format or the import will fail. Update with POST /companies/{id}/settings if needed.

3. Option A: Smart Auto-Import (recommended)

Skip manual mapping — auto-match CSV headers to fields:

curl -X POST "$BASE/companies/$CID/imports/auto" \
  -H "Authorization: Bearer $IMPORTER_API_TOKEN" \
  -F "file=@data.csv" \
  -F "entityName=Invoice" \
  -F "dryRun=true"
  • dryRun=true (default): Returns proposed mapping without importing. Check missingRequired array — if empty, safe to import. Response: proposedFields, missingRequired, totalFieldsMapped.
  • dryRun=false: Maps AND imports in one call. Returns {"id": "42", "status": "SCHEDULED", "mappingId": "33", ...} — use the id to poll for completion (same as step 5).

Confidence levels in proposedFields: high = exact title match, medium = matched via alternative title. Review medium matches before importing with dryRun=false.

3. Option B: Manual Mapping

Create a mapping linking CSV columns to entity fields:

curl -X POST "$BASE/companies/$CID/mappings" \
  -H "Authorization: Bearer $IMPORTER_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "My Invoice Mapping",
    "entityName": "Invoice",
    "fields": [
      {"sourceFieldTitle": "Invoice #", "targetFieldId": "231"},
      {"sourceFieldTitle": "Customer",  "targetFieldId": "176"},
      {"sourceFieldTitle": null, "targetFieldId": "234", "fixedValue": "Imported via API"}
    ]
  }'
  • sourceFieldTitle: CSV column header name
  • targetFieldId: from the fields endpoint
  • fixedValue: constant value for every row (set sourceFieldTitle to null)

4. Upload and Execute Import

curl -X POST "$BASE/companies/$CID/imports" \
  -H "Authorization: Bearer $IMPORTER_API_TOKEN" \
  -H "Idempotency-Key: $(uuidgen)" \
  -F "file=@data.csv" \
  -F "mappingId=$MAPPING_ID"

Returns 202 with status: "SCHEDULED". Always send Idempotency-Key to prevent duplicate imports on retry.

5. Poll for Completion

curl "$BASE/companies/$CID/imports/$IMPORT_ID" -H "Authorization: Bearer $IMPORTER_API_TOKEN"

Terminal statuses: FINISHED, FINISHED_WITH_WARNINGS, FAILED, CANCELED.

Poll with exponential backoff: start 2s, multiply 1.5x, cap 30s.

6. Check Results

# All results
curl "$BASE/companies/$CID/imports/$IMPORT_ID/results" -H "Authorization: Bearer $IMPORTER_API_TOKEN"

# Errors only
curl "$BASE/companies/$CID/imports/$IMPORT_ID/results?type=ERROR" -H "Authorization: Bearer $IMPORTER_API_TOKEN"

Result types: INFO (success), WARNING, ERROR.

File Requirements

  • CSV: UTF-8, comma-delimited, header row required, max 50MB
  • XLSX: First sheet by default (use sheetName param for others), header row required, max 50MB

Error Handling

All errors return {"error": {"code": "...", "message": "..."}}.

CodeHTTPAction
UNAUTHORIZED401Check/refresh API token
NOT_FOUND404Verify company/mapping/import/entity ID
BAD_REQUEST400Check request format, file validity, provider connection
VALIDATION_ERROR422Map all required fields — call GET .../fields to see which
DUPLICATE_REQUEST409Same Idempotency-Key reused within 24h — use new UUID
CONFLICT409Import not in valid state for cancel/revert
RATE_LIMITED429Wait Retry-After header seconds, then retry

Rate Limits

  • Standard: 60 requests/minute per account
  • Imports: 30 imports/hour per company

Check X-RateLimit-Remaining header. On 429, wait Retry-After seconds.

Tips

  • Use dryRun=true on auto-import before committing — all operations hit live accounting data
  • Revert mistakes with POST .../imports/{id}/revert (deletes created entities from QBO/Xero)
  • alternativeTitles on fields show what CSV headers auto-mapping recognizes
  • For multi-line entities (invoices with line items), use a grouping field (DocNumber) — rows with same value become one entity
  • Paginated endpoints accept page and perPage (max 100, default 20)

Full API Details

For complete field schemas, response examples, and OpenAPI spec: see references/api.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.46%
按下载量换算2,081

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills