Agent Plugins Marketplace
All plugins

organizational-agents

v0.6.0

Organizational Agent Architecture (OAA). Structure multi-agent systems the way companies are structured — agents fill roles, roles require skills, skills require tools, bounded authority composes down the chain. Bundles two skills (org-agent-architecture, oaa-ontology-design) and two MCP servers (harness for compile/validate/run, ontology for domain memory).

Claude Code2 Skills2 MCP serversstdio

By Chuck 3.0License: MIT0 GitHub starsUpdated 3 hours ago

Directory evidence

Runtimes
Claude Code
Parsed components
4 skill or MCP entries
Source updated
Aug 26, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install plugin

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install organizational-agents@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/Chuck3PointZero/OAA

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

organizational-agents/
├── .claude-plugin/plugin.json
├── skills/oaa-ontology-design/SKILL.md
├── skills/org-agent-architecture/SKILL.md
└── .mcp.json

Included Skills2

oaa-ontology-designskills/oaa-ontology-design/SKILL.md

Author and validate OAA business domain ontologies using the .rel formal language

org-agent-architectureskills/org-agent-architecture/SKILL.md

Scaffold, decompose, validate, and maintain organizational agent hierarchies under the AGENT → ROLE → SKILL → TOOL convention (one primitive, four kinds, authority blocks, agents.lock). Use this skill whenever the user wants to create or edit an AGENT.md, ROLE.md, SKILL.md, TOOL.md, or NOUN.md; define what an agent owns, decides, escalates, or must never do; set up or reorganize a repository of agents, roles, skills, or tools; wrap an MCP server or API as a tool; split a role into sub-roles or extract a shared skill; review an agent architecture for ownership conflicts or authority gaps; or generate or update agents.lock entries — even if they don't name the convention explicitly and just say things like "give this agent a job description," "what is this agent allowed to do on its own," or "add a new tool for X."

MCP servers2

oaa-harnessstdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/harness/dist/index.js
env.NODE_PATH
${CLAUDE_PLUGIN_DATA}/harness/node_modules
oaa-ontologystdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/ontology/dist/index.js
env.NODE_OPTIONS
--experimental-sqlite
env.NODE_PATH
${CLAUDE_PLUGIN_DATA}/ontology/node_modules

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Plugin manifests1

.claude-plugin/plugin.json
{
  "name": "organizational-agents",
  "version": "0.6.0",
  "description": "Organizational Agent Architecture (OAA). Structure multi-agent systems the way companies are structured — agents fill roles, roles require skills, skills require tools, bounded authority composes down the chain. Bundles two skills (org-agent-architecture, oaa-ontology-design) and two MCP servers (harness for compile/validate/run, ontology for domain memory).",
  "author": {
    "name": "Chuck 3.0",
    "email": "[email protected]"
  },
  "homepage": "https://github.com/Chuck3PointZero/OAA",
  "repository": "https://github.com/Chuck3PointZero/OAA",
  "license": "MIT",
  "keywords": [
    "organizational agent architecture",
    "oaa",
    "organizational agents",
    "org agents",
    "multi-agent",
    "agent authority",
    "role authority",
    "authority composition",
    "agent roles",
    "agent skills",
    "org chart",
    "ontology",
    "mcp"
  ],
  "skills": [
    "./skills/"
  ],
  "mcpServers": {
    "oaa-harness": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/harness/dist/index.js"
      ],
      "env": {
        "NODE_PATH": "${CLAUDE_PLUGIN_DATA}/harness/node_modules"
      }
    },
    "oaa-ontology": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/ontology/dist/index.js"
      ],
      "env": {
        "NODE_OPTIONS": "--experimental-sqlite",
        "NODE_PATH": "${CLAUDE_PLUGIN_DATA}/ontology/node_modules"
      }
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[organizational-agents on Agent Plugins Marketplace](https://pluginsmp.com/plugins/organizational-agents)