Agent Plugins Marketplace
All plugins

fabric

v0.2.9

Multi-provider agent session fabric — any agent (Claude / Codex / …) invoking, orchestrating, and handing off to models of any provider. One `call` primitive (task/review/agent/image modes) + persistent multi-turn sessions + a minimal observe proxy that dissolves the Foundry-vs-tap conflict.

CodexClaude Code2 Skills1 MCP serverstdio

By Mingyang Bao2 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
3 skill or MCP entries
Source updated
Aug 30, 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 fabric for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add fabric@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. 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/DawnEver/cc-market

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

Plugin files

fabric/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/codex-image-result/SKILL.md
├── skills/takeover-result/SKILL.md
└── .mcp.json

Included Skills2

codex-image-resultskills/codex-image-result/SKILL.md

Internal skill for presenting Codex image generation output

takeover-resultskills/takeover-result/SKILL.md

Internal guidance for presenting fabric MCP tool output back to the user

MCP servers1

fabricstdio
command
node
args
./scripts/mcp-server.mjs
cwd
.

Plugin manifests2

fabric/.codex-plugin/plugin.json
{
  "name": "fabric",
  "version": "0.2.9",
  "description": "Multi-provider agent session fabric — any agent (Claude / Codex / …) invoking, orchestrating, and handing off to models of any provider. One `call` primitive (task/review/agent/image modes) + persistent multi-turn sessions + a minimal observe proxy that dissolves the Foundry-vs-tap conflict.",
  "author": {
    "name": "Mingyang Bao"
  },
  "keywords": [
    "fabric",
    "multi-model",
    "orchestration",
    "handoff",
    "takeover",
    "session",
    "review",
    "proxy",
    "observe",
    "deepseek",
    "delegate",
    "second-opinion"
  ],
  "mcpServers": "./.codex-plugin/mcp.json",
  "skills": "./skills/",
  "interface": {
    "displayName": "Fabric",
    "shortDescription": "Multi-provider agent session fabric — any agent (Claude / Codex / …) invoking,",
    "longDescription": "Multi-provider agent session fabric — any agent (claude / codex / …) invoking, orchestrating, and handing off to models of any provider. One `call` primitive (task/review/agent/image modes), persistent multi-turn sessions, and a minimal observe proxy that dissolves the Foundry-vs-tap conflict.",
    "developerName": "Mingyang Bao",
    "category": "Productivity",
    "capabilities": [
      "Interactive"
    ],
    "defaultPrompt": [
      "Use the Fabric plugin to invoke, orchestrate, and hand off to models of any provider (deepseek / claude / codex).",
      "Tools: call (one-shot; mode task/review/agent/image-*; codex supports write:true + cwd),",
      "Pass observe:true to call to capture the child API traffic into runDir/http.jsonl."
    ]
  }
}
fabric/.claude-plugin/plugin.json
{
  "name": "fabric",
  "version": "0.2.9",
  "description": "Multi-provider agent session fabric — any agent (Claude / Codex / …) invoking, orchestrating, and handing off to models of any provider. One `call` primitive (task/review/agent/image modes) + persistent multi-turn sessions + a minimal observe proxy that dissolves the Foundry-vs-tap conflict.",
  "author": {
    "name": "Mingyang Bao"
  },
  "commands": [
    "./commands/continue.md",
    "./commands/models.md",
    "./commands/handoff.md"
  ],
  "codexInterface": {
    "defaultPrompt": [
      "Use the Fabric plugin to invoke, orchestrate, and hand off to models of any provider (deepseek / claude / codex).",
      "Tools: call (one-shot; mode task/review/agent/image-*; codex supports write:true + cwd), spawn_session/session_send/session_close (persistent multi-turn), list_providers, resolve_model, codex_status.",
      "Pass observe:true to call to capture the child API traffic into runDir/http.jsonl."
    ]
  },
  "keywords": [
    "fabric",
    "multi-model",
    "orchestration",
    "handoff",
    "takeover",
    "session",
    "review",
    "proxy",
    "observe",
    "deepseek",
    "delegate",
    "second-opinion"
  ]
}

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

[fabric on Agent Plugins Marketplace](https://pluginsmp.com/plugins/fabric)