codex-mr
v0.1.2
Published
Project-local mr init scaffold for Codex multi-role orchestration
Downloads
484
Readme
Skills Project
This repository now contains both:
- the source
multi-role-orchestratorskill - a local
mrCLI that scaffolds workspace-scoped Codex skills and compatibility wrappers
Included Skill
multi-role-orchestrator: a virtual team skill with role ownership, persona mapping, handoff templates, structured role outputs, and a simplified command interface. The default workflow is artifact-driven: PRD -> prototype -> architecture -> implementation -> self-test -> QA -> acceptance.
npm Package
The publishable npm package name is codex-mr.
CLI
The repo exposes a local mr command through package.json:
node ./bin/mr.js initOr after linking:
npm link
mr initAfter publishing, new machines can use:
npm install codex-mr
npx mr initor:
npm install -g codex-mr
mr initmr init creates:
.codex/skills/multi-role-orchestrator/.codex/skills/mr/.codex/skills/mr-status/.codex/skills/mr-next/.codex/skills/mr-handoff/plugins/mr-orchestrator/.codex-plugin/plugin.jsonplugins/mr-orchestrator/commands/plugins/mr-orchestrator/skills/multi-role-orchestrator/.agents/plugins/marketplace.json
That lets a project use workspace-local Codex skill entrypoints such as:
$mr <task>$mr-status$mr-next$mr-handoff
The primary install path is .codex/skills, matching how this repository exposes the openspec-* skills today.
The generated plugin and marketplace files remain as compatibility output for Codex builds that also support workspace-local plugins or command wrappers.
By default, mr init installs the default full feature set with no prompts.
Key Files
multi-role-orchestrator/SKILL.mdmulti-role-orchestrator/commands.mdmulti-role-orchestrator/quick-reference.mdmulti-role-orchestrator/delivery-workflow.mdmulti-role-orchestrator/page-workflow.mdmulti-role-orchestrator/INSTALL.mdbin/mr.jssrc/init-workspace.js
Notes
$mr*entries are Codex skill invocations, not shell subcommands.mr initis the shell entry that installs the workspace skill structure into the current workspace.plugins/mr-orchestratoris now a secondary compatibility layer, not the primary registration path.
