Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

payroll-reconciliation工资核对

Agent Skill

payroll-reconciliation 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,438

周安装

298

GitHub Stars

公开资料未说明

下载量

2,408
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:payroll-reconciliation(工资核对)
来源仓库:https://github.com/samledger67-dotcom/payroll-reconciliation
安装命令:
openclaw skills install payroll-reconciliation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install payroll-reconciliation

简介

payroll-reconciliation 根据多个薪资提供商报告协调 QuickBooks Online 中的薪资总账账户。

  • 适用于多平台薪资发放后统一核算与对账的需求。
  • 输出标准化 Excel 模板,包含 8 个分类选项卡便于人工复核。
  • 需用户提供各平台报告文件及 QB 登录凭据(仅读取权限)。
  • 结果仅供参考,最终应以实际银行流水为准。

SKILL.md

name
Payroll GL Reconciliation
slug
payroll-reconciliation
version
1.0.0
description
>
tags
negative_boundaries

Payroll GL Reconciliation Skill

What This Skill Does

Reconciles QuickBooks Online payroll GL accounts against payroll provider reports (Gusto, ADP, Paychex) to catch missed journal entries, manual adjustments, and tax filing discrepancies before they become audit findings or payroll tax penalties.

Use when:

  • Closing a period and payroll GL needs to match the payroll register
  • Preparing for 941 filing — verify GL matches what was reported
  • W-2 season — build per-employee annual totals for box verification
  • Client has a new payroll provider — validate initial period's entries
  • Controller flagged unexplained payroll variance in the P&L

Do NOT use when:

  • You need bank statement reconciliation → use bank-reconciliation-agent
  • You need broad P&L variance analysis → use pl-deep-analysis
  • You need payroll tax preparation or filing advice → CPA review required
  • You need multi-entity payroll consolidation (not supported)

Script Location

scripts/pipelines/payroll-reconciliation.py

Quick Usage

# Monthly reconciliation
python3 scripts/pipelines/payroll-reconciliation.py \
  --slug CLIENT_SLUG \
  --month 2026-03 \
  --payroll-file ~/Downloads/gusto-march-2026.csv

# Quarterly 941 reconciliation
python3 scripts/pipelines/payroll-reconciliation.py \
  --slug CLIENT_SLUG \
  --quarter 2026-Q1 \
  --payroll-file ~/Downloads/gusto-q1-2026.csv \
  --form-941-file ~/Downloads/941-q1.csv

# Annual W-2 helper
python3 scripts/pipelines/payroll-reconciliation.py \
  --slug CLIENT_SLUG \
  --year 2026 \
  --payroll-file ~/Downloads/gusto-annual-2026.csv \
  --w2-mode

# Custom date range
python3 scripts/pipelines/payroll-reconciliation.py \
  --slug CLIENT_SLUG \
  --start 2026-01-01 --end 2026-06-30 \
  --payroll-file ~/Downloads/h1-2026.csv

# Provider analysis only (no QBO connection needed)
python3 scripts/pipelines/payroll-reconciliation.py \
  --slug CLIENT_SLUG \
  --month 2026-03 \
  --payroll-file ~/Downloads/adp-report.csv \
  --skip-gl

# Custom output directory
python3 scripts/pipelines/payroll-reconciliation.py \
  --slug CLIENT_SLUG \
  --month 2026-03 \
  --payroll-file ~/Downloads/report.csv \
  --out ~/Desktop/reports

Arguments

ArgumentRequiredDescription
--slugYesClient QBO slug identifier
--payroll-fileYesPath to payroll provider CSV
--monthOne ofYYYY-MM for single month
--quarterOne ofYYYY-Q1 through YYYY-Q4
--yearOne ofFull year (YYYY) for annual/W-2
--start / --endOne ofCustom range (YYYY-MM-DD)
--form-941-fileNoForm 941 CSV for quarterly tax recon
--w2-modeNoEnable full W-2 box verification output
--skip-glNoSkip QBO GL pull — provider analysis only
--sandboxNoUse QBO sandbox environment
--thresholdNoDiscrepancy threshold (default: $1.00)
--outNoOutput directory (default: current dir)

Provider Auto-Detection

The script auto-detects the payroll provider from CSV headers:

ProviderDetection Signature
GustoHeaders contain Check Date + Gross Earnings
ADPHeaders contain Pay Date + Total Gross
PaychexHeaders contain Check Date + Regular Earnings
GenericFallback — best-effort column matching

For unsupported formats, rename CSV columns to match any of the above signatures, or use the Generic fallback with standard column names (Gross, FIT, SIT, etc.).


Reconciliation Categories

The pipeline reconciles 12 payroll categories between GL and provider:

#CategoryGL Keywords941 Line
1Gross Wageswages, salaries, payroll-salariesLine 2
2Federal Income Tax (FIT)federal withholding, fit, federal taxLine 3
3State Income Tax (SIT)state withholding, sit, state tax
4SS Employer (FICA-SS ER)social security employer, ss erLine 5a
5SS Employee (FICA-SS EE)social security employee, ss eeLine 5a
6Medicare Employer (FICA-Med ER)medicare employer, med erLine 5c
7Medicare Employee (FICA-Med EE)medicare employee, med eeLine 5c
8FUTA / SUTAfuta, suta, unemployment tax
9Health Insurancehealth insurance, medical, dentalW-2 Box 12C
10401k / Retirement401k, retirement, pensionW-2 Box 12D
11Workers Compensationworkers comp, wc premium
12PTO Accrualpto, vacation accrual, leave accrual

Discrepancy threshold: ±$1.00 per category (configurable via --threshold).


Excel Output (8 Tabs)

Tab 1: Reconciliation Summary

  • All 12 categories: GL amount vs provider amount vs difference
  • MATCH / DISCREPANCY status per category
  • Net difference and overall balance status
  • Auto-suggested action for each discrepancy

Tab 2: Category Detail

  • GL transactions filtered and grouped by category
  • Running total per category
  • Full memo, account, and transaction type

Tab 3: ⚠ Discrepancies

Three sections:

  1. Category discrepancies — GL vs provider gaps with priority and action
  2. Missed journal entries — payroll checks with no GL match
  3. Manual GL adjustments — GL journal entries with no provider match

Tab 4: Quarterly 941

  • Compares provider totals to Form 941 line items
  • Line 2 (wages), Line 3 (FIT), Lines 5a/5c (FICA), Line 6 (total taxes)
  • Works with or without Form 941 upload (shows provider-only when no form)

Tab 5: W-2 Helper

  • Annual totals per employee in W-2 box format:

- Box 1 (wages), Box 2 (FIT), Box 3/4 (SS), Box 5/6 (Medicare) - Box 12D (401k), Box 12C (health), Box 16/17 (state)

  • Grand totals row for easy cross-check against W-3

Tab 6: Headcount

  • Active employee count per month
  • New hire names and termination names per period
  • Net headcount change month-over-month

Tab 7: Per-Employee Cost

  • Total employer cost per employee (wages + all taxes + benefits)
  • Effective tax rate and total cost/wage ratio
  • Sorted by highest total cost

Tab 8: CDC Log

  • Month-over-month changes in payroll cost by category
  • New hire / termination events
  • Discrepancy count changes (new or resolved)
  • Flags material swings ≥10%

Output File Naming

payroll-recon_{slug}_{period}.xlsx

Examples:

  • payroll-recon_sb-paulson_2026-03.xlsx
  • payroll-recon_willo-salons_2026-Q1.xlsx
  • payroll-recon_glowlabs_2026.xlsx

Dependencies

pip install openpyxl

Node.js QBO client (auth token required for GL pull).


CDC Cache

Change data is persisted at:

.cache/payroll-reconciliation/{slug}.json

Keeps last 24 periods. Delete to reset baseline.


Workflow: Monthly Close Integration

This pipeline integrates with the Month-End Close checklist (scripts/pipelines/month-end-close.py). Run sequence:

  1. Get payroll provider report (CSV export from Gusto/ADP/Paychex)
  2. Run payroll-reconciliation.py for the closed month
  3. Review Tab 3 (Discrepancies) — post any missed JEs before closing
  4. File Form 941 (quarterly) — use Tab 4 to verify GL matches before filing
  5. W-2 season (January) — run with --year + --w2-mode for Box verification

Form 941 CSV Format

If providing a 941 CSV (--form-941-file), the pipeline expects columns:

line, amount

Example rows:

Line 2 - Total wages,  125000.00
Line 3 - Federal income tax withheld,  18750.00
Line 5a - Social security wages,  15500.00
Line 5c - Medicare wages,  3625.00
Line 6 - Total taxes,  37875.00

Column names are matched case-insensitively. Extra columns are ignored.


Common Issues

"QBO CLI error (exit 1)" → Refresh the QBO auth token for this client slug.

"Payroll file not found" → Verify the path in --payroll-file. Use absolute path if needed.

"Provider detected: Generic" → Column headers didn't match Gusto/ADP/Paychex signatures. Results are best-effort. → Rename columns or use the Generic field names listed in the parser section.

All categories show $0 for GL → GL pull succeeded but no accounts matched payroll keywords. → Check QBO account names — they may use custom names. Add keywords to PAYROLL_ACCOUNT_KEYWORDS.

Discrepancy threshold too sensitive → Use --threshold 5.00 to allow up to $5 variance (useful for rounding-heavy providers).


Architecture Notes

  • All financial math uses Decimal — no float arithmetic anywhere.
  • Provider detection is header-based — no reliance on file naming conventions.
  • GL categorization is keyword-based — matches account name + memo combined.
  • Missed JE detection matches net pay amounts within ±$1 threshold.
  • Manual adjustment detection flags GL journal entries with no provider counterpart.
  • CDC is cumulative — each run appends to the slug's JSON cache file.
  • W-2 Box 1 = gross wages minus pre-tax deductions (401k + Section 125 health).
  • W-2 Box 3/5 = gross wages (simplified — doesn't cap SS wage base per check).

For exact SS wage base cap ($176,100 in 2026), verify high-earner employees manually.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.32%
按下载量换算2,223

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills