OpenSource-Hub

financial-services

框架

anthropics/financial-services

面向金融服务的 Claude 代理与技能插件参考实现。

项目简介

提供端到端工作流代理、垂直技能包及数据连接器,覆盖投资银行、股权研究、私募股权与财富管理场景。支持作为 Claude Cowork 插件安装或通过托管代理 API 部署。

README 预览

# Claude for Financial Services\n\nReference agents, skills, and data connectors for the financial-services workflows we see most — investment banking, equity research, private equity, and wealth management.\n\nEverything here is available **two ways from one source**: install it as a [Claude Cowork](https://claude.com/product/cowork) plugin, or deploy it through the [Claude Managed Agents API](https://docs.claude.com/en/api/managed-agents) behind your own workflow engine. Same system prompt, same skills — you choose where it runs.\n\n> [!IMPORTANT]\n> Nothing in this repository constitutes investment, legal, tax, or accounting advice. These agents draft analyst work product — models, memos, research notes, reconciliations — for review by a qualified professional. They do not make investment recommendations, execute transactions, bind risk, post to a ledger, or approve onboarding; every output is staged for human sign-off. You are responsible for verifying outputs and for compliance with the laws and regulations that apply to your firm.\n\nWhat's in the repo:\n\n- **[Agents](#agents)** — named, end-to-end workflow agents (Pitch Agent, Market Researcher, GL Reconciler, …). Each ships as a Cowork plugin **and** as a [Claude Managed Agent template](./managed-agent-cookbooks) you deploy via `/v1/agents`.\n- **[Vertical plugins](#vertical-plugins)** — the underlying skills, slash commands, and data connectors, bundled by FSI vertical. Install these on their own if you just want `/comps`, `/dcf`, `/earnings` and the connectors without a full agent.\n\n## Agents\n\nEach agent is named for the workflow it runs. They're starting points: install the ones that match your work, then tune the prompts, skills, and connectors to how your firm does it.\n\nEach agent plugin is **self-contained** — it bundles the skills it uses, so installing the agent is all you need.\n\n| Function | Agent | What it does |\n|---|---|---|\n| **Coverage & advisory** | **[Pitch Agent](./plugins/agent-p

常见问题 (2)

故障排除
为什么我的Claude Code技能在系统提示中只显示名称而没有描述?

SKILL.md 文件缺少 YAML 前置元数据。针对每个受影响文件,在文件最顶部添加一个包含 name 和 description 字段的代码块。示例:

---
name: dd-checklist
description: 生成并跟踪尽职调查清单...
---

添加前置元数据后,运行以下验证命令以确保所有文件都已包含:

for f in plugins/vertical-plugins/private-equity/skills/*/SKILL.md; do
  head -1 "$f" | grep -q '^---$' || echo "缺少前置元数据: $f"
done

无输出表示所有文件格式正确。这将恢复 /doctor 中描述的可见性以及语义技能发现功能。

来源 Issue #220
故障排除
为什么我在Claude Code中添加市场时会出现'Repository not found'错误?

readme 可能列出了过时或不正确的市场仓库 URL。请使用你想要添加的市场的正确 URL。例如,使用 'https://github.com/anthropics/financial-services' 代替 'https://github.com/anthropics/claude-for-financial-services'。运行:claude plugin marketplace add anthropics/financial-services

来源 Issue #145