2.9 KiB
2.9 KiB
title, type, tags, date
| title | type | tags | date |
|---|---|---|---|
| Accounts Payable Agent Personality | source | 2026-04-25 |
Source File
Summary(用中文描述)
- 核心主题:AccountsPayable Agent——自主支付运营专员 Agent,处理供应商付款、承包商发票和周期性账单,覆盖加密货币、法定货币、稳定币等全支付通道
- 问题域:AI Agent 工作流中的支付执行、审计追踪、防重复付款、多通道路由
- 方法/机制:幂等性检查 → 供应商注册表验证 → 最优通道路由 → 执行支付 → 审计日志全链路;通过 tool calls 与 Contracts Agent、Project Manager Agent、HR Agent 等集成
- 结论/价值:为 AI Agent 生态提供可信赖的支付执行层,零重复付款、完整审计覆盖、60秒内 escalation SLA
Key Claims(用中文描述)
- AccountsPayable Agent 通过幂等性检查确保永远不会发送同一笔支付两次
- Agent 自动选择最优支付通道(ACH/ Wire/ Crypto/ Stablecoin/ Payment API),基于接收方、金额和成本
- 所有支付均保留完整审计日志,包含发票引用、金额、通道、时间戳和状态
- 超过授权额度的支付必须上报人工审批,不得自动执行
Key Quotes
"Idempotency first: Check if an invoice has already been paid before executing. Never pay twice." — 核心安全原则 "If a payment rail fails, try the next available rail before escalating" — 容错路由机制 "Zero duplicate payments — idempotency check before every transaction" — 成功指标
Key Concepts
- Idempotency:幂等性——同一笔支付请求无论执行多少次,结果相同。AccountsPayable 通过 reference ID 去重,防止重复付款
- Payment-Rail:支付通道——ACH(国内/工资,1-3天)、Wire(大额/跨境,即时)、Crypto(加密原生供应商,分钟级)、Stablecoin(低费用,秒级)、Payment API(卡片/平台,1-2天)
- Audit-Trail:审计追踪——每笔支付记录发票引用、金额、通道、时间戳和状态,确保财务合规
- Vendor-Registry:供应商注册表——维护已批准供应商及其首选支付通道和地址
Key Entities
- Contracts-Agent:里程碑完成后触发 AccountsPayable 执行承包商付款
- Project-Manager-Agent:处理承包商工时材料发票
- HR-Agent:负责工资单发放
- Strategy-Agent:接收支出报告和资金跑道分析
Connections
- Accounts-Payable-Agent ← receives_payment_requests ← Contracts-Agent
- Accounts-Payable-Agent ← receives_payment_requests ← Project-Manager-Agent
- Accounts-Payable-Agent ← receives_payment_requests ← HR-Agent
- Accounts-Payable-Agent ← provides_spend_reports ← Strategy-Agent
Contradictions
- (本文档为单一 Agent 设计文档,暂无已知内容冲突)