ar-health

ar-health is a skill for Claude Code, Codex from yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server. It costs 55 tokens per session (1,388 once invoked), scanned A, original, MIT.

A procedure for checking accounts receivable, meaning the money customers owe a business. It combines Acumatica records into an aging review of outstanding and overdue invoices, unapplied payments, and related balances.

In plain words
What is it for?
Use it to answer who owes money, show overdue invoices, calculate outstanding balances, find unapplied payments, and produce an accounts-receivable summary.
Why use it?
It turns multiple record searches into one audit and handles pagination, large results, and Acumatica search limitations so totals are less likely to be incomplete.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to answer who owes money, show overdue invoices, calculate outstanding balances, find unapplied payments, and produce an accounts-receivable summary.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server/ar-health
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.

Any agent
npx skills add yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server --skill ar-health
Clone the repo
git clone --depth 1 https://github.com/yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server

Made for: Claude Code, Codex.

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 ar-health

README.md
[![agentmods](https://agentmods.dev/badge/skills/yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server/ar-health/github.svg)](https://agentmods.dev/skills/yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server/ar-health)
Your own site
<a href="https://agentmods.dev/skills/yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server/ar-health"><img src="https://agentmods.dev/badge/skills/yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server/ar-health/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.

agentmods 80×15 button for ar-health

Your own site · 80×15
<a href="https://agentmods.dev/skills/yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server/ar-health"><img src="https://agentmods.dev/badge/skills/yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server/ar-health.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,388 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00055 $0.01388
Opus 5 $0.00028 $0.00694
Sonnet 5 $0.00011 $0.00278
Haiku 4.5 $0.00006 $0.00139

Measured 11d ago against content hash ef44ca391206, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ar-health 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 11d 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.

skills/ar-health/SKILL.md · 152 lines

How it starts

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

Acumatica - AR Health Check

A multi-query accounts receivable audit. Run all steps and compile into a single report.

Acumatica mechanics (read first)

  • Field names are never guessed. Use only names from describe_entity (or the exact queries below). A wrong name in filter=/select= returns HTTP 500 KeyNotFoundException.
  • $orderby is silently ignored. For "most recent", filter a narrow date window and widen (14 -> 30 -> 90 days), then sort client-side: filter="Date gt datetimeoffset'2026-06-22T00:00:00-04:00'" (compute the date from today).
  • Decimal literals fail in filters. Amount gt 0 returns "Type conversions are not supported" - drop the numeric clause and filter client-side.
  • Paginate. Default top is 50. If a call returns exactly top rows, repeat with skip= until a short page comes back - never report a full page as the complete total.
  • Large results may arrive as a file path instead of inline JSON. Read the file and aggregate (jq / Python); do not re-run the query hoping it shrinks.
  • Always pass select= with only the fields you need. StockItem and ItemWarehouse are enormous without it.
  • Link every document. Render the primary identifier (RefNbr / OrderNbr / ID) as a Markdown hyperlink using the record's browser_url field.
  • On any error, read the hint field in the tool response - the server translates common 500s into the corrective action.
  • Invoice DueDate filters can be dropped silently by the server - if you filter on DueDate, verify the returned rows actually honor the bound (or query Bill instead for AP). This skill avoids the problem by pulling open invoices and bucketing by DueDate client-side.
  • Payment's date field is ApplicationDate, not Date - filtering Payment on Date returns 500.

Step 1 - Open invoices (AR balance)

list_records(
    entity="Invoice",
    filter="Type eq 'Invoice' and Status eq 'Open'",
    select="ReferenceNbr,Customer,Date,DueDate,Amount,Balance,Description",
    top=1000
)

Read the full file on GitHub · 152 lines

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. 11d ago First seen · 152 lines · 55 tokens per session scan A ef44ca391206

Subscribe to this mod's changes

ar-health is a skill published in the GitHub repository yourlastnamesoundslikeatypeofpasta/acumatica-mcp-server (0 stars, last pushed 28d ago), licensed MIT. It adds 55 tokens to every session and 1,388 once invoked, about $0.0003 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-09-01.