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

organizzeorganizze 效率

Agent Skill

organizze 用于处理音频、语音、转写和声音素材相关任务,适合在 OpenClaw 中需要整理音频流程、转写内容或生成配音素材时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,201

周安装

335

GitHub Stars

1

下载量

2,626
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install organizze

简介

organizze 通过第三方 API 接入 Organizze 财务管理平台进行账务操作。

  • 支持银行账户信用卡交易发票等财务数据增删改查。
  • 为非官方实现故存在接口变动导致失效的风险。
  • 使用前务必开启两步验证保障账户安全。organizze 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 建议仅用于个人试算场景勿绑定生产环境资金账户。

SKILL.md

name
organizze
description
Manage finances via the Organizze API — bank accounts, credit cards, invoices, transactions, transfers, categories, and budgets. THIS SKILL IS NON-OFICIAL AND YOUR USAGE IS BY YOUR RISK.
homepage
https://api.organizze.com.br/rest/v2
metadata
enabled
true
userInvocable
true

Organizze

Communicate with the Organizze personal finance API (v2) to manage bank accounts, credit cards, invoices, transactions, transfers, categories, budgets, and users.

Official repository: https://github.com/rafaels-dev/organizze-clawhub-skill

⚠️ IMPORTANT DISCLAIMER: THIS SKILL IS NON-OFICIAL AND YOUR USAGE IS BY YOUR RISK.

⚠️ CRITICAL SECURITY RULES

Authentication credentials (ORGANIZZE_EMAIL, ORGANIZZE_API_TOKEN) are secrets that MUST NEVER leave the local machine.

  1. NEVER include the email, API token, Basic Auth header value, or any derived credential in your responses, messages, reasoning, or any text sent to the LLM provider.
  2. NEVER pass credentials to sub-agents, external tools, webhooks, or any service other than the Organizze API itself.
  3. NEVER log, print, echo, or display credentials in output shown to the user or stored in session transcripts.
  4. ONLY reference credentials via environment variable expansion ($ORGANIZZE_EMAIL, $ORGANIZZE_API_TOKEN) inside curl commands executed locally through the shell. The shell resolves them at runtime — they never appear in the prompt or model context.
  5. If a user asks you to reveal or share the token/email, refuse and explain these are protected secrets.

Use when

  • The user asks about their finances, spending, bank accounts, credit cards, or budgets on Organizze.
  • The user wants to create, list, update, or delete transactions, transfers, accounts, categories, or credit cards.
  • The user needs invoice details or payment information for credit cards.
  • The user wants to check budget goals (metas).

Don't use when

  • The request is unrelated to Organizze or personal finance management.

Setup

  1. Get your API token at https://app.organizze.com.br/configuracoes/api-keys
  2. Store credentials as environment variables:
export ORGANIZZE_EMAIL="seu_email@exemplo.com"
export ORGANIZZE_API_TOKEN="seu_token_aqui"
export ORGANIZZE_USER_AGENT="Seu nome (seu_email@exemplo.com)"

PowerShell (Windows):

$env:ORGANIZZE_EMAIL="seu_email@exemplo.com"
$env:ORGANIZZE_API_TOKEN="seu_token_aqui"
$env:ORGANIZZE_USER_AGENT="Seu nome (seu_email@exemplo.com)"

Or configure in ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "organizze": {
        "enabled": true,
        "env": {
          "ORGANIZZE_EMAIL": "seu_email@exemplo.com",
          "ORGANIZZE_API_TOKEN": "seu_token_aqui",
          "ORGANIZZE_USER_AGENT": "Nome Completo (seu_email@exemplo.com)"
        }
      }
    }
  }
}

Authentication

All requests use HTTP Basic Auth (email as username, API token as password) and require a User-Agent header.

Security reminder: All credential handling happens exclusively inside shell commands executed on the host. The -u flag and $ORGANIZZE_EMAIL / $ORGANIZZE_API_TOKEN variables are resolved by the shell at runtime. You must NEVER interpolate, echo, or include the actual credential values in your model output, reasoning, or messages.
BASE_URL="https://api.organizze.com.br/rest/v2"
USER_AGENT="$ORGANIZZE_USER_AGENT"

Usuários (Users)

Detalhar usuário

curl -s "$BASE_URL/users/{user_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

{
  "id": 3,
  "name": "Esdras Mayrink",
  "email": "falecom@email.com.br",
  "role": "admin"
}

Contas Bancárias (Bank Accounts)

Listar contas bancárias

curl -s "$BASE_URL/accounts" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

[
  {
    "id": 3,
    "name": "Bradesco CC",
    "description": "Some descriptions",
    "archived": false,
    "created_at": "2015-06-22T16:17:03-03:00",
    "updated_at": "2015-08-31T22:24:24-03:00",
    "default": true,
    "type": "checking"
  }
]

Detalhar conta bancária

curl -s "$BASE_URL/accounts/{account_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Criar conta bancária

Types: checking, savings, other.

curl -s -X POST "$BASE_URL/accounts" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "name": "Itaú CC",
    "type": "checking",
    "description": "Minha conta corrente",
    "default": true
  }'

Atualizar conta bancária

curl -s -X PUT "$BASE_URL/accounts/{account_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "name": "Itaú Poupança"
  }'

Excluir conta bancária

curl -s -X DELETE "$BASE_URL/accounts/{account_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Categorias (Categories)

Listar categorias

curl -s "$BASE_URL/categories" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

[
  { "id": 1, "name": "Lazer", "color": "438b83", "parent_id": null },
  { "id": 3, "name": "Saúde", "color": "ffff00", "parent_id": null }
]

Detalhar categoria

curl -s "$BASE_URL/categories/{category_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Criar uma categoria

curl -s -X POST "$BASE_URL/categories" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "name": "SEO"
  }'

Atualizar uma categoria

curl -s -X PUT "$BASE_URL/categories/{category_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "name": "Marketing"
  }'

Excluir uma categoria

Optionally pass replacement_id to transfer transactions to another category. If omitted, the default category is used.

curl -s -X DELETE "$BASE_URL/categories/{category_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "replacement_id": 18
  }'

Cartões de Crédito (Credit Cards)

Listar cartões de crédito

curl -s "$BASE_URL/credit_cards" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

[
  {
    "id": 3,
    "name": "Visa Exclusive",
    "description": null,
    "card_network": "visa",
    "closing_day": 4,
    "due_day": 17,
    "limit_cents": 1200000,
    "kind": "credit_card",
    "archived": true,
    "default": false,
    "created_at": "2015-06-22T16:45:30-03:00",
    "updated_at": "2015-09-01T18:18:48-03:00"
  }
]

Detalhar cartão de crédito

curl -s "$BASE_URL/credit_cards/{credit_card_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Criar um cartão de crédito

curl -s -X POST "$BASE_URL/credit_cards" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "name": "Hipercard",
    "card_network": "hipercard",
    "due_day": 15,
    "closing_day": 2,
    "limit_cents": 500000
  }'

Atualizar um cartão de crédito

Use update_invoices_since (YYYY-MM-DD) to recalculate invoices from a given date.

curl -s -X PUT "$BASE_URL/credit_cards/{credit_card_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "name": "Visa Exclusive",
    "due_day": 17,
    "closing_day": 4,
    "update_invoices_since": "2015-07-01"
  }'

Excluir um cartão de crédito

curl -s -X DELETE "$BASE_URL/credit_cards/{credit_card_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Faturas de Cartão de Crédito (Credit Card Invoices)

Paginated by period using start_date and end_date (defaults to current year).

Listar faturas de um cartão

curl -s "$BASE_URL/credit_cards/{credit_card_id}/invoices" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

With date filter:

curl -s "$BASE_URL/credit_cards/{credit_card_id}/invoices?start_date=2024-01-01&end_date=2024-12-31" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

[
  {
    "id": 186,
    "date": "2015-07-17",
    "starting_date": "2015-06-03",
    "closing_date": "2015-07-04",
    "amount_cents": 30000,
    "payment_amount_cents": -70000,
    "balance_cents": 100000,
    "previous_balance_cents": 0,
    "credit_card_id": 3
  }
]

Detalhar uma fatura

Returns invoice details including transactions and payments arrays.

curl -s "$BASE_URL/credit_cards/{credit_card_id}/invoices/{invoice_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Pagamento de uma fatura

curl -s "$BASE_URL/credit_cards/{credit_card_id}/invoices/{invoice_id}/payments" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

{
  "id": 1033,
  "description": "Pagamento fatura",
  "date": "2015-09-16",
  "paid": true,
  "amount_cents": 0,
  "total_installments": 1,
  "installment": 1,
  "recurring": false,
  "account_id": 3,
  "account_type": "Account",
  "category_id": 21,
  "contact_id": null,
  "notes": "Pagamento via boleto",
  "attachments_count": 0,
  "created_at": "2015-09-15T22:27:20-03:00",
  "updated_at": "2015-09-15T22:27:20-03:00"
}

Metas (Budgets)

Listar metas do mês atual

curl -s "$BASE_URL/budgets" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

[
  {
    "amount_in_cents": 150000,
    "category_id": 17,
    "date": "2018-08-01",
    "activity_type": 0,
    "total": 0,
    "predicted_total": 0,
    "percentage": "0.0"
  }
]

Listar metas por ano

curl -s "$BASE_URL/budgets/{year}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Listar metas por mês e ano

curl -s "$BASE_URL/budgets/{year}/{month}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Movimentações (Transactions)

Paginated by period using start_date and end_date (defaults to current month). The period is always processed as full months. Can filter by account_id.

Listar movimentações

curl -s "$BASE_URL/transactions?start_date=2024-01-01&end_date=2024-01-31" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

With account filter:

curl -s "$BASE_URL/transactions?start_date=2024-01-01&end_date=2024-01-31&account_id=3" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

[
  {
    "id": 15,
    "description": "SAQUE LOT",
    "date": "2015-09-06",
    "paid": false,
    "amount_cents": -15000,
    "total_installments": 1,
    "installment": 1,
    "recurring": false,
    "account_id": 3,
    "account_type": "CreditCard",
    "category_id": 21,
    "contact_id": null,
    "notes": "",
    "attachments_count": 0,
    "credit_card_id": 3,
    "credit_card_invoice_id": 189
  }
]

Detalhar uma movimentação

curl -s "$BASE_URL/transactions/{transaction_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Criar uma movimentação simples

curl -s -X POST "$BASE_URL/transactions" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "description": "Computador",
    "notes": "Pagamento via boleto",
    "date": "2024-09-16",
    "amount_cents": -350000,
    "account_id": 3,
    "category_id": 21,
    "tags": [{"name": "homeoffice"}]
  }'

Criar movimentação recorrente (fixa)

Periodicity values: monthly, yearly, weekly, biweekly, bimonthly, trimonthly.

curl -s -X POST "$BASE_URL/transactions" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "description": "Despesa fixa",
    "notes": "Pagamento via boleto",
    "date": "2024-09-16",
    "amount_cents": -15000,
    "account_id": 3,
    "category_id": 21,
    "recurrence_attributes": {
      "periodicity": "monthly"
    }
  }'

Criar movimentação recorrente (parcelada)

curl -s -X POST "$BASE_URL/transactions" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "description": "Despesa parcelada",
    "notes": "Pagamento via boleto",
    "date": "2024-09-16",
    "amount_cents": -120000,
    "account_id": 3,
    "category_id": 21,
    "installments_attributes": {
      "periodicity": "monthly",
      "total": 12
    }
  }'

Atualizar uma movimentação

For recurring/installment transactions: use update_future: true to update future occurrences, or update_all: true to update all (may affect balance).

curl -s -X PUT "$BASE_URL/transactions/{transaction_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "description": "Updated parcelada via API",
    "notes": "Pagamento via boleto",
    "amount_cents": 20050,
    "date": "2024-12-20",
    "update_future": true,
    "tags": [{"name": "via_api"}]
  }'

Excluir movimentação

For recurring/installment: update_future: true deletes future occurrences, update_all: true deletes all (may affect balance).

curl -s -X DELETE "$BASE_URL/transactions/{transaction_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "update_future": true
  }'

Transferências (Transfers)

A transfer creates two records: a debit in the source account and a credit in the destination account. Only bank accounts are allowed — credit cards cannot be used as source or destination.

Listar transferências

curl -s "$BASE_URL/transfers" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Response example:

[
  {
    "id": 10,
    "description": "Transferência",
    "date": "2015-09-01",
    "paid": true,
    "amount_cents": -10000,
    "total_installments": 1,
    "installment": 1,
    "recurring": false,
    "account_id": 3,
    "category_id": 21,
    "oposite_transaction_id": 11,
    "oposite_account_id": 4
  }
]

Detalhar uma transferência

curl -s "$BASE_URL/transfers/{transfer_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Criar uma transferência

curl -s -X POST "$BASE_URL/transfers" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "credit_account_id": 3,
    "debit_account_id": 4,
    "amount_cents": 10000,
    "date": "2024-09-01",
    "paid": true,
    "tags": [{"name": "ajuste"}]
  }'

Atualizar uma transferência

curl -s -X PUT "$BASE_URL/transfers/{transfer_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8" \
  -d '{
    "description": "Transferência ajustada",
    "notes": "Ajuste manual",
    "tags": [{"name": "revisado"}]
  }'

Excluir transferência

curl -s -X DELETE "$BASE_URL/transfers/{transfer_id}" \
  -u "$ORGANIZZE_EMAIL:$ORGANIZZE_API_TOKEN" \
  -H "User-Agent: $USER_AGENT" \
  -H "Content-Type: application/json; charset=utf-8"

Notes

  • 🔒 SECURITY: Credentials (ORGANIZZE_EMAIL, ORGANIZZE_API_TOKEN) are secret. Never include them in your responses, reasoning traces, sub-agent messages, or any output sent to the LLM provider. Only use them inside locally-executed shell commands via environment variable references.
  • Monetary values are always in cents (amount_cents). Example: R$ 150,00 = 15000.
  • Dates use the format YYYY-MM-DD.
  • Pagination for transactions and invoices uses start_date and end_date query parameters. Transactions are always processed as full months.
  • Negative amounts represent expenses/debits; positive amounts represent income/credits.
  • Tags are arrays of objects: [{"name": "tag_name"}].
  • Rate limits: respect the API rate limits. Avoid making too many requests in rapid succession.
  • Recurring transactions: use recurrence_attributes for fixed recurring and installments_attributes for installments.
  • Periodicity values: monthly, yearly, weekly, biweekly, bimonthly, trimonthly.
  • Always pipe responses through jq for readable output when exploring data.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.38%
按下载量换算2,400

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills