Antom reconciliation expert Skill
Antom reconciliation expert Skill is a locally-run AI reconciliation assistant that can parse Settlement details reports (.csv/.xlsx format) from Antom Dashboard into structured data, automatically performing settlement amount verification, cost breakdown, and reconciliation knowledge Q&A.
Notes:
- Data security: The Skill runs entirely locally. All report parsing and verification logic is completed on your computer. Report data is not uploaded to any external servers. Knowledge base rules are loaded dynamically via CDN and do not involve your business data.
- Data localization: Place report files in a local directory. The Skill does not upload any sensitive fields.
- Overwrite upgrade: Simply overwrite the original directory during reinstallation; there's no need to manually uninstall the old version, as the new version will automatically replace it.
- Conclusion review: It is recommended that the conclusions from amount verification and discrepancy analysis be subjected to a final review by financial personnel in conjunction with the specific business context.
- Supported document types: This Skill currently only supports Settlement details reports. The filename must contain both SETTLEMENT and DETAIL, and the format must be .csv or .xlsx. It currently does not support processing Transaction details reports or Settlement summary reports.
Core capability
The reconciliation Skill supports the following capabilities:
Capability | Description |
Settlement amount verification | Verify each transaction to check the net settlement amounts (transaction amounts − fees) matches the report, quickly locating transaction records with discrepancies. |
Fee breakdown & analysis | View the summary of fees (e.g., processing fees, exchange rate fees, refund fees), categorizable by transaction type or payment method. |
Abnormal transaction identification | Automatically locates abnormal transactions, such as amount mismatches, missing fields, and duplicate reconciliation records. |
Reconciliation knowledge Q&A | Built-in knowledge base of Antom report fields, billing modes, and settlement cycle, allowing you to ask direct reconciliation-related questions without uploading files. |
Local privacy protection | All data processing occurs locally on your device, and sensitive report information is not uploaded to any external server. |
Installation steps
Choose one of the following ways to complete the installation.
Conversational installation with Agent
This method allows AI tools to install the Skill according to the command. Enter the following command on the AI tool page and press Enter to execute.
Install skill, address:https://github.com/ant-intl/antom-ai-tools/tree/main/skills/antom-reconciliation-expertThe following is an example of the AI tool installation process through conversations:
|
|
Command line installation
Steps for different operating systems are as follows:
macOS
Open Terminal (open Launchpad > search for "Terminal"), copy the entire command below and paste it into the terminal's input box, and press Enter to execute.
- Method 1: Copy the entire command below, paste it into the terminal's input box, and press Enter to execute.
mkdir -p ~/.claude/skills && rm -rf ~/.claude/skills/antom-reconciliation-expert && mkdir ~/.claude/skills/antom-reconciliation-expert && curl -sL https://github.com/ant-intl/antom-ai-tools/archive/main.tar.gz | tar xz --strip-components=3 -C ~/.claude/skills/antom-reconciliation-expert antom-ai-tools-main/skills/antom-reconciliation-expert && echo 'SUCCESS: antom-reconciliation-expert install succeeded' || echo 'FAILED: Installation failed. Please check your network and try again.'- Method 2: Enter the command on the Agent page and press Enter to execute. Note that the Agent must be restarted after the Skill is installed.
/plugin marketplace add ant-intl/antom-ai-tools
/plugin install antom-reconciliation-expert@antom
Windows
Run PowerShell (not CMD) as administrator, copy the entire command below and paste it into the PowerShell's input box, and press Enter to execute.
$ProgressPreference='SilentlyContinue';
mkdir -Force "$env:USERPROFILE\.claude\skills" | Out-Null;
Remove-Item -Recurse -Force "$env:USERPROFILE\.claude\skills\antom-reconciliation-expert" -ErrorAction SilentlyContinue;
mkdir "$env:USERPROFILE\.claude\skills\antom-reconciliation-expert" | Out-Null;
Invoke-WebRequest -UseBasicParsing 'https://github.com/ant-intl/antom-ai-tools/archive/main.zip' -OutFile "$env:TEMP\antom.zip";
Expand-Archive "$env:TEMP\antom.zip" "$env:TEMP\antom-extract" -Force;
Copy-Item "$env:TEMP\antom-extract\antom-ai-tools-main\skills\antom-reconciliation-expert\*" "$env:USERPROFILE\.claude\skills\antom-reconciliation-expert" -Recurse;
Remove-Item "$env:TEMP\antom.zip","$env:TEMP\antom-extract" -Recurse -Force;
Write-Host 'SUCCESS: antom-reconciliation-expert install succeeded' -ForegroundColor Green;Manual installation
Follow the page prompts to operate without any command line. The installation step is as follows:
- Download the code package: Open the browser and visit GitHub > Click Code > Download ZIP.

- Unzip and locate: After unzipping, go to the antom-ai-tools-main/skills/ folder, and find the antom-reconciliation-expert folder.

- Place the folder in the installation directory: see the following table for the example steps.
Operating system | Example steps (using Claude Code as an example) |
macOS |
|
Windows |
|
After the operation is complete, the directory structure should be as follows:
~/.claude/skills/antom-reconciliation-expert/
├── SKILL.md
└── scripts/Note: ~/ represents your user directory. The differences between different operating systems are as follows:
- macOS: /Users/#your username#/
- Windows: C:/Users/#your username#/
Installation verification
You can verify the installation in the following ways:
- Open the AI tool (using Claude Code, Hermes, or OpenClaw).
- Enter /skills in the input box and press Enter to execute.
- When antom-reconciliation-expert appears in the list, the installation is successful.
- If the above text does not appear in the list, you can check in the following order:
- Check if the directory is ~/.claude/skills/antom-reconciliation-expert/.
- Check whether the directory directly contains the SKILL.md and scripts/ folders.
- Completely exit the AI tool (not just close the window), and reopen it.
Usage examples
Describe your requirements using natural language. See the following examples:
Scenario | Description |
Daily settlement amount verification | Help me verify yesterday's settlement report: ~/Downloads/SETTLEMENT_DETAIL_20260527.xlsx, and check whether the net settlement amounts (transaction amounts − fees) matches the report. |
Fee breakdown & analysis | Analyze the proportion of fees aggregated by payment method in ~/Downloads/SETTLEMENT_DETAIL_20260527.xlsx, and highlight transactions with fees exceeding 3%. |
Discrepancies investigation | Help me verify whether the amount in this settlement report is correct, and analyze possible reasons if there are discrepancies. |
Reconciliation knowledge Q&A | What are the differences between IC++ and Blended Rate billing models? What is the interchangeFee in my report? |
Common questions
Q: Why can't I see antom-reconciliation-expert in the /skills list?
A: The directories under different agents may vary. Taking Claude Code as an example, check in the following order:
- Check whether the /skills folder in the agent user-level directory contains the antom-reconciliation-expert folder and that the contents inside are correct.
- Make sure there is no extra folder. False example: ~/.claude/skills/antom-reconciliation-expert/antom-reconciliation-expert/.
- Completely exit the AI tool (not just close the window), and reopen it.
Q: What should I do when Windows prompts "Access denied" or fails to create a .claude folder?
A: Use one of the following methods to handle it:
- Press "Win+X", open Windows Terminal or Windows PowerShell as an administrator, and try again.
- Manually create the .claude and skills folders in File Explorer before executing the copy command.
Q: Why is the filename correct but the filename in the report not being parsed?
A: Check whether the report contains the following issues:
- Make sure the filename contains both SETTLEMENT and DETAIL (case-insensitive), and is in .csv or .xlsx format.
- Confirm that the file content includes core settlement columns (such as settlementAmountValue, interchangeFee, etc.) and that the file is not corrupted.
- If the problem persists, try exporting the report file again from the merchant portal. Refer to Reports for information on how to export reports.

