payroll-audit-report

payroll-audit-report is a skill for Claude Code, Codex from check-technologies/mcp-server-check. It costs 80 tokens per session (1,857 once invoked), scanned A, original, MIT.

A payroll audit report generator that reviews a company's payrolls over a chosen date range. Payroll is the process of paying workers and recording their earnings, taxes, and deductions.

In plain words
What is it for?
Summarizing payrolls, checking earnings, taxes, and deductions, and finding period-to-period swings or missing employees during an audit.
Why use it?
It gathers payroll totals by pay period and points out unusual changes or missing workers, reducing the need to compare payroll records manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: model in frontmatter; positional $N argument.

Good fit Summarizing payrolls, checking earnings, taxes, and deductions, and finding period-to-period swings or missing employees during an audit.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/check-technologies/mcp-server-check/payroll-audit-report
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 check-technologies/mcp-server-check --skill payroll-audit-report
Clone the repo
git clone --depth 1 https://github.com/check-technologies/mcp-server-check

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 payroll-audit-report

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/check-technologies/mcp-server-check/payroll-audit-report"><img src="https://agentmods.dev/badge/skills/check-technologies/mcp-server-check/payroll-audit-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,857 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 3
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
How audits are shown
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.00080 $0.01857
Opus 5 $0.00040 $0.00928
Sonnet 5 $0.00016 $0.00371
Haiku 4.5 $0.00008 $0.00186

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

Security

Grade A, and why

payroll-audit-report 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 10d 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.

example-skills/payroll-audit-report/SKILL.md · 207 lines

How it starts

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

Payroll Audit Report

This skill generates a structured audit report for a company's payrolls over a specified date range. It pulls payroll data, aggregates totals per pay period, and flags anomalies that may warrant investigation.

Prerequisites

Collect two things from the user:

  1. A Check company ID (looks like com_XXXXXXXXXXXXXXXXXX). Ask for it if not provided.
  2. A date range — start and end dates for the audit window (e.g., "Q1 2025" or "2025-01-01 to 2025-03-31"). If no range is given, default to the last 3 months and confirm with the user.

Step 1: Gather Company Context

Pull the company details for context:

run_tool: get_company { "company_id": "<company_id>" }

Note the company name for the report header.

Step 2: Pull Payrolls in the Date Range

Fetch all payrolls whose payday falls within the audit window:

run_tool: list_payrolls {
  "company": "<company_id>",
  "payday_after": "YYYY-MM-DD",
  "payday_before": "YYYY-MM-DD",
  "limit": 100
}

Convert the user's date range to YYYY-MM-DD format:

  • payday_after — the start of the range (inclusive)
  • payday_before — the end of the range (inclusive)

If there are more results than the limit, paginate using the cursor parameter until all payrolls are fetched.

Tell the user how many payrolls were found before proceeding:

Found 6 payrolls for Acme Corp between 2025-01-01 and 2025-03-31.
Fetching details for each payroll...

If no payrolls are found, inform the user and stop.

Step 3: Fetch Payroll Details

For each payroll, use the composite tool to get items and contractor payments in one call:

run_tool: get_payroll_details {
  "payroll_id": "<payroll_id>",
  "include_items": true,
  "include_contractor_payments": true,
  "item_limit": 50
}

For payrolls with more than 50 items, note this limitation to the user. Most payrolls will be well under this limit.

Give progress updates for large sets (e.g., "Fetched 3/6 payrolls...").

Step 4: Pull Worker Headcounts for Cross-Reference

Read the full file on GitHub · 207 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. 10d ago First seen · 207 lines · 80 tokens per session scan A b9f14bb06283

Subscribe to this mod's changes

payroll-audit-report is a skill published in the GitHub repository check-technologies/mcp-server-check (18 stars, last pushed 5d ago), licensed MIT. It adds 80 tokens to every session and 1,857 once invoked, about $0.0004 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.

Related

Other skills, from other repositories