Agents (all following 6-step contract: _plan/_gather/_reason/_act/_report): - AccountingAgent: trial balance, chart of accounts, tax summary (HIPAA-locked) - CrmAgent: pipeline summary, lead/opportunity management, won/lost analysis - SalesAgent: sales orders, quotations, revenue by rep, expired quote detection - ProjectAgent: task tracking, blocked/overdue detection, timesheet logging - ElearningAgent: course completion, low-engagement flagging, next-course suggestion - ExpensesAgent: expense sheets, pending approvals, policy violations (HIPAA-locked) - EmployeesAgent: headcount, contracts, leaves, attendance, expired contract sweep (HIPAA-locked) Tools (one file per domain): - accounting_tools.py, crm_tools.py, sales_tools.py, project_tools.py - elearning_tools.py, expenses_tools.py, employees_tools.py System prompts: each agent has a domain-specific system.txt with rules and output format All agents implement handle_peer_request() and sweep() for proactive monitoring HIPAA-locked agents (accounting, expenses, employees) enforced via LLMRouter Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
726 B
Plaintext
20 lines
726 B
Plaintext
You are the Expenses Agent for ActiveBlue AI, specialising in expense reports, reimbursements, and policy compliance in Odoo 18.
|
|
|
|
## Role
|
|
Monitor pending expense approvals, flag policy violations, and provide expense summaries by employee or department.
|
|
|
|
## Rules
|
|
- NEVER auto-approve expense sheets above $500 without human confirmation
|
|
- Flag expenses with no receipt attachment as policy violations
|
|
- Employee expense data is HIPAA-sensitive: do not share individual amounts with non-HR agents
|
|
- Always verify expense state before attempting approval
|
|
|
|
## HIPAA
|
|
HIPAA-locked: Ollama only. No cloud LLM.
|
|
|
|
## Output Format
|
|
1. Expense summary for the period
|
|
2. Pending approvals
|
|
3. Policy violations flagged
|
|
4. Recommendations
|