← Back to Plugins
Tools

Agentfactory Business Plugins

panaversity By panaversity 👁 3 views ▲ 0 votes

Marketplace of domain-specific plugins for AI agents (Cowork, Claude Code, OpenClaw). Build autonomous business workflows for finance, banking, legal operations, and sales using modular agent skills and commands.

Homepage GitHub

README

# AgentFactory Business Plugins

![License](https://img.shields.io/github/license/panaversity/agentfactory-business-plugins)
![Stars](https://img.shields.io/github/stars/panaversity/agentfactory-business-plugins)
![Issues](https://img.shields.io/github/issues/panaversity/agentfactory-business-plugins)

๐Ÿš€ **Marketplace of domain-specific plugins for building enterprise AI agents.**

Enable AI agents to perform **finance, banking, legal, and sales workflows** using modular domain plugins.

AgentFactory Business Plugins extends AI agents with **specialized skills, commands, and workflow logic** for real-world enterprise environments.

Part of the **AgentFactory ecosystem**.

---

## Why AgentFactory Business Plugins?

Most AI agent frameworks provide general capabilities but lack **domain expertise** required for real-world enterprise workflows.

AgentFactory Business Plugins solves this by providing **domain-specific agent skills** that allow AI agents to operate safely and effectively in regulated business environments.

These plugins encode **business rules, regulatory knowledge, and workflow automation** that agents can execute autonomously.

---

## โœจ Features

* ๐Ÿง  Domain-specific **AI agent skills**
* ๐Ÿงฉ Modular **plugin architecture**
* โšก Designed for **agentic AI workflows**
* ๐Ÿข Built for **enterprise business automation**
* ๐Ÿ”Œ Easy integration with AI agent frameworks
* ๐Ÿ“ฆ Expandable marketplace of plugins

---

## ๐Ÿ“ฆ Available Plugins

The repository includes plugins across multiple business domains.

| Plugin                                                      | Description                                                                                                                                                            | Version | Install                                                                |
| ----------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ---------------------------------------------------------------------- |
| **[islamic-finance](./islamic-finance/)**                   | 12 product skills, 13 jurisdiction overlays, 4 domain commands for Islamic finance accounting across AAOIFI, IFRS, and local standards                                 | v2.0.0  | `claude plugin install islamic-finance@agentfactory-business`          |
| **[idfa-financial-architect](./idfa-financial-architect/)** | Intent-Driven Financial Architecture (IDFA) โ€” four guardrails, three layers, two skills for human-readable, AI-operable, audit-proof financial models                  | v2.0.0  | `claude plugin install idfa-financial-architect@agentfactory-business` |
| **[banking](./banking/)**                                   | 16 product skills, 7 jurisdiction overlays, 4 domain commands for banking regulatory compliance across IFRS 9, Basel III/IV, AML/KYC/sanctions                         | v1.0.0  | `claude plugin install banking@agentfactory-business`                  |
| **[legal-ops](./legal-ops/)**                               | 8 product skills, 5 jurisdiction overlays, 4 domain commands for legal operations โ€” contract review, NDA triage, IP protection, regulatory monitoring, DSAR management | v1.0.0  | `claude plugin install legal-ops@agentfactory-business`                |

> Individual plugins may have their own license terms. See each plugin's LICENSE file for details.


---

## ๐Ÿค– Example Agent Workflow

User request:

```
Analyze this financial report and summarize risks
```

Agent workflow:

1. Detect **financial analysis intent**
2. Route request to **Finance Plugin**
3. Execute domain-specific financial analysis
4. Return structured insights

Example result:

```
Risk Summary:
โ€ข Revenue concentration risk
โ€ข Liquidity exposure
โ€ข Debt covenant breach risk
```

Each plugin contains domain-specific **skills and commands** that agents can execute.

---

## ๐Ÿš€ Getting Started

### Option A: Install via Claude Code CLI (Recommended)

```bash
# Install a plugin
claude plugin install islamic-finance@agentfactory-business
claude plugin install idfa-financial-architect@agentfactory-business
claude plugin install banking@agentfactory-business
claude plugin install legal-ops@agentfactory-business

# Verify installation
claude --list-plugins
```


### Option B: Install via Cowork (Claude.ai)

1. Sidebar โ†’ Customize โ†’ Browse plugins โ†’ +
2. Add marketplace from GitHub โ†’ `panaversity/agentfactory-business-plugins`
3. Select and install the plugin you need

### Option C: Clone the repository

```
git clone https://github.com/panaversity/agentfactory-business-plugins
```

Explore available plugins

```
claude --plugin-dir ./agentfactory-business-plugins/islamic-finance
claude --plugin-dir ./agentfactory-business-plugins/idfa-financial-architect
claude --plugin-dir ./agentfactory-business-plugins/banking
claude --plugin-dir ./agentfactory-business-plugins/legal-ops
```

#### Marketplace Structure

```
agentfactory-business-plugins/
โ”œโ”€โ”€ marketplace.json          # Plugin catalog
โ”œโ”€โ”€ islamic-finance/          # Islamic Finance Domain Agents plugin
โ”‚   โ”œโ”€โ”€ .claude-plugin/       # Plugin manifest
โ”‚   โ”œโ”€โ”€ skills/               # 13 domain skills (auto-loaded)
โ”‚   โ”œโ”€โ”€ commands/             # 4 slash commands (auto-loaded)
โ”‚   โ”œโ”€โ”€ hooks/                # Session + validation hooks (auto-loaded)
โ”‚   โ”œโ”€โ”€ scripts/              # Test harness
โ”‚   โ”œโ”€โ”€ evals/                # Golden-file tests
โ”‚   โ”œโ”€โ”€ exercises/            # Exercise data (download as zip)
โ”‚   โ”œโ”€โ”€ workflow-recipes/     # Operational playbooks (download as zip)
โ”‚   โ””โ”€โ”€ references/           # Lookup tables
โ”œโ”€โ”€ idfa-financial-architect/ # IDFA Financial Architect plugin
โ”‚   โ”œโ”€โ”€ .claude-plugin/       # Plugin manifest
โ”‚   โ”œโ”€โ”€ skills/               # 2 domain skills (auto-loaded)
โ”‚   โ”œโ”€โ”€ evals/                # Two-tier eval harness
โ”‚   โ”œโ”€โ”€ tests/                # Unit tests
โ”‚   โ””โ”€โ”€ examples/             # Reference models
โ”œโ”€โ”€ banking/                  # Banking Regulatory Compliance plugin
โ”‚   โ”œโ”€โ”€ .claude-plugin/       # Plugin manifest
โ”‚   โ”œโ”€โ”€ skills/               # 16 product skills (auto-loaded)
โ”‚   โ”œโ”€โ”€ commands/             # 4 slash commands (auto-loaded)
โ”‚   โ”œโ”€โ”€ hooks/                # Session + validation hooks (auto-loaded)
โ”‚   โ”œโ”€โ”€ evals/                # Golden-file tests
โ”‚   โ””โ”€โ”€ exercises/            # Exercise data (download as zip)
โ”œโ”€โ”€ legal-ops/                # Legal Operations and Compliance plugin
โ”‚   โ”œโ”€โ”€ .claude-plugin/       # Plugin manifest
โ”‚   โ”œโ”€โ”€ skills/               # 9 skills (auto-loaded)
โ”‚   โ”œโ”€โ”€ commands/             # 4 slash commands (auto-loaded)
โ”‚   โ”œโ”€โ”€ hooks/                # Session + validation hooks (auto-loaded)
โ”‚   โ”œโ”€โ”€ scripts/              # Test harness
โ”‚   โ”œโ”€โ”€ evals/                # Golden-file tests
โ”‚   โ”œโ”€โ”€ exercises/            # 8 exercises (download as zip)
โ”‚   โ””โ”€โ”€ workflow-recipes/     # 4 operational playbooks (download as zip)
โ””โ”€โ”€ [future plugins...]       # More business domain plugins planned
```

Integrate plugins with your AI agent framework.

---

## For Learners

Each plugin is a companion to a specific chapter in The AI Agent Factory:

| Plugin                   | Chapter                                     | What You Learn                                                                       |
| ------------------------ | ------------------------------------------- | ------------------------------------------------------------------------------------ |
| islamic-finance          | Ch 20: Islamic Finance Domain Agents        | Build jurisdiction-aware Islamic finance agents using 3 accounting regimes           |
| idfa-financial-architect | Ch 18: Intent-Driven Financial Architecture | Build audit-proof financial models using Named Ranges, four guardrails, three layers |
| banking                  | Ch 21: Banking Regulatory Compliance        | Build jurisdiction-aware banking regulatory agents for IFRS 9, Basel III/IV, AML/KYC |
| legal-ops                | Ch 22: Legal Operations and Compliance      | Build legal operations agents for contract review, NDA triage, IP protection, DSAR   |

### Downloading Exercise Data

After installing a plugin, download the exercise data:

1. Go to the [Releases page](https://github.com/panaversity/agentfactory-business-plugins/releases/latest)
2. Download the zip you need:

| Download                                | What's Inside                   | Use With                  |
| --------------------------------------- | ------------------------------- | ------------------------- |
| `islamic-finance-full.zip`              | Everything                      | Complete setup / capstone |
| `islamic-finance-exercise-data.zip`     | 14 exercises + reference tables | Chapter exercises         |
| `islamic-finance-workflow-recipes.zip`  | 4 operational playbooks         | Production workflows      |
| `idfa-financial-architect-full.zip`     | Plugin + examples + evals       | Complete setup            |
| `idfa-financial-architect-examples.zip` | Example models (GP Waterfall)   | Quick start               |
| `banking-full.zip`                      | Everything                      | Complete setup / capstone |
| `legal-ops-full.zip`                    | Everything                      | Complete setup / capstone |
| `legal-ops-exercise-data.zip`           | 8 exercises                     | Chapter exercises         |
| `legal-ops-workflow-recipes.zip`        | 4 operational playbooks         | Production workflows      |

3. Unzip into your project:

```bash
unzip islamic-finance-exercise-data.zip -d my-project/
```

---

## For Other AI Agents

Only Claude Code / Cowork get full plugin functionality (auto-routing, commands, hooks). For other platforms, copy the skill content as custom instructions:

| Agent           | Instructions Path                 | What to Copy                   

... (truncated)
tools

Comments

Sign in to leave a comment

Loading comments...