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 underwritingbank compliance-officer-- BSA/AML screening and regulatory compliancebank risk-manager-- Portfolio risk assessment and stress testingbank 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 rebalancinginvest research-analyst-- Equity and fixed income researchinvest 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 pricinginsurance claims-adjuster-- Claims evaluation and settlementinsurance 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 detectionfintech 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 triagehealth clinical-analyst-- Clinical data analysis and reportinghealth 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 analysismfg production-planner-- Production scheduling and optimizationmfg maintenance-engineer-- Predictive maintenance and reliability
Logistics (logistics)β
Agents for supply chain management, transportation, and warehousing.
Key agents:
logistics supply-chain-analyst-- Supply chain optimizationlogistics 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 analysissoftware 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 sourcingtalent hr-analyst-- HR analytics and workforce planning
Other Industriesβ
| Module | Shortcut | Description |
|---|---|---|
| Automotive | auto | Vehicle manufacturing, ADAS, dealer operations |
| Aviation | aviation | Airline operations, maintenance, safety |
| Agriculture | agri | Farm management, crop planning, supply chain |
| AgriTech | agritech | Precision agriculture, IoT, data analytics |
| Travel & Hospitality | travel | Hotel management, booking, tourism |
| Retail | retail | Store operations, merchandising, e-commerce |
| PropTech | proptech | Real 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β
- Shortcut System Guide -- Master the shortcut system
- Banking Tutorial -- Detailed banking module walkthrough
- Industry Ontologies -- Deep dive into domain knowledge
- SDK Reference -- Full API documentation