← 返回 Skills 市场
paulgosnell

Accountsos

作者 paulgosnell · GitHub ↗ · v1.2.0
cross-platform ✓ 安全检测通过
1276
总下载
0
收藏
2
当前安装
2
版本数
在 OpenClaw 中安装
/install accountsos
功能描述
AI-native accounting for UK micro-businesses. Use when the user wants to track transactions, manage VAT, check deadlines, or do any bookkeeping for a UK limited company.
使用说明 (SKILL.md)

AccountsOS

AI-native accounting. Your agent runs the books so your human doesn't have to.

Base URL: https://accounts-os.com/api/mcp

What is AccountsOS?

AccountsOS is accounting infrastructure for AI agents. Built for UK micro-businesses (Ltd companies, sole traders):

  • Transaction tracking — Income, expenses, categorized automatically
  • VAT management — Calculate returns, track what's owed
  • Deadline alerts — Corporation tax, VAT, confirmation statements
  • Document storage — Receipts, invoices, contracts
  • AI categorization — Smart category suggestions for every transaction

No spreadsheets. No manual entry. Just tell your agent what happened.

Quick Start (For AI Agents)

1. Get API Key

Option A: Self-Signup (recommended) — Create an account yourself with one request:

curl -X POST https://accounts-os.com/api/agent-signup \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]",
    "company_name": "Acme Ltd",
    "full_name": "Jane Smith"
  }'

Response includes api_key for immediate use. Your human gets a welcome email to claim the account.

Option B: Manual — Your human signs up at https://accounts-os.com and generates an API key from the dashboard.

export ACCOUNTSOS_API_KEY="sk_live_..."

2. Check the Books

# Get recent transactions
curl -X POST https://accounts-os.com/api/mcp \
  -H "Authorization: Bearer $ACCOUNTSOS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "tool", "name": "get_transactions", "arguments": {"limit": 10}}'

3. Record a Transaction

curl -X POST https://accounts-os.com/api/mcp \
  -H "Authorization: Bearer $ACCOUNTSOS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "tool",
    "name": "create_transaction",
    "arguments": {
      "date": "2026-02-01",
      "description": "Client payment - Website project",
      "amount": 2500.00,
      "direction": "in"
    }
  }'

4. Check VAT Position

curl -X POST https://accounts-os.com/api/mcp \
  -H "Authorization: Bearer $ACCOUNTSOS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "tool", "name": "get_vat_summary", "arguments": {}}'

API Reference

AccountsOS uses an MCP-style API. All requests go to /api/mcp with a JSON body specifying the tool or resource.

Authentication

Authorization: Bearer your_api_key
Content-Type: application/json

Tools (Actions)

Get transactions:

{
  "type": "tool",
  "name": "get_transactions",
  "arguments": {
    "from_date": "2026-01-01",
    "to_date": "2026-01-31",
    "direction": "in",
    "limit": 50
  }
}

Get balance:

{
  "type": "tool",
  "name": "get_balance",
  "arguments": {"account_id": "optional"}
}

Get VAT summary:

{
  "type": "tool",
  "name": "get_vat_summary",
  "arguments": {"quarter": "Q4 2025"}
}

Get deadlines:

{
  "type": "tool",
  "name": "get_deadlines",
  "arguments": {"include_completed": false}
}

Create transaction:

{
  "type": "tool",
  "name": "create_transaction",
  "arguments": {
    "date": "2026-02-01",
    "description": "AWS hosting - January",
    "amount": 127.50,
    "direction": "out",
    "category_id": "optional",
    "vat_rate": 20,
    "notes": "Monthly infrastructure"
  }
}

Directions: in (income) or out (expense)

Update transaction:

{
  "type": "tool",
  "name": "update_transaction",
  "arguments": {
    "transaction_id": "uuid",
    "category_id": "new_category",
    "notes": "Updated notes"
  }
}

AI categorization:

{
  "type": "tool",
  "name": "categorize_transaction",
  "arguments": {"transaction_id": "uuid"}
}

Returns suggested category based on description and historical patterns.

List categories:

{
  "type": "tool",
  "name": "list_categories",
  "arguments": {"type": "expense"}
}

Types: income, expense, asset, liability, equity

Create deadline:

{
  "type": "tool",
  "name": "create_deadline",
  "arguments": {
    "type": "VAT Return",
    "due_date": "2026-02-07",
    "notes": "Q4 2025 VAT"
  }
}

Search documents:

{
  "type": "tool",
  "name": "search_documents",
  "arguments": {
    "query": "invoice",
    "type": "receipt"
  }
}

Upload document:

{
  "type": "tool",
  "name": "upload_document",
  "arguments": {
    "file_name": "receipt.pdf",
    "file_data": "base64_encoded_data",
    "document_type": "receipt"
  }
}

Get Director's Loan Account balance:

{
  "type": "tool",
  "name": "get_dla_balance",
  "arguments": {
    "limit": 10
  }
}

Returns DLA balance with S455 tax warnings if the account is overdrawn.

Get invoices:

{
  "type": "tool",
  "name": "get_invoices",
  "arguments": {
    "status": "all",
    "contact_id": "optional"
  }
}

Status options: draft, sent, paid, overdue, cancelled, all Returns invoices with summary of outstanding and overdue amounts.

Create deadline:

{
  "type": "tool",
  "name": "create_deadline",
  "arguments": {
    "type": "VAT Return",
    "due_date": "2026-02-07",
    "notes": "Q4 2025 VAT"
  }
}

Agent Self-Signup

POST /api/agent-signup — No authentication required.

Create an account and get an API key in one request:

{
  "email": "[email protected]",
  "company_name": "Acme Ltd",
  "full_name": "Jane Smith",
  "entity_type": "ltd"
}

Required: email, company_name Optional: full_name, entity_type (default: ltd)

Entity types: ltd, plc, llp, sole_trader, partnership, cic, charity, overseas, other

Response:

{
  "api_key": "sk_live_...",
  "company_id": "uuid",
  "user_id": "uuid",
  "trial_ends_at": "2026-02-22T...",
  "api_base": "https://accounts-os.com/api/mcp",
  "message": "Account created. Store this API key — it will not be shown again."
}

The API key has read + write scopes. 14-day free trial. Human receives a welcome email.

Returns 409 if the email is already registered.


Scopes

API keys support three permission levels:

  • read — Query transactions, balances, deadlines, documents, invoices, DLA
  • write — Create/update transactions, documents, deadlines (includes read)
  • admin — Manage company settings (includes write)

Your API key's scope is configured in the dashboard. Requests beyond your scope return a 403 error.

Resources (Read-only)

Company info:

{
  "type": "resource",
  "uri": "accountsos://company"
}

Recent transactions:

{
  "type": "resource",
  "uri": "accountsos://transactions"
}

Use Cases for Agents

Daily Bookkeeping

Your human mentions expenses throughout the day? Log them:

# Human: "Just paid £45 for the Figma subscription"
accountsos.create_transaction(
    date=today,
    description="Figma subscription - monthly",
    amount=45.00,
    direction="out"
)
# AI auto-categorizes as "Software & Subscriptions"

Invoice Follow-up

Track what's owed:

# Check unpaid invoices
transactions = accountsos.get_transactions(
    direction="in",
    status="pending"
)
for t in transactions:
    if t.days_overdue > 14:
        # Alert human or draft follow-up email
        notify(f"Invoice {t.description} is {t.days_overdue} days overdue")

VAT Prep

Quarterly VAT? Already calculated:

vat = accountsos.get_vat_summary(quarter="Q4 2025")
print(f"VAT owed: £{vat.amount_owed}")
print(f"Due: {vat.due_date}")
# Surface to human before deadline

Deadline Monitoring

Never miss a filing:

deadlines = accountsos.get_deadlines()
for d in deadlines:
    if d.days_until \x3C 7:
        alert(f"⚠️ {d.type} due in {d.days_until} days")

Expense Categorization

New transaction? Categorize it:

# Get AI suggestion
suggestion = accountsos.categorize_transaction(transaction_id)
if suggestion.confidence > 0.8:
    accountsos.update_transaction(transaction_id, {
        "category_id": suggestion.category_id
    })

Add to Your Heartbeat

## AccountsOS (daily or weekly)

### Daily
- Check for new transactions needing categorization
- Log any expenses human mentioned today

### Weekly
- Review uncategorized transactions
- Check upcoming deadlines (next 14 days)
- Summarize week's P&L if human asks

### Quarterly
- Generate VAT summary
- Surface filing deadlines
- Remind human to review before submission

UK-Specific Features

Feature Details
VAT schemes Standard, Flat Rate, Cash Accounting
Tax years April-April alignment
Deadlines CT600, VAT, Confirmation Statement
Categories HMRC-aligned expense categories

Built for UK Ltd companies and sole traders. Knows the rules so you don't have to.


Example: Weekly Finance Check

import os
import requests
from datetime import datetime, timedelta

API_URL = "https://accounts-os.com/api/mcp"
headers = {
    "Authorization": f"Bearer {os.environ['ACCOUNTSOS_API_KEY']}",
    "Content-Type": "application/json"
}

def call_tool(name, args={}):
    resp = requests.post(API_URL, headers=headers, json={
        "type": "tool", "name": name, "arguments": args
    })
    return resp.json()["result"]

# 1. Check balance
balance = call_tool("get_balance")
print(f"💰 Current balance: £{balance['amount']}")

# 2. This week's transactions
week_ago = (datetime.now() - timedelta(days=7)).strftime("%Y-%m-%d")
transactions = call_tool("get_transactions", {"from_date": week_ago})
income = sum(t["amount"] for t in transactions if t["direction"] == "in")
expenses = sum(t["amount"] for t in transactions if t["direction"] == "out")
print(f"📈 Week: +£{income} / -£{expenses}")

# 3. Upcoming deadlines
deadlines = call_tool("get_deadlines")
urgent = [d for d in deadlines if d["days_until"] \x3C 14]
if urgent:
    print(f"⚠️ {len(urgent)} deadlines in next 2 weeks")
    for d in urgent:
        print(f"  - {d['type']}: {d['due_date']}")

# 4. VAT position
vat = call_tool("get_vat_summary")
print(f"🧾 VAT owed: £{vat['amount_owed']}")

Links


Your Human's Financial Copilot

Most people hate bookkeeping. They forget receipts, miss deadlines, panic at tax time.

You don't forget. You don't panic. You just log, categorize, and surface what matters.

Be the agent that makes finances boring (in a good way).


Built by Thrive Venture Labs

安全使用建议
This skill is an instruction-only connector to https://accounts-os.com and appears coherent for bookkeeping tasks. Before installing: verify the AccountsOS service and domain (accounts-os.com) are legitimate for your organisation; provide a dedicated API key with the minimum necessary permissions rather than reusing broader credentials; be aware the skill’s instructions include an unauthenticated signup endpoint that could let the agent create accounts and obtain API keys programmatically — if you do not want autonomous signup, avoid giving the agent permission to call that endpoint or require manual key provisioning; review AccountsOS privacy/TOS and how financial data is stored; monitor API key usage and rotate/revoke keys if you see unexpected activity.
功能分析
Type: OpenClaw Skill Name: accountsos Version: 1.2.0 The skill bundle is classified as benign. All documented API interactions are directed to the `accounts-os.com` domain, which is consistent with the stated purpose of an 'AI-native accounting' skill. The `SKILL.md` clearly outlines the required `ACCOUNTSOS_API_KEY` environment variable and its use for authentication. While the agent self-signup capability (via `POST /api/agent-signup`) allows the agent to create an account and obtain an API key, this is explicitly documented as a feature to facilitate quick setup, not a malicious act of credential theft or unauthorized access. There is no evidence of data exfiltration to unauthorized endpoints, malicious execution, persistence mechanisms, or prompt injection attempts designed to subvert the agent's core function or security.
能力评估
Purpose & Capability
The name/description (UK bookkeeping) match the single required environment variable (ACCOUNTSOS_API_KEY) and the SKILL.md that shows calling accounts-os.com API endpoints. There are no unrelated credentials, binaries, or config paths requested.
Instruction Scope
SKILL.md is an instruction-only manifest that tells the agent to call the AccountsOS MCP API (POST /api/mcp) and to optionally use an unauthenticated /api/agent-signup endpoint to obtain an API key. The instructions do not ask the agent to read unrelated files or other env vars, but they do enable the agent to create an account and obtain an API key programmatically — the operator should be aware the agent could perform signup actions autonomously if invoked.
Install Mechanism
No install spec or code is present (instruction-only). Nothing will be downloaded or written to disk by the skill itself; risk from installation artifacts is minimal.
Credentials
Only one env var is required (ACCOUNTSOS_API_KEY), which is appropriate for an API-based bookkeeping integration. There are no unexpected secret or config path requests.
Persistence & Privilege
always is false and the skill is user-invocable with normal autonomous invocation allowed. This is the standard model and is consistent with the skill's purpose; the skill does not request system-wide or permanent presence.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install accountsos
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /accountsos 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.2.0
Add agent self-signup API for zero-friction onboarding
v1.1.0
AI-native accounting for UK micro-businesses. 13 tools for transactions, VAT, deadlines, invoices, documents.
元数据
Slug accountsos
版本 1.2.0
许可证
累计安装 2
当前安装数 2
历史版本数 2
常见问题

Accountsos 是什么?

AI-native accounting for UK micro-businesses. Use when the user wants to track transactions, manage VAT, check deadlines, or do any bookkeeping for a UK limited company. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1276 次。

如何安装 Accountsos?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install accountsos」即可一键安装,无需额外配置。

Accountsos 是免费的吗?

是的,Accountsos 完全免费(开源免费),可自由下载、安装和使用。

Accountsos 支持哪些平台?

Accountsos 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Accountsos?

由 paulgosnell(@paulgosnell)开发并维护,当前版本 v1.2.0。

💬 留言讨论