66 lines
4.4 KiB
Markdown
66 lines
4.4 KiB
Markdown
---
|
||
title: "Accounts Payable Agent Personality"
|
||
type: source
|
||
tags: []
|
||
date: 2026-04-25
|
||
---
|
||
|
||
## Source File
|
||
- [[Agent/agency-agents/specialized/accounts-payable-agent.md]]
|
||
|
||
## Summary(用中文描述)
|
||
- 核心主题: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),无需人工干预
|
||
- 超过授权限额的支付请求自动上报人工审批,不执行越权操作
|
||
- Agent 通过工具调用(Tool Calls)与其他 Agent(Contracts Agent、Project Manager、HR Agent)集成,实现跨 Agent 支付工作流自动化
|
||
- 每笔支付均生成完整审计日志,包含发票引用、金额、通道、时间戳和状态
|
||
|
||
## Key Quotes
|
||
> "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-Check]]:幂等性检查——在执行支付前,通过发票引用号查询是否已支付,防止重复付款的核心安全机制
|
||
- [[Audit-Trail]]:审计日志——每笔支付记录完整上下文(发票号、金额、支付通道、时间戳、状态),确保可追溯性
|
||
- [[Payment-Rail-Routing]]:支付通道路由——根据收款人类型、金额和成本自动选择最优支付通道(ACH/Wire/Crypto/Stablecoin/Payment API)
|
||
- [[Vendor-Registry]]:供应商注册表——维护已批准供应商的首选支付通道和收款地址,确保支付至正确账户
|
||
- [[Spend-Limit]]:消费限额——Agent 的自主支付授权上限,超过限额需人工审批
|
||
- [[Approval-Threshold]]:审批阈值——触发人工审批流程的金额界限
|
||
|
||
## Key Entities
|
||
- [[ContractsAgent]]:接收里程碑完成触发信号,执行承包商里程碑支付
|
||
- [[ProjectManagerAgent]]:发起承包商工时材料发票的支付请求
|
||
- [[HRAgent]]:处理工资发放的支付请求
|
||
- [[StrategyAgent]]:接收支出报告和资金跑道分析数据
|
||
- [[Stripe]]:Payment API 支付通道之一
|
||
- ACH(Automated Clearing House):美国自动清算支付通道,适合国内供应商和工资发放,结算周期 1-3 天
|
||
- Wire Transfer:电汇通道,适合大额/国际支付,当日结算
|
||
- BTC/ETH Crypto:加密货币通道,适合加密原生供应商,数分钟内结算
|
||
- USDC/USDT Stablecoin:稳定币通道,低费用、近实时结算
|
||
|
||
## Connections
|
||
- [[ContractsAgent]] ← payment_trigger ← [[AccountsPayableAgent]]
|
||
- [[ProjectManagerAgent]] ← invoice_request ← [[AccountsPayableAgent]]
|
||
- [[HRAgent]] ← payroll_disbursement ← [[AccountsPayableAgent]]
|
||
- [[StrategyAgent]] ← spend_report ← [[AccountsPayableAgent]]
|
||
|
||
## Contradictions
|
||
- 无已知跨页面内容冲突
|