tax-compliance-verification
π―Skillfrom cleanexpo/ato
Verifies tax compliance by cross-referencing Xero financial data against Australian tax regulations to detect potential non-compliance risks and missed tax optimization opportunities.
Installation
npx skills add https://github.com/cleanexpo/ato --skill tax-compliance-verificationSkill Details
Overview
# π¦πΊ Australian Tax Optimizer [](https://nextjs.org/) [](https://www.typescriptlang.org/) [](https://supabase.com/) [](https://developer.xero.com/) [](https://ai.google.dev/) []() []() []() Recover $200K-$500K in missed tax benefits per client through forensic Xero analysis [Getting Started](#-quick-start) β’ [Documentation](#-documentation) β’ [API Reference](API_DOCUMENTATION.md) β’ [Architecture](#-architecture)
AI-Powered Tax Recovery & Compliance Platform
---
π― What is ATO?
The Australian Tax Optimizer is an AI-powered platform that connects to your Xero accounting data (read-only) and performs forensic analysis to identify:
| Recovery Area | Potential Savings | Legislation |
|--------------|-------------------|-------------|
| π¬ R&D Tax Incentive | Up to 43.5% offset | Division 355 ITAA 1997 |
| π Unclaimed Deductions | Variable | Section 8-1 ITAA 1997 |
| π° Carry-Forward Losses | Tax offset on profits | Subdivision 36-A |
| π¦ Division 7A Compliance | Avoid deemed dividends | Division 7A ITAA 1936 |
| π FBT Optimisation | Reduce FBT liability | FBTAA 1986 |
---
π Architecture
```mermaid
flowchart TB
subgraph Client["π₯οΈ Client Layer"]
UI[Next.js Dashboard]
Reports[PDF/Excel Reports]
end
subgraph API["β‘ API Layer"]
Auth[OAuth 2.0 Auth]
Audit[Audit Endpoints]
Xero[Xero Proxy]
end
subgraph Core["π§ Core Engine"]
AI[Gemini AI Analyzer]
RND[R&D Engine]
DED[Deduction Engine]
LOSS[Loss Engine]
DIV7A[Division 7A Engine]
end
subgraph Agents["π€ Agent Fleet"]
A1[Tax Law Analyst]
A2[Xero Auditor]
A3[R&D Specialist]
A4[Deduction Optimizer]
end
subgraph Data["πΎ Data Layer"]
SB[(Supabase)]
XeroAPI[Xero API]
Cache[Transaction Cache]
end
subgraph Validation["β Validation"]
V1[Tax Calc Validator]
V2[R&D Eligibility]
V3[FY Validator]
end
UI --> Auth
UI --> Audit
Auth --> XeroAPI
Audit --> AI
AI --> RND & DED & LOSS & DIV7A
RND & DED & LOSS & DIV7A --> Agents
Agents --> SB
XeroAPI --> Cache --> SB
AI --> V1 & V2 & V3
Reports --> SB
style AI fill:#4285F4,color:#fff
style SB fill:#3FCF8E,color:#fff
style XeroAPI fill:#13B5EA,color:#fff
```
---