Skip to main content

Chapter 32: Banking-Specific AI

📚 Teaching Aid

"A bank's balance sheet is not an accounting artefact. It is a regulatory instrument: shaped simultaneously by IFRS 9 provisioning, Basel III capital floors, and AML surveillance obligations. The banking practitioner who can operate across all three pillars commands a career advantage that no single-domain specialist can match. The AI agent that can do the same becomes a Digital FTE worth deploying."

Chapter 31 built jurisdiction-aware agents for Islamic finance: routing the same transaction through different accounting frameworks by country. This chapter confronts a different kind of complexity: pillar complexity. In banking, a single loan portfolio is governed simultaneously by three regulatory pillars: solvency (Basel III/IV), accounting (IFRS 9), and financial crime (AML/KYC): each with its own models, thresholds, reporting cycles, and regulatory bodies. A credit risk agent that ignores capital adequacy produces incomplete output. An AML agent that ignores IFRS 9 staging misses the provisioning impact of suspicious transactions. This chapter builds the agents that work across all three pillars.

The architectural contribution extends Chapter 31's router-product-overlay pattern into a pillar-aware routing architecture where the banking plugin's 17 skills span solvency, accounting, and financial crime: and the router determines which pillar (or combination of pillars) a query requires before loading the correct skill chain.

What You'll Learn

By the end of this chapter, you will be able to:

  • Explain the three regulatory pillars of modern banking (Solvency/Basel, Accounting/IFRS 9, Financial Crime/AML) and why they must be addressed simultaneously rather than in isolation
  • Deploy the banking plugin's 17-skill architecture and trace queries through the pillar-aware routing system
  • Build IFRS 9 expected credit loss models: staging criteria, PD/LGD/EAD estimation, macroeconomic scenario overlays, and post-model adjustments
  • Calculate Basel III/IV capital adequacy ratios: CET1, Tier 1, Total Capital, risk-weighted assets, output floors, leverage ratio, and liquidity ratios (LCR/NSFR)
  • Design AML/KYC surveillance systems: the three lines of defence, transaction monitoring rule evolution to ML, SAR filing, and tipping-off prohibitions
  • Execute bank reconciliation across nostro, suspense, GL-to-risk-system, and four-way provision reconciliation using AI automation
  • Complete 18 exercises (22+ hours of practice) spanning all three pillars and reconciliation

Lesson Flow

LessonTitleDurationWhat You'll Walk Away With
L01The Three Regulatory Pillars of Modern Banking20 minThe three-pillar framework, why they interact, and why single-pillar agents fail
L02The Banking Plugin Architecture: 17 Skills, Three Pillars25 minPlugin installation, skill routing anatomy, pillar-aware architecture
L03IFRS 9 Expected Credit Loss: Staging and the ECL Formula40 minStage 1/2/3 criteria, the ECL = PD x LGD x EAD formula, lifetime vs 12-month ECL
L04PD, LGD, and EAD: Building the ECL Components45 minPoint-in-time PD, downturn LGD, EAD with CCFs, Exercise 1: Retail mortgage ECL
L05Macroeconomic Scenarios and Post-Model Adjustments40 minProbability-weighted scenarios, management overlays, Exercise 2: Commercial portfolio overlay
L06Basel III/IV Capital Adequacy: CET1, Tier 1, Total Capital45 minCapital stack, deductions, CET1 ratio calculation, Exercise 3: Bank capital ratio
L07Risk-Weighted Assets: SA and IRB Approaches50 minStandardised risk weights, IRB formula, output floor, Exercise 4: RWA comparison
L08Leverage Ratio, LCR, and NSFR35 minLeverage ratio, HQLA, LCR calculation, NSFR, Exercise 5: Liquidity stress test
L09AML/KYC: The Three Lines of Defence35 minCDD/EDD, three lines model, PEP screening, Exercise 6: Customer onboarding risk
L10Transaction Monitoring, ML Evolution, and SAR Filing40 minRule-based to ML TM, SAR workflow, tipping-off, Exercise 7: TM alert investigation
L11Cross-Pillar Integration: When IFRS 9, Basel, and AML Collide45 minFraud-triggered stage migration, capital impact of ECL spike (worked examples)
L12Exercises: IFRS 9 Deep Practice60 minExercise 8: Full portfolio ECL, Exercise 9: GCC corporate ECL model
L13Exercises: Basel and AML Deep Practice55 minExercise 10-11: Capital ratio + ICAAP stress, Exercise 12-13: AML alert + sanctions screening
L14Bank Reconciliation: Nostro, Suspense, and GL-to-Risk45 minExercise 14: Nostro recon, Exercise 15: Provision recon, Exercise 16: Suspense clearance
L15Full Banking Agent: Skill Library Build and Capstone90 minFull 17-skill library deployment, cross-pillar capstone scenario, documentation

Chapter Contract

By the end of this chapter, you should be able to answer these five questions:

  1. What are the three regulatory pillars of modern banking, and why does a single loan portfolio require simultaneous treatment under all three?
  2. How does the pillar-aware routing architecture determine which skills to load when a query spans IFRS 9 and Basel simultaneously?
  3. How does IFRS 9 ECL staging interact with Basel III capital adequacy: specifically, how does a Stage 2 migration affect both the provision charge and the CET1 ratio?
  4. What are the three lines of defence in AML/KYC, and where does the boundary lie between AI-automatable transaction monitoring and human-required SAR filing decisions?
  5. How does four-way provision reconciliation (GL provision, risk system provision, regulatory return, IFRS 9 model output) ensure data integrity across a bank's systems?

Prerequisites: Cowork Access

This chapter requires Cowork (set up in Chapter 28) and the Banking plugin.

  1. Install the Banking plugin. In the Cowork sidebar: CustomizeBrowse pluginsPersonal → click +Add marketplace from GitHub → enter https://github.com/panaversity/agentfactory-business-plugins → find Banking → click Install.
  2. Connect a working folder for practice files, same as Chapter 28.

After Chapter 32

When you finish this chapter, your perspective shifts:

  1. You see banking regulation as three interlocking systems, not separate silos. The three-pillar mental model (solvency, accounting, financial crime) changes how you approach any banking question. You ask "which pillars does this touch?" before answering.
  2. You have a working 17-skill plugin. The IFRS 9, Basel, AML, and reconciliation skills are installed, tested, and deployable. The router handles pillar detection and skill chaining automatically.
  3. You understand the boundaries. The agent calculates ECL, computes capital ratios, flags suspicious transactions, and automates reconciliation. It does not make credit approval decisions, determine regulatory capital buffers, or file SARs. These boundaries are encoded in every skill file.
  4. You can extend. The pillar-aware routing pattern transfers to any domain with multiple simultaneous regulatory frameworks: insurance (Solvency II + IFRS 17 + conduct), asset management (UCITS + MiFID + AML), healthcare (clinical + billing + compliance).

Start with Lesson 1: The Three Regulatory Pillars of Modern Banking.