organizze
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.
What this skill does
# 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: ```bash export ORGANIZZE_EMAIL="[email protected]" export ORGANIZZE_API_TOKEN="seu_token_aqui" export ORGANIZZE_USER_AGENT="Seu nome ([email protected])" ``` PowerShell (Windows): ```powershell $env:ORGANIZZE_EMAIL="[email protected]" $env:ORGANIZZE_API_TOKEN="seu_token_aqui" $env:ORGANIZZE_USER_AGENT="Seu nome ([email protected])" ``` Or configure in `~/.openclaw/openclaw.json`: ```json { "skills": { "entries": { "organizze": { "enabled": true, "env": { "ORGANIZZE_EMAIL": "[email protected]", "ORGANIZZE_API_TOKEN": "seu_token_aqui", "ORGANIZZE_USER_AGENT": "Nome Completo ([email protected])" } } } } } ``` ## 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. ```bash BASE_URL="https://api.organizze.com.br/rest/v2" USER_AGENT="$ORGANIZZE_USER_AGENT" ``` --- ## Usuários (Users) ### Detalhar usuário ```bash 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: ```json { "id": 3, "name": "Esdras Mayrink", "email": "[email protected]", "role": "admin" } ``` --- ## Contas Bancárias (Bank Accounts) ### Listar contas bancárias ```bash 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: ```json [ { "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 ```bash 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`. ```bash 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 ```bash 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 ```bash 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 ```bash 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: ```json [ { "id": 1, "name": "Lazer", "color": "438b83", "parent_id": null }, { "id": 3, "name": "Saúde", "color": "ffff00", "parent_id": null } ] ``` ### Detalhar categoria ```bash 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 ```bash 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 ```bash 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. ```bash 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 ```bash 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: ```json [ { "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 ```bash 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 ```bash 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 fro
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.