AI Skill Report Card

Generated Skill

B-70·Jan 24, 2026
YAML
--- name: optimizing-expense-intelligence description: Analyzes expense data using AI to identify anomalies, duplicates, and savings opportunities. Creates vendor rationalization plans with ROI projections. Use when analyzing corporate expenses, auditing spending patterns, or seeking cost optimization opportunities. ---

Optimizing Expense Intelligence

Python
# Core expense analysis framework expense_analysis = { 'anomaly_detection': ['unusual_amounts', 'timing_outliers', 'category_mismatches'], 'duplicate_scanning': ['vendor_matching', 'amount_clustering', 'date_proximity'], 'consolidation_mapping': ['vendor_overlap', 'contract_redundancy', 'volume_leverage'], 'benchmarking': ['market_rates', 'peer_comparison', 'historical_trends'], 'roi_calculation': ['current_spend', 'projected_savings', 'implementation_cost'] }
Recommendation
Consider adding more specific examples

Progress:

  • Data ingestion and cleansing (AP, credit cards, contracts)
  • Anomaly detection across transactions
  • Duplicate payment identification
  • Vendor consolidation analysis
  • Market rate benchmarking
  • Policy gap assessment
  • ROI calculation and prioritization
  • Recommendations packaging with implementation timeline

Step 1: Expense Data Analysis

  • Import all expense streams (AP, P-cards, contracts, reimbursements)
  • Apply statistical outlier detection (Z-score >2.5 or IQR method)
  • Flag transactions exceeding category averages by 200%+

Step 2: Duplicate Detection

  • Match vendors by fuzzy string matching (85%+ similarity)
  • Cluster identical amounts within 48-hour windows
  • Cross-reference invoice numbers and PO references

Step 3: Consolidation Opportunities

  • Map vendor categories and identify overlapping services
  • Calculate volume leverage potential (spend >$50K annually)
  • Assess contract terms and renewal dates for timing

Step 4: Benchmarking & Savings Identification

  • Compare rates against industry benchmarks (20th percentile target)
  • Identify policy violations and maverick spend
  • Calculate category-specific savings potential

Step 5: ROI-Prioritized Recommendations

  • Rank opportunities by savings amount and implementation ease
  • Create vendor rationalization roadmap with timelines
  • Develop revised expense policies with approval thresholds
Recommendation
Include edge cases

Example 1: Anomaly Detection Input: Monthly software subscription expenses ranging $200-500, one transaction shows $5,000 Output:

  • Flag: "Software subscription anomaly - 10x normal amount"
  • Investigation: "Verify if annual payment vs monthly, or duplicate charge"
  • Potential saving: "$4,500 if duplicate/error"

Example 2: Vendor Consolidation Input: 15 different office supply vendors, total annual spend $180K Output:

  • Consolidation plan: "Reduce to 2 primary vendors + 1 specialty"
  • Volume leverage: "12% discount achievable with consolidated $150K spend"
  • Projected savings: "$21,600 annually"
  • Implementation: "Q1 contract renegotiation, 90-day transition"

Example 3: Policy Optimization Input: Current approval threshold $1,000, 40% of transactions are $990-$999 Output:

  • Pattern identified: "Threshold gaming - split purchases to avoid approval"
  • Policy recommendation: "Lower threshold to $500, implement cumulative monthly limits"
  • Control improvement: "85% reduction in policy circumvention"
  • Data Quality First: Clean vendor names (standardize "IBM Corp", "IBM Corporation", "International Business Machines")
  • Statistical Rigor: Use multiple anomaly detection methods, not just simple thresholds
  • Contextual Analysis: Consider seasonality, business cycles, and one-time events
  • Actionable Sizing: Focus on opportunities >$10K annual impact for enterprise clients
  • Change Management: Include implementation complexity in ROI calculations
  • Continuous Monitoring: Set up automated alerts for ongoing anomaly detection
  • False Positives: Don't flag legitimate seasonal spikes or known one-time expenses
  • Over-Consolidation: Maintain backup vendors for critical categories to avoid single points of failure
  • Ignoring Implementation Costs: Factor in system changes, training, and transition periods
  • Generic Benchmarking: Use industry-specific and company-size-appropriate comparisons
  • Policy Over-Engineering: Keep expense policies simple and enforceable
  • ROI Over-Promising: Include realistic adoption rates (typically 60-80% of theoretical maximum)
0
Grade B-AI Skill Framework
Scorecard
Criteria Breakdown
Quick Start
11/15
Workflow
11/15
Examples
15/20
Completeness
15/20
Format
11/15
Conciseness
11/15