Update nexus wiki content
This commit is contained in:
@@ -6,42 +6,60 @@ date: 2026-04-25
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/agency-agents/specialized/accounts-payable-agent.md]]
|
||||
- [[Agent/agency-agents/specialized/accounts-payable-agent.md]]
|
||||
|
||||
## Summary(用中文描述)
|
||||
- 核心主题:AccountsPayable Agent——自主支付运营专员 Agent,处理供应商付款、承包商发票和周期性账单,覆盖加密货币、法定货币、稳定币等全支付通道
|
||||
- 问题域:AI Agent 工作流中的支付执行、审计追踪、防重复付款、多通道路由
|
||||
- 方法/机制:幂等性检查 → 供应商注册表验证 → 最优通道路由 → 执行支付 → 审计日志全链路;通过 tool calls 与 Contracts Agent、Project Manager Agent、HR Agent 等集成
|
||||
- 结论/价值:为 AI Agent 生态提供可信赖的支付执行层,零重复付款、完整审计覆盖、60秒内 escalation SLA
|
||||
- 核心主题:Accounts Payable Agent 是 The Agency 的自主支付运营专家智能体,专注于供应商付款、承包商发票和周期性账单处理,涵盖加密货币、法币、稳定币全支付通道
|
||||
- 问题域:企业应付账款(AP)自动化、多通道支付路由、支付幂等性、审计合规、支付故障恢复
|
||||
- 方法/机制:
|
||||
- 幂等性检查(Idempotency):付款前查询发票引用号,确保不重复支付
|
||||
- 审批阈值(Approval Threshold):超过授权限额自动上报人工审批
|
||||
- 多通道路由(Payment Rail Routing):根据收款人、金额和成本自动选择最优通道(ACH/Wire/Crypto/Stablecoin/Payment API)
|
||||
- 供应商注册表(Vendor Registry):维护已批准供应商的首选支付通道和收款地址
|
||||
- 审计日志(Audit Trail):每笔支付记录完整上下文(发票号、金额、通道、时间戳、状态)
|
||||
- Agent 间工具调用集成:接收来自 Contracts Agent、Project Manager、HR Agent 的支付请求
|
||||
- 结论/价值:实现企业级支付运营的端到端自动化,零重复支付、100% 审计覆盖、<2 分钟执行时间
|
||||
|
||||
## Key Claims(用中文描述)
|
||||
- AccountsPayable Agent 通过幂等性检查确保永远不会发送同一笔支付两次
|
||||
- Agent 自动选择最优支付通道(ACH/ Wire/ Crypto/ Stablecoin/ Payment API),基于接收方、金额和成本
|
||||
- 所有支付均保留完整审计日志,包含发票引用、金额、通道、时间戳和状态
|
||||
- 超过授权额度的支付必须上报人工审批,不得自动执行
|
||||
- AccountsPayable Agent 通过幂等性检查机制,在每次支付前验证发票是否已付清,实现零重复支付
|
||||
- Agent 根据收款人类型、金额和成本自动选择最优支付通道(ACH/Wire/Crypto/Stablecoin/Payment API),无需人工干预
|
||||
- 超过授权限额的支付请求自动上报人工审批,不执行越权操作
|
||||
- Agent 通过工具调用(Tool Calls)与其他 Agent(Contracts Agent、Project Manager、HR Agent)集成,实现跨 Agent 支付工作流自动化
|
||||
- 每笔支付均生成完整审计日志,包含发票引用、金额、通道、时间戳和状态
|
||||
|
||||
## 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" — 成功指标
|
||||
> "You are **AccountsPayable**, the autonomous payment operations specialist who handles everything from one-time vendor invoices to recurring contractor payments. You treat every dollar with respect, maintain a clean audit trail, and never send a payment without proper verification." — 身份定义
|
||||
|
||||
> "**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." — 支付故障处理策略
|
||||
|
||||
> "Never exceed your authorized limit without explicit human approval." — 权限边界
|
||||
|
||||
## Key Concepts
|
||||
- [[Idempotency]]:幂等性——同一笔支付请求无论执行多少次,结果相同。AccountsPayable 通过 reference ID 去重,防止重复付款
|
||||
- [[Payment-Rail]]:支付通道——ACH(国内/工资,1-3天)、Wire(大额/跨境,即时)、Crypto(加密原生供应商,分钟级)、Stablecoin(低费用,秒级)、Payment API(卡片/平台,1-2天)
|
||||
- [[Audit-Trail]]:审计追踪——每笔支付记录发票引用、金额、通道、时间戳和状态,确保财务合规
|
||||
- [[Vendor-Registry]]:供应商注册表——维护已批准供应商及其首选支付通道和地址
|
||||
- [[Idempotency-Check]]:幂等性检查——在执行支付前,通过发票引用号查询是否已支付,防止重复付款的核心安全机制
|
||||
- [[Audit-Trail]]:审计日志——每笔支付记录完整上下文(发票号、金额、支付通道、时间戳、状态),确保可追溯性
|
||||
- [[Payment-Rail-Routing]]:支付通道路由——根据收款人类型、金额和成本自动选择最优支付通道(ACH/Wire/Crypto/Stablecoin/Payment API)
|
||||
- [[Vendor-Registry]]:供应商注册表——维护已批准供应商的首选支付通道和收款地址,确保支付至正确账户
|
||||
- [[Spend-Limit]]:消费限额——Agent 的自主支付授权上限,超过限额需人工审批
|
||||
- [[Approval-Threshold]]:审批阈值——触发人工审批流程的金额界限
|
||||
|
||||
## Key Entities
|
||||
- [[Contracts-Agent]]:里程碑完成后触发 AccountsPayable 执行承包商付款
|
||||
- [[Project-Manager-Agent]]:处理承包商工时材料发票
|
||||
- [[HR-Agent]]:负责工资单发放
|
||||
- [[Strategy-Agent]]:接收支出报告和资金跑道分析
|
||||
- [[ContractsAgent]]:接收里程碑完成触发信号,执行承包商里程碑支付
|
||||
- [[ProjectManagerAgent]]:发起承包商工时材料发票的支付请求
|
||||
- [[HRAgent]]:处理工资发放的支付请求
|
||||
- [[StrategyAgent]]:接收支出报告和资金跑道分析数据
|
||||
- [[Stripe]]:Payment API 支付通道之一
|
||||
- ACH(Automated Clearing House):美国自动清算支付通道,适合国内供应商和工资发放,结算周期 1-3 天
|
||||
- Wire Transfer:电汇通道,适合大额/国际支付,当日结算
|
||||
- BTC/ETH Crypto:加密货币通道,适合加密原生供应商,数分钟内结算
|
||||
- USDC/USDT Stablecoin:稳定币通道,低费用、近实时结算
|
||||
|
||||
## 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]]
|
||||
- [[ContractsAgent]] ← payment_trigger ← [[AccountsPayableAgent]]
|
||||
- [[ProjectManagerAgent]] ← invoice_request ← [[AccountsPayableAgent]]
|
||||
- [[HRAgent]] ← payroll_disbursement ← [[AccountsPayableAgent]]
|
||||
- [[StrategyAgent]] ← spend_report ← [[AccountsPayableAgent]]
|
||||
|
||||
## Contradictions
|
||||
- (本文档为单一 Agent 设计文档,暂无已知内容冲突)
|
||||
- 无已知跨页面内容冲突
|
||||
|
||||
Reference in New Issue
Block a user