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.
npx skills add HybridAIOne/hybridclaw --skill download-platform-invoicesgit clone --depth 1 https://github.com/HybridAIOne/hybridclawWrote 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.
[](https://agentmods.dev/skills/hybridaione/hybridclaw/download-platform-invoices)<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/download-platform-invoices"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/download-platform-invoices/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/download-platform-invoices"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/download-platform-invoices.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00019 | $0.01378 |
| Opus 5 | $0.00010 | $0.00689 |
| Sonnet 5 | $0.00004 | $0.00276 |
| Haiku 4.5 | $0.00002 | $0.00138 |
Grade A, and why
download-platform-invoices scanned grade A with 0 findings 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 12d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Download Platform Invoices
Use this skill when the user wants monthly SaaS invoice PDFs collected from billing portals or billing APIs for bookkeeping handoff.
Output Contract
Each fetched invoice must produce one normalized JSON record and the original official PDF. The record shape is:
{
"vendor": "openai",
"invoice_no": "E-2026-03-001",
"period": "2026-03",
"issue_date": "2026-04-01",
"due_date": "2026-04-15",
"net": 123.45,
"vat_rate": 0.19,
"vat": 23.45,
"gross": 146.9,
"currency": "EUR",
"pdf_path": "runs/2026-03/openai/E-2026-03-001.pdf",
"source_url": "https://platform.openai.com/account/billing",
"checksum_sha256": "64 lowercase hex characters"
}
Validate records with the colocated schema.json contract. Keep pdf_path
relative to the invoice run directory.
Adapter Contract
Adapters follow this shape:
login(credentials) -> session
listInvoices(session, { since }) -> InvoiceMeta[]
download(session, invoice) -> Uint8Array
The runtime implementation is colocated with this skill:
- Stripe API adapter
- browser-driver scrape adapters for GitHub, OpenAI, Anthropic, Atlassian, and LinkedIn
- native API adapters for Google Ads InvoiceService, AWS Invoicing, Azure Billing invoices, and GCP Cloud Billing account authorization. Google does not expose invoice PDF listing/download in the public Cloud Billing REST API, so the GCP adapter uses the browser document driver for the Documents page after API authorization.
- DATEV Unternehmen Online handoff prefers an injected DATEV Datenservice, Rechnungsdatenservice/Belegbilderservice, MCP, or certified API client. If no such client is configured, it falls back to browser upload through DATEV Upload online/Belege online.
- manifest-based idempotency using
(vendor, invoice_no)andchecksum_sha256 - audit event emission per fetched invoice
- recorded fixture replay for every launch provider with sanitized HTTPS trace metadata and DOM snapshots, so CI does not touch live billing portals
What ships with it
34 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.
- adapters/anthropic.cjs 114 B runs code
- adapters/atlassian.cjs 114 B runs code
- adapters/aws.cjs 5.3 KB runs code
- adapters/azure.cjs 4.4 KB runs code
- adapters/datev-unternehmen-online.cjs 7.1 KB runs code
- adapters/gcp.cjs 14 KB runs code
- adapters/github.cjs 108 B runs code
- adapters/google-ads.cjs 9.1 KB runs code
- adapters/linkedin.cjs 112 B runs code
- adapters/openai.cjs 108 B runs code
- adapters/recorded-fixture.cjs 3.1 KB runs code
- adapters/scrape.cjs 18 KB runs code
- adapters/stripe.cjs 3.2 KB runs code
- fixtures/datev-unternehmen-online-upload.json 639 B
- fixtures/recorded-anthropic.json 3.3 KB
- fixtures/recorded-atlassian.json 3.2 KB
- fixtures/recorded-aws.json 2.6 KB
- fixtures/recorded-azure.json 3.4 KB
- fixtures/recorded-gcp.json 3.3 KB
- fixtures/recorded-github.json 3.2 KB
- fixtures/recorded-google-ads.json 2.7 KB
- fixtures/recorded-linkedin.json 3.2 KB
- fixtures/recorded-openai.json 3.2 KB
- fixtures/recorded-stripe.json 2.6 KB
- fixtures/stripe-invoices.json 358 B
- harvester.cjs 13 KB runs code
- helpers/audit.cjs 776 B runs code
- helpers/config.cjs 8.1 KB runs code
- helpers/escalation.cjs 1.8 KB runs code
- helpers/money.cjs 3.7 KB runs code
- helpers/schema.cjs 1.5 KB runs code
- helpers/totp.cjs 1.2 KB runs code
- index.cjs 1.1 KB runs code
- schema.json 1.2 KB
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.
- 12d ago First seen · 150 lines · 19 tokens per session scan A 6e15bba08143
download-platform-invoices is a skill published in the GitHub repository HybridAIOne/hybridclaw (132 stars, last pushed yesterday), licensed MIT. It adds 19 tokens to every session and 1,378 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
xlsx
Create polished Excel workbooks for budgets, trackers, tables, and explicit .xlsx spreadsheet requests.
officecli-skills
Unified OfficeCLI skill for creating, reading, and editing Office files. Use for any .docx, .pptx, or .xlsx task, including Word documents, PowerPoint decks, Excel workbooks, academic papers, pitch decks, financial models, dashboards, and fillable Word forms. This is the only top-level OfficeCLI skill; route to the…
comps-analysis
Build comparable-company valuation workbooks in Excel.
tear-sheet
Generate professional company tear sheets using S&P Capital IQ data via the Kensho LLM-ready API MCP server. Use this skill whenever the user asks for a tear sheet, company one-pager, company profile, fact sheet, company snapshot, or company overview document — especially when they mention a specific company name or…
pitch-deck
Populates investment banking pitch deck templates with data from source files. Use when: user provides a PowerPoint template to fill in, user has source data (Excel/CSV) to populate into slides, user mentions populating or filling a pitch deck template, or user needs to transfer data into existing slide layouts. Not…
ppt-template-creator
Creates self-contained PPT template SKILLS (not presentations) from user-provided PowerPoint templates. Use ONLY when a user wants to create a reusable skill from their template. For creating actual presentations, use the pptx skill instead.