1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38# Financial Services Plugins
This is a marketplace of Claude Cowork plugins for financial services professionals. Each subdirectory is a standalone plugin.
## Repository Structure
```
โโโ investment-banking/ # Investment banking productivity
```
## Plugin Structure
Each plugin follows this layout:
```
plugin-name/
โโโ .claude-plugin/plugin.json # Plugin manifest (name, description, version)
โโโ commands/ # Slash commands (.md files)
โโโ skills/ # Knowledge files for specific tasks
โโโ hooks/ # Event-driven automation
โโโ mcp/ # MCP server integrations
โโโ .claude/ # User settings (*.local.md)
```
## Key Files
- `marketplace.json`: Marketplace manifest - registers all plugins with source paths
- `plugin.json`: Plugin metadata - name, description, version, and component discovery settings
- `commands/*.md`: Slash commands invoked as `/plugin:command-name`
- `skills/*/SKILL.md`: Detailed knowledge and workflows for specific tasks
- `*.local.md`: User-specific configuration (gitignored)
- `mcp-categories.json`: Canonical MCP category definitions shared across plugins
## Development Workflow
1. Edit markdown files directly - changes take effect immediately
2. Test commands with `/plugin:command-name` syntax
3. Skills are invoked automatically when their trigger conditions match