Skip to main content

Industry Modules Guide

FAOS provides 21 industry-specific modules, each containing specialized agents with domain knowledge, regulatory awareness, and industry best practices built in.

What Are Industry Modules?​

An industry module is a pre-configured collection of:

  • Specialist agents with domain expertise
  • Industry ontology defining concepts, relationships, and terminology
  • Regulatory frameworks for compliance-aware operations
  • Workflow templates for common industry processes

Module Architecture​

Industry Module
β”œβ”€β”€ Agents (specialist roles)
β”œβ”€β”€ Ontology (domain knowledge graph)
β”œβ”€β”€ Regulations (compliance rules)
└── Workflows (process templates)

Financial Services​

Banking (bank)​

38 specialist agents covering retail banking, commercial lending, treasury, and compliance.

Key agents:

  • bank credit-analyst -- Credit risk evaluation and loan underwriting
  • bank compliance-officer -- BSA/AML screening and regulatory compliance
  • bank risk-manager -- Portfolio risk assessment and stress testing
  • bank loan-officer -- Loan processing and underwriting decisions

Regulatory frameworks: BSA/AML, SOX, Basel III, FDIC/OCC, KYC

response = await client.shortcut("bank credit-analyst")

See the Banking Tutorial for a hands-on walkthrough.

Investment Management (invest)​

Agents for portfolio management, market analysis, and fund operations.

Key agents:

  • invest portfolio-manager -- Portfolio construction and rebalancing
  • invest research-analyst -- Equity and fixed income research
  • invest risk-analyst -- Investment risk and VaR analysis

Insurance (insurance)​

Agents for underwriting, claims, actuarial analysis, and policy management.

Key agents:

  • insurance underwriter -- Risk assessment and policy pricing
  • insurance claims-adjuster -- Claims evaluation and settlement
  • insurance actuary -- Statistical modeling and loss projections

FinTech (fintech)​

Agents for digital payments, lending platforms, and financial technology.

Key agents:

  • fintech payment-analyst -- Payment processing and fraud detection
  • fintech compliance-lead -- Digital finance regulatory compliance

Healthcare (health)​

Agents for patient care, clinical operations, and healthcare administration.

Key agents:

  • health patient-intake -- Patient registration and triage
  • health clinical-analyst -- Clinical data analysis and reporting
  • health compliance-officer -- HIPAA compliance and audit

Regulatory frameworks: HIPAA, HITECH, FDA, CMS

response = await client.shortcut("health patient-intake")

Manufacturing & Supply Chain​

Manufacturing (mfg)​

Agents for production planning, quality control, and factory operations.

Key agents:

  • mfg quality-engineer -- Quality assurance and defect analysis
  • mfg production-planner -- Production scheduling and optimization
  • mfg maintenance-engineer -- Predictive maintenance and reliability

Logistics (logistics)​

Agents for supply chain management, transportation, and warehousing.

Key agents:

  • logistics supply-chain-analyst -- Supply chain optimization
  • logistics transport-planner -- Route planning and fleet management

Technology​

Software (software)​

Agents for software development, DevOps, and engineering management.

Key agents:

  • software code-reviewer -- Code review and quality analysis
  • software devrel-lead -- Developer relations and documentation

Systems Integration (si)​

Agents for enterprise integration, migration, and technical consulting.

Gaming (game)​

Agents for game design, development, and production.

EduTech (edutech)​

Agents for educational technology, course design, and learning management.

MarTech (martech)​

Agents for marketing technology, campaign management, and analytics.

Professional Services​

Professional Services (profserv)​

Agents for consulting, project management, and client engagement.

Talent & HR (talent)​

Agents for recruitment, HR operations, and talent management.

Key agents:

  • talent recruiter -- Technical recruiting and candidate sourcing
  • talent hr-analyst -- HR analytics and workforce planning

Other Industries​

ModuleShortcutDescription
AutomotiveautoVehicle manufacturing, ADAS, dealer operations
AviationaviationAirline operations, maintenance, safety
AgricultureagriFarm management, crop planning, supply chain
AgriTechagritechPrecision agriculture, IoT, data analytics
Travel & HospitalitytravelHotel management, booking, tourism
RetailretailStore operations, merchandising, e-commerce
PropTechproptechReal estate technology, property management

Discovering Agents​

List All Agents in a Module​

shortcuts = await client.shortcuts.list(module="faos-bank")
for s in shortcuts:
print(f"{s.pattern}: {s.description}")

Search Across Modules​

results = await client.shortcuts.list(search="compliance")
# Returns compliance agents across all modules

Resolve Agent Details​

info = await client.shortcuts.resolve("bank credit-analyst")
print(f"Agent: {info.agent_name}")
print(f"Module: {info.module_name}")
print(f"Capabilities: {info.capabilities}")

Next Steps​