plugins marketplace
← All plugins

conductor

v1.2.0

An installable AI workflow plugin that routes complex software tasks through focused specialist skills for architecture, UI/UX, documentation, diagrams, databases, QA, security, and gated resilience review.

CodexClaude Code14 skills

by BaelfyreMIT15updated 9 hours ago

Source

git clone https://github.com/Baelfyre/Orchestra

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

conductor/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/arbiter/SKILL.md
├── skills/chronicler/SKILL.md
├── skills/cipher/SKILL.md
├── skills/cloak/SKILL.md
├── skills/clockwork/SKILL.md
├── skills/conductor/SKILL.md
├── skills/dagger/SKILL.md
├── skills/overseer/SKILL.md
├── skills/ponytail/SKILL.md
├── skills/scribe/SKILL.md
├── skills/the-governor/SKILL.md
├── skills/the-steward/SKILL.md
├── skills/the-tuner/SKILL.md
└── skills/weaver/SKILL.md

Skills14

arbiterskills/arbiter/SKILL.md

Workflow continuity, validation, and transition governance specialist. See SKILL_INDEX.md.

chroniclerskills/chronicler/SKILL.md

Data Persistence and Database Management Specialist. See SKILL_INDEX.md.

cipherskills/cipher/SKILL.md

Security, Privacy, Access Control, and Threat Review Specialist. Do not use for offensive or destructive testing. See SKILL_INDEX.md.

cloakskills/cloak/SKILL.md

UI/UX, Accessibility, Responsive Layout, and Frontend Design Specialist. See SKILL_INDEX.md.

clockworkskills/clockwork/SKILL.md

Engineering and Code Structure Specialist (OOP, layering, refactoring). See SKILL_INDEX.md.

conductorskills/conductor/SKILL.md

Routing and orchestration layer. Chooses the smallest effective skill stack. See ROUTING_MAP.md and SKILL_INDEX.md for detailed routing behavior.

daggerskills/dagger/SKILL.md

Chaos and resilience specialist. Generates controlled failure paths. Operates strictly within safety boundaries and never executes unauthorized, destructive, or production-impacting tests. See SKILL_INDEX.md.

overseerskills/overseer/SKILL.md

QA, Test Strategy, Validation, CI, and Release Readiness Specialist. See SKILL_INDEX.md.

ponytailskills/ponytail/SKILL.md

Implementation and Navigation Specialist. Owns minimal safe edits. See SKILL_INDEX.md.

scribeskills/scribe/SKILL.md

Documentation and Knowledge Transfer Specialist. See SKILL_INDEX.md.

the-governorskills/the-governor/SKILL.md

Legal, regulatory, privacy, IP, and compliance governance authority. Does not provide legal advice. Sits above Conductor. See docs/governance/GOVERNANCE_LAYER.md.

the-stewardskills/the-steward/SKILL.md

Business alignment and scope governance authority. See docs/governance/GOVERNANCE_LAYER.md for governance behavior.

the-tunerskills/the-tuner/SKILL.md

Cross-specialist coordination specialist for contract assembly, contradiction detection, semantic invalidation, and re-entry recommendations. See the canonical coordination protocol.

weaverskills/weaver/SKILL.md

Visual Modeling and Diagram Generation Specialist. See SKILL_INDEX.md.

Manifests2

.codex-plugin/plugin.json
{
  "name": "conductor",
  "version": "1.2.0",
  "description": "An installable AI workflow plugin that routes complex software tasks through focused specialist skills for architecture, UI/UX, documentation, diagrams, databases, QA, security, and gated resilience review.",
  "author": {
    "name": "Baelfyre",
    "url": "https://github.com/Baelfyre"
  },
  "homepage": "https://github.com/Baelfyre/Orchestra",
  "repository": "https://github.com/Baelfyre/Orchestra",
  "license": "MIT",
  "keywords": [
    "codex",
    "plugin",
    "orchestration",
    "skills",
    "governance"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Orchestra",
    "shortDescription": "Route complex coding work through focused specialist skills",
    "longDescription": "Use Orchestra to route software tasks through governance, orchestration, and specialist skills for architecture, QA, security, UI/UX, documentation, diagrams, and implementation.",
    "developerName": "Baelfyre",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://github.com/Baelfyre/Orchestra",
    "privacyPolicyURL": "https://docs.github.com/site-policy/privacy-policies/github-general-privacy-statement",
    "termsOfServiceURL": "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service",
    "defaultPrompt": [
      "Use Orchestra to route this software task through the right specialist skills."
    ],
    "composerIcon": "./assets/icons/conductor.png",
    "logo": "./assets/logo/orchestra.png",
    "screenshots": [],
    "brandColor": "#1F6FEB"
  }
}
.claude-plugin/plugin.json
{
  "name": "orchestra",
  "description": "Governance-first specialist skill framework for routed, auditable AI coding workflows.",
  "version": "1.2.0",
  "update_check": {
    "update_check_enabled": true,
    "update_check_channel": "stable",
    "update_check_frequency": "manual"
  }
}