beel-api

beel-api is a skill for Claude Code, Codex from beel-es/claude-plugins. It costs 40 tokens per session (1,313 once invoked), scanned A, original, MIT.

An integration guide for BeeL, a Spanish invoicing service for self-employed people and businesses, including VeriFactu compliance.

In plain words
What is it for?
Creating invoices, managing customers and products, adding webhooks, handling company-scoped data, and troubleshooting BeeL API responses.
Why use it?
It provides verified rules for using the API and helps prevent incorrect endpoints, fields, package names, or unsafe handling of API keys.

Skill for Claude CodeCodex

Part of the beel-api plugin — 6 skills, 1 MCP server shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/beel-es/claude-plugins/beel-api
Any agent
npx skills add beel-es/claude-plugins --skill beel-api
Clone the repo
git clone --depth 1 https://github.com/beel-es/claude-plugins

Made for: Claude Code, Codex.

Or install beel-api, the plugin that ships this one along with the rest of its 6 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for beel-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/beel-es/claude-plugins/beel-api.svg)](https://agentmods.dev/skills/beel-es/claude-plugins/beel-api)
Your own site
<a href="https://agentmods.dev/skills/beel-es/claude-plugins/beel-api"><img src="https://agentmods.dev/badge/skills/beel-es/claude-plugins/beel-api.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,313 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00040 $0.01313
Opus 5 $0.00020 $0.00656
Sonnet 5 $0.00008 $0.00263
Haiku 4.5 $0.00004 $0.00131

Measured 3d ago against content hash f0721d1d1ce1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

beel-api scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s https://docs.beel.es/llms.txt | grep -i "invoice\|customer"
plugins/beel-api/skills/beel-api/SKILL.md · 85 lines

How it starts

The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.

BeeL API — Integration Guide

BeeL is a SaaS invoicing platform for Spanish autónomos with full VeriFactu compliance.

⚠️ Golden Rules

  1. NEVER invent endpoints, fields, or package names. Always verify against the live docs first — see "How to Look Up Documentation" below for the token-efficient way to do it.
  2. NEVER hardcode API keys. Always use environment variables (process.env.BEEL_API_KEY).
  3. There is NO separate test URL. Base URL is always https://app.beel.es/api, and every path starts with /v1/. The key prefix determines the environment: beel_sk_test_* = sandbox, beel_sk_live_* = production.
  4. Company-scoped paths are the canonical form. Build new code against /v1/companies/{company_id}/… (invoices, customers, products, series, tax and VeriFactu settings). The flat routes (/v1/invoices, /v1/customers, /v1/products, /v1/configuration/* and their sub-paths like /issue and /void) are deprecated: true, each carrying an x-successor; they keep working until the date in their Sunset response header.
  5. Send BeeL-Active-Company (the company_id) on any request touching company-owned data. Optional on an account with a single NIF, required on an account with several — otherwise 403 ACTIVE_COMPANY_REQUIRED. See /beel-api:multi-nif.
  6. Idempotency-Key on POST. Ignored on PUT/PATCH/DELETE unless the operation opts in. Optional in general, required on bulk imports. See recipes/invoice-flow.md.
  7. Issued invoices are immutable. To correct → corrective invoice. To cancel → void it.
  8. When in doubt, look up the docs (see below).

📚 How to Look Up Documentation

Preferred: the BeeL CLI docs search — and propose it to the user first.

When you need to check the docs, don't silently fetch the whole llms.txt / llms-full.txt (that burns tokens and pulls in ~600KB you don't need). Instead, suggest running the CLI and wait for the user's go-ahead, e.g.:

"I need to confirm the exact fields for creating an invoice. Want me to run npx @beel_es/cli docs search create invoice? It searches the docs locally and returns only the matching ~2KB section — no API key needed."

Read the full file on GitHub · 85 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 85 lines · 40 tokens per session scan A f0721d1d1ce1

Subscribe to this mod's changes

beel-api is a skill published in the GitHub repository beel-es/claude-plugins (4 stars, last pushed 8d ago), licensed MIT. It adds 40 tokens to every session and 1,313 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

upgrading-golang

Upgrades Go version across the entire Chainloop codebase including source files, Docker images, CI/CD workflows, and documentation. Use when the user mentions upgrading Go, golang version, or updating Go compiler version.

chainloop-dev/chainloop · 48 tokens

custom-builtin-functions

Create a custom builtin function to be used in the Rego policy engine.

chainloop-dev/chainloop · 19 tokens

agt-policy-authoring

Create and validate a minimal AGT Copilot CLI policy tailored to the repository being inspected.

microsoft/agent-governance-toolkit · 23 tokens

catalyst-center-readonly

Query Cisco Catalyst Center read-only — device inventory, site hierarchy, wireless, assurance health, compliance, software images, events. All 514 read-only API operations reachable through 8 grouped dispatchers. Use when asked what Catalyst Center manages, where a device sits, what its health or compliance state is…

automateyournetwork/netclaw · 78 tokens

biome

Repository guidance for using Biome as the formatter, linter, and code quality tool within the hr-skills monorepo.

tuanductran/hr-skills · 29 tokens

mapping-builder

Build a reviewed crosswalk (RequirementMappingSet YAML library + review xlsx/csv) between two CISO Assistant framework YAML files using Claude itself as the reasoning engine. Zero infrastructure — stdlib + pyyaml only, no embedders, no LM Studio, no Qdrant. Use when the user asks to map / crosswalk / generate a…

intuitem/ciso-assistant-community · 164 tokens