惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
IT之家
IT之家
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Help Net Security
V
V2EX
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 【当耐特】
月光博客
月光博客
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件

The Register - Software: AI + ML

Anthropic, now atop the AI bubble, files for its IPO Sick and wrong: Ontario auditors find doctors' AI note takers routinely blow basic facts OpenAI exec says it will burn $50B on compute this year Astera speaks softly and carries a big switch IBM asks DBAs to trust AI to act on their behalf ServiceNow adds agent kill switches to AI control tower British mathematician hands OpenClaw agent a credit card Microsoft fixes VS Code after Copilot credited human code Shadow IT has given way to shadow AI. Enter AI-BOMs AI inference just plays by different rules How TeamViewer ONE transforms IT operations from firefighting to autopilot How TeamViewer ONE transforms IT operations firefighting aut Inference is giving AI chip startups a 2nd chance to shine How to roll your own local AI coding agents CIOs will be the governors for AI agents Govern your bots carefully or chaos could ensue Mozilla pushes back against Google's Prompt API SAP user group slams 'uncertainty' in ERP giant's API policy Microsoft boss tells investors the company is working to 'win back fans' Anthropic tops OpenAI in LLM revenue stakes Amazon's chips become a $20B business Fooling large language models just keeps getting simpler Amazon tells its engineers to review all AI output ZTE powers 2026 Jiangsu Football League with 5G-A & AI robot Future holiday horror: ‘A robot lost my luggage in Tokyo’ The future of software development has less development OpenAI jumps out of Microsoft's bed, into Amazon's Bedrock Vintage chatbot lives in the past like an elderly relative IBM's AI coding 'partner' Bob hits general availability Locked, stocked, and losing budget: AI vendor lock-in bites
Anthropic unleashes finance agents for Claude
Thomas Claburn Thomas Claburn · 2026-05-06 · via The Register - Software: AI + ML

AI + ML

Anthropic wants Claude to play with money, unleashes finance agents

Always bet on backpropagation

If you've ever read Anthropic's disclaimer that responses generated by Claude may contain mistakes and thought, "That's what I need to spice up financial operations," you're in luck.

Anthropic has released a set of financial agent templates designed to allow its Claude AI service to better assist with financial tasks.

"Each agent template is a reference architecture that packages three things: skills (instructions and domain knowledge for the task), connectors (governed access to the data the task runs on), and subagents (additional Claude models that are called upon by the main agent, for specific sub-tasks such as comparables selection or methodology checks)," the company explains.

The terminology can be a bit murky because, at the end of the day, it's all just a model pursuing a goal in an iterative loop with resources like tools and data.

Claude Code itself is an agentic harness that supports an underlying model using Anthropic's defined control flow. When the Claude model is driving the control flow toward a goal – deciding what tools to use and what data to access – that's an agent. 

Then there are subagents, and these are really just API calls to Claude using specialized system prompts, specified tools, and context provided by an orchestration system. They're a bit like functions in a program that handle a particular aspect of an application.

So Anthropic's finance agents consist of: skills, which are markdown files that describe workflows; connectors, which are integrations with external services; and subagents, made up of a focused system prompt, specific tools, and contextual data.

For example, Anthropic's Know-Your-Customer Screener agent template (kyc-screener) includes a skill called kyc-rules that spells out how Claude should apply a firm's KYC/AML (anti-money laundering) rules to a parsed onboarding record. The rules tell the AI model to assign a risk rating, check documents, cite rule outcomes, and produce a result formatted thus:

This JSON data would presumably be useful to whatever corporate system receives it.


{
  "risk_rating": "low | medium | high",
  "disposition": "clear | request-docs | escalate-EDD | decline-recommend",
  "missing_documents": ["..."],
  "escalation_reasons": ["rule 4.2: confirmed PEP", "..."],
  "rule_outcomes": [{"rule_id": "...", "outcome": "...", "evidence": "..."}]
}

Anthropic's list of agents includes: Pitch builder; Meeting preparer; Earnings reviewer; Model builder; Market researcher; Valuation reviewer; General ledger reconciler; Month-end closer; Statement auditor; and, as previously noted, KYC screener.

These can be applied to Claude Cowork and Claude Code as plugins or as a "cookbook" – copyable code snippets – for Claude Managed Agents.

You may be thinking that finance tends to be fairly unforgiving when it comes to sciency stuff like numbers. Perhaps you're unimpressed that Anthropic's Opus 4.7 model scored an "industry leading" 64.37 percent on Vals AI's Finance Agent benchmark – a failure rate that would get a human tossed.

Worry not, because Anthropic expects that users will "stay firmly in the loop – reviewing, iterating on, and approving Claude's work before it goes to a client, gets filed, or is acted on."

With accounting comes accountability. ®