1.4k★by mrgoodb
xero – OpenClaw Skill
xero is an OpenClaw Skills integration for coding workflows. Manage Xero accounting - invoices, contacts, bank transactions, and reports via Xero API.
1.4k stars7.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | xero |
| description | Manage Xero accounting - invoices, contacts, bank transactions, and reports via Xero API. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/xero |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/xero |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
261 BSKILL.md
1.7 KBSKILL.md
name: xero description: Manage Xero accounting - invoices, contacts, bank transactions, and reports via Xero API. metadata: {"clawdbot":{"emoji":"💵","requires":{"env":["XERO_ACCESS_TOKEN","XERO_TENANT_ID"]}}}
Xero
Cloud accounting platform.
Environment
export XERO_ACCESS_TOKEN="xxxxxxxxxx"
export XERO_TENANT_ID="xxxxxxxxxx"
List Contacts
curl "https://api.xero.com/api.xro/2.0/Contacts" \
-H "Authorization: Bearer $XERO_ACCESS_TOKEN" \
-H "Xero-Tenant-Id: $XERO_TENANT_ID" \
-H "Accept: application/json"
Create Invoice
curl -X POST "https://api.xero.com/api.xro/2.0/Invoices" \
-H "Authorization: Bearer $XERO_ACCESS_TOKEN" \
-H "Xero-Tenant-Id: $XERO_TENANT_ID" \
-H "Content-Type: application/json" \
-d '{
"Invoices": [{
"Type": "ACCREC",
"Contact": {"ContactID": "xxxxx"},
"LineItems": [{"Description": "Consulting", "Quantity": 1, "UnitAmount": 500}],
"Date": "2024-01-30",
"DueDate": "2024-02-28"
}]
}'
List Invoices
curl "https://api.xero.com/api.xro/2.0/Invoices" \
-H "Authorization: Bearer $XERO_ACCESS_TOKEN" \
-H "Xero-Tenant-Id: $XERO_TENANT_ID" \
-H "Accept: application/json"
Get Bank Transactions
curl "https://api.xero.com/api.xro/2.0/BankTransactions" \
-H "Authorization: Bearer $XERO_ACCESS_TOKEN" \
-H "Xero-Tenant-Id: $XERO_TENANT_ID"
Get Profit & Loss Report
curl "https://api.xero.com/api.xro/2.0/Reports/ProfitAndLoss?fromDate=2024-01-01&toDate=2024-12-31" \
-H "Authorization: Bearer $XERO_ACCESS_TOKEN" \
-H "Xero-Tenant-Id: $XERO_TENANT_ID"
Links
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 xero?
Run openclaw add @mrgoodb/xero in your terminal. This installs xero 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/xero. Review commits and README documentation before installing.
