$git clone https://github.com/panaversity/agentfactory-business-pluginsMarketplace 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.
| 1 | # AgentFactory Business Plugins |
| 2 | |
| 3 |  |
| 4 |  |
| 5 |  |
| 6 | |
| 7 | 🚀 **Marketplace of domain-specific plugins for building enterprise AI agents.** |
| 8 | |
| 9 | Enable AI agents to perform **finance, banking, legal, and sales workflows** using modular domain plugins. |
| 10 | |
| 11 | AgentFactory Business Plugins extends AI agents with **specialized skills, commands, and workflow logic** for real-world enterprise environments. |
| 12 | |
| 13 | Part of the **AgentFactory ecosystem**. |
| 14 | |
| 15 | --- |
| 16 | |
| 17 | ## Why AgentFactory Business Plugins? |
| 18 | |
| 19 | Most AI agent frameworks provide general capabilities but lack **domain expertise** required for real-world enterprise workflows. |
| 20 | |
| 21 | AgentFactory Business Plugins solves this by providing **domain-specific agent skills** that allow AI agents to operate safely and effectively in regulated business environments. |
| 22 | |
| 23 | These plugins encode **business rules, regulatory knowledge, and workflow automation** that agents can execute autonomously. |
| 24 | |
| 25 | --- |
| 26 | |
| 27 | ## ✨ Features |
| 28 | |
| 29 | * 🧠 Domain-specific **AI agent skills** |
| 30 | * 🧩 Modular **plugin architecture** |
| 31 | * ⚡ Designed for **agentic AI workflows** |
| 32 | * 🏢 Built for **enterprise business automation** |
| 33 | * 🔌 Easy integration with AI agent frameworks |
| 34 | * 📦 Expandable marketplace of plugins |
| 35 | |
| 36 | --- |
| 37 | |
| 38 | ## 📦 Available Plugins |
| 39 | |
| 40 | The repository includes plugins across multiple business domains. |
| 41 | |
| 42 | | Plugin | Description | Version | Install | |
| 43 | | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ---------------------------------------------------------------------- | |
| 44 | | **[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` | |
| 45 | | **[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` | |
| 46 | | **[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` | |
| 47 | | **[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` | |
| 48 | |
| 49 | > Individual plugins may have their own license terms. See each plugin's LICENSE file for details. |
| 50 | |
| 51 | |
| 52 | --- |
| 53 | |
| 54 | ## 🤖 Example Agent Workflow |
| 55 | |
| 56 | User request: |
| 57 | |
| 58 | ``` |
| 59 | Analyze this financial report and summarize risks |
| 60 | ``` |
| 61 | |
| 62 | Agent workflow: |
| 63 | |
| 64 | 1. Detect **financial analysis intent** |
| 65 | 2. Route request to **Finance Plugin** |
| 66 | 3. Execute domain-specific financial analysis |
| 67 | 4. Return structured insights |
| 68 | |
| 69 | Example result: |
| 70 | |
| 71 | ``` |
| 72 | Risk Summary: |
| 73 | • Revenue concentration risk |
| 74 | • Liquidity exposure |
| 75 | • Debt covenant breach risk |
| 76 | ``` |
| 77 | |
| 78 | Each plugin contains domain-specific **skills and commands** that agents can execute. |
| 79 | |
| 80 | --- |
| 81 | |
| 82 | ## 🚀 Getting Started |
| 83 | |
| 84 | ### Option A: Install via Claude Code CLI (Recommended) |
| 85 | |
| 86 | ```bash |
| 87 | # Install a plugin |
| 88 | claude plugin install islamic-finance@agentfactory-business |
| 89 | claude plugin install idfa-financial-architect@agentfactory-business |
| 90 | claude plugin install banking@agentfactory-business |
| 91 | claude plugin install legal-ops@agentfactory-business |
| 92 | |
| 93 | # Verify installation |
| 94 | claude --list-plugins |
| 95 | ``` |
| 96 | |
| 97 | |
| 98 | ### Option B: Install via Cowork (Claude.ai) |
| 99 | |
| 100 | 1. Sidebar → Customize → Browse plugins → + |
| 101 | 2. Add marketplace from GitHub → `panaversity/agentfactory-business-plugins` |
| 102 | 3. Select and install the plugin you need |
| 103 | |
| 104 | ### Option C: Clone the repository |
| 105 | |
| 106 | ``` |
| 107 | git clone https://github.com/panaversity/agentfactory-business-plugins |
| 108 | ``` |
| 109 | |
| 110 | Explore available plugins |
| 111 | |
| 112 | ``` |
| 113 | claude --plugin-dir ./agentfactory-business-plugins/islamic-finance |
| 114 | claude --plugin-dir ./agentfactory-business-plugins/idfa-financial-architect |
| 115 | claude --plugin-dir ./agentfactory-business-plugins/banking |
| 116 | claude --plugin-di |