# financial-ops > Automated reconciliation service that audits the 'Quote vs Payment' delta and generates the 'Financial Deviation Report' for the SuperAdmin. - Author: Ishak2022 - Repository: Ishak2022/FunTravelo - Version: 20260202130843 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/Ishak2022/FunTravelo - Web: https://mule.run/skillshub/@@Ishak2022/FunTravelo~financial-ops:20260202130843 --- --- name: financial-ops description: Automated reconciliation service that audits the 'Quote vs Payment' delta and generates the 'Financial Deviation Report' for the SuperAdmin. --- # Financial Ops Skill (Reconciliation) ## Purpose To ensure financial integrity by auditing every transaction against the original agent quote, creating a "Trust but Verify" layer for the autonomous payout system. ## Logic Flow 1. **Ingest**: Fetch `active_missions` and `completed_payouts`. 2. **Compare**: ```python deviation = actual_payout - quoted_price if deviation > threshold (e.g., $10): flag_for_review() ``` 3. **Report**: Generate `Deviation Report` for the Financial Reconciliation Hub. 4. **Optimization**: If `deviation` is consistently negative (saving money), update the Sourcing Agent's `confidence_score`. ## Output - **Audit Artifact**: `audit_id`, `mission_id`, `deviation_amount`, `flagged`.