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

FAQ (2)

トラブル対応
なぜ私のClaude Codeスキルがシステムリマインダーで名前のみで説明なしと表示されるのですか?

SKILL.mdファイルにYAMLフロントマターがありません。影響を受ける各ファイルの先頭に、nameフィールドとdescriptionフィールドを含むブロックを追加してください。例:

---
name: dd-checklist
description: Generate and track due diligence checklists...
---

フロントマターを追加した後、以下の検証を実行してすべてのファイルにフロントマターがあることを確認します:

for f in plugins/vertical-plugins/private-equity/skills/*/SKILL.md; do
  head -1 "$f" | grep -q '^---$' || echo "MISSING FRONTMATTER: $f"
done

出力がない場合、すべてのファイルが正しくフォーマットされています。これにより、/doctorでの説明の可視性とセマンティックスキルディスカバリーが復元されます。

参照 Issue #220
トラブル対応
Claude Codeでマーケットプレイスを追加するときに 'Repository not found' エラーが発生するのはなぜですか?

readmeには、古いまたは誤ったマーケットプレイスリポジトリURLが記載されている可能性があります。追加したいマーケットプレイスに正しいURLを使用してください。例えば、'https://github.com/anthropics/claude-for-financial-services'の代わりに'https://github.com/anthropics/financial-services'を使用してください。実行: claude plugin marketplace add anthropics/financial-services

参照 Issue #145