plugins marketplace
← All plugins

codex-with-cc

v1.0.9

A Codex plugin for delegating Codex child-agent work to Claude Code CLI with workflow artifacts.

Codex6 skills

by xdd666t227updated 1 month ago

Source

git clone https://github.com/aiskyhub/codex_with_cc

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

Layout

codex-with-cc/
├── .codex-plugin/plugin.json
├── skills/codex-with-cc/SKILL.md
├── skills/codex-with-cc-dispatching/SKILL.md
├── skills/codex-with-cc-finishing/SKILL.md
├── skills/codex-with-cc-planning/SKILL.md
├── skills/codex-with-cc-reviewing/SKILL.md
└── skills/codex-with-cc-worker/SKILL.md

Skills6

codex-with-ccskills/codex-with-cc/SKILL.md

Force Codex with delegated worker routing for any child-agent, subagent, sub-agent, child-thread, subthread, delegation, worker-execution, 子代理, 子线程, 多代理, 委派, 派工, or 执行层 task; use this skill whenever Codex must plan, dispatch, review, or execute work through child agents instead of default subagent behavior.

codex-with-cc-dispatchingskills/codex-with-cc-dispatching/SKILL.md

Dispatch codex-with-cc tasks through the required Codex child thread to delegate_to_claude.* to Claude Code CLI chain with WorkflowId, TaskId, Role, and Scope metadata.

codex-with-cc-finishingskills/codex-with-cc-finishing/SKILL.md

Finish codex-with-cc workflows by verifying workflow artifacts, session continuity when needed, and final acceptance evidence.

codex-with-cc-planningskills/codex-with-cc-planning/SKILL.md

Plan codex-with-cc workflows by turning a subagent or delegation request into scoped tasks, roles, acceptance criteria, and review gates before dispatch.

codex-with-cc-reviewingskills/codex-with-cc-reviewing/SKILL.md

Review codex-with-cc worker reports, verification evidence, changed files, and findings before accepting or returning delegated work.

codex-with-cc-workerskills/codex-with-cc-worker/SKILL.md

Prepare codex-with-cc worker task files and report requirements for Claude Code execution roles.

Manifests1

.codex-plugin/plugin.json
{
  "name": "codex-with-cc",
  "version": "1.0.9",
  "description": "A Codex plugin for delegating Codex child-agent work to Claude Code CLI with workflow artifacts.",
  "author": {
    "name": "xdd666t"
  },
  "repository": "https://github.com/xdd666t/codex_with_cc",
  "keywords": [
    "codex",
    "claude-code",
    "plugin",
    "delegation",
    "workflow",
    "subagent"
  ],
  "skills": "./skills/",
  "hooks": "./hooks/hooks.json",
  "interface": {
    "displayName": "Codex With CC",
    "shortDescription": "Codex plugin for the Claude Code delegation workflow.",
    "longDescription": "Routes Codex main thread planning into staged Codex child-agent execution that is handed off to Claude Code CLI with workflow/task/run artifacts, and is distributed marketplace-first through aiskyhub/aiskyhub for Codex installations.",
    "developerName": "xdd666t",
    "category": "Development",
    "capabilities": [
      "Read",
      "Write"
    ],
    "defaultPrompt": [
      "Use the codex-with-cc workflow to delegate child-agent implementation through Claude Code CLI.",
      "Review this repository and explain how Codex main thread planning flows into workflow/task/run Claude Code CLI execution.",
      "Ensure the aiskyhub/aiskyhub marketplace is available, then install codex-with-cc@aiskyhub for user scope."
    ]
  }
}