Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

run-codex-subagentsRUN Codex subagents 搜索

Agent Skill

run-codex-subagents 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

614

周安装

8

GitHub Stars

5

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:run-codex-subagents(RUN Codex subagents 搜索)
来源仓库:https://github.com/yigitkonur/skills-by-yigitkonur
仓库路径:skills/run-codex-subagents
安装命令:
npx skills add https://github.com/yigitkonur/skills-by-yigitkonur --skill run-codex-subagents
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yigitkonur/skills-by-yigitkonur --skill run-codex-subagents

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • run-codex-subagents 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Orchestrate Codex Work with codex-worker

Use this skill when delegating coding, research, verification, or follow-up work through the released codex-worker CLI.

This skill intentionally tracks the public installed surface, not unreleased repo-local commands. Re-check codex-worker --help before relying on anything outside the references below.

Trigger Boundaries

Use this skill for:

  • launching file-backed Codex work through codex-worker run
  • continuing an existing thread through send, thread resume, or turn steer
  • monitoring progress through read, logs, and wait
  • answering blocked runtime requests through request list, request read, and request respond
  • recovering failed or interrupted work from local artifacts and daemon state

Do not use for:

  • MCP server setup or mcpc testing
  • changing codex-worker source code unless the user explicitly asks
  • general Codex/OpenAI documentation questions

Prerequisites

  1. Verify the CLI: codex-worker --help
  2. If it is missing, install it first: sudo -v; curl -fsSL https://github.com/yigitkonur/codex-worker/releases/latest/download/install.sh | sudo bash Or user-local: curl -fsSL https://github.com/yigitkonur/codex-worker/releases/latest/download/install.sh | bash -s -- --install-dir "$HOME/.local/bin" Fallback: npm install -g codex-worker
  3. Confirm runtime health: codex-worker --output json doctor
  4. Prompts are file-backed. Write a .md file before dispatching.

Current Command Families

GroupCommandsBest for
Friendly aliasesrun, send, read, logsfastest file-backed orchestration flows
Protocol-first controlthread start/resume/read/list, turn start/steer/interrupt, request respond, waitexplicit thread/turn/request control
Diagnosticsdoctor, daemon start/status/stopenvironment and daemon checks
Environment inspectionmodel list, account read/rate-limits, skills list, app listruntime visibility and discovery

There is no task layer, no session layer, no monitor, no review, no exec, and no request answer helper in the released CLI this skill targets.

Canonical Workflow

1. Write the prompt file

Each prompt file should define:

  • what the worker should do
  • which files matter
  • what must not be touched
  • what success looks like
  • which commands prove success

2. Start the work

Blocking one-shot:

codex-worker run task.md

Async launch:

codex-worker --output json run task.md --async

Supported run flags in the released CLI:

  • --cwd <dir>
  • --model <id>
  • --async
  • --timeout <ms>

3. Monitor and inspect

Use the returned threadId:

codex-worker wait --thread-id <thread-id> --timeout 300000
codex-worker read <thread-id> --tail 50
codex-worker logs <thread-id> --tail 100

Use:

  • wait to block on terminal state
  • read for thread state plus local artifact paths
  • logs for readable execution output

4. Answer blocked requests

When the thread status becomes waiting_request:

codex-worker request list --status pending
codex-worker request read <request-id>
codex-worker request respond <request-id> --decision accept

For free-text answers:

codex-worker request respond <request-id> --answer "Yes" --question-id <id>

For unusual payloads, inspect first and then use raw JSON:

codex-worker request respond <request-id> --json '{"result":{"approved":true}}'

5. Continue or recover

Friendly continuation:

codex-worker send <thread-id> followup.md

Protocol-first continuation:

codex-worker turn steer <thread-id> <turn-id> followup.md

Interrupt an active turn:

codex-worker turn interrupt <thread-id> <turn-id>

Inspect before retrying:

codex-worker read <thread-id> --tail 50
codex-worker logs <thread-id> --tail 100
codex-worker doctor

Quick Reference

NeedCommand
One-shot taskcodex-worker run task.md
Async launchcodex-worker --output json run task.md --async
Continue an existing threadcodex-worker send <thread-id> followup.md
Inspect thread statecodex-worker read <thread-id> --tail 50
Inspect readable logscodex-worker logs <thread-id> --tail 100
Wait for completioncodex-worker wait --thread-id <thread-id> --timeout 300000
Answer a requestcodex-worker request respond <request-id>...
Read raw request payloadcodex-worker request read <request-id>
Start a thread explicitlycodex-worker thread start --cwd /abs/project --model gpt-5.4
Start a turn explicitlycodex-worker turn start <thread-id> prompt.md

Status Meanings

Use read or thread list output to reason about state:

StatusMeaningNext move
runningturn is activewait, read, or logs
waiting_requestblocked on runtime inputrequest listrequest readrequest respond
completedturn finished successfullyinspect artifacts or send a follow-up
failedturn ended with an errorinspect read, logs, and doctor
interruptedturn was cancelled or stoppedinspect and decide whether to resume or restart
idlethread exists without an active turnsend, turn start, or thread resume

Machine-Readable Output

Use --output json for shell composition:

codex-worker --output json run task.md --async
codex-worker --output json read <thread-id>
codex-worker --output json thread list --cwd /abs/project
codex-worker --output json request list --status pending

Prefer JSON output over parsing text.

State Layout

Default state root: ~/.codex-worker/ (override: CODEX_WORKER_STATE_DIR).

Key paths:

  • registry.json — local thread/turn/request state
  • daemon.json / daemon.sock — daemon connection info
  • workspaces/<hash>/threads/<id>.jsonl — transcript events
  • workspaces/<hash>/logs/<id>.output — readable log
  • workspaces/<hash>/logs/<id>.raw.ndjson — raw protocol log when available

Reference Files

FileWhen to read
references/command-reference.mdFull current command and flag surface for the released codex-worker CLI
references/orchestration-patterns.mdBlocking, async, continuation, and multi-wave orchestration loops
references/request-handling.mdCorrect request respond payload patterns
references/recovery-and-diagnostics.mdFailure triage, artifact reading, and doctor usage
references/composability-and-exit-codes.mdJSON mode, shell composition, and command behavior
references/prompt-bundles.mdPrompt-file behavior and continuation patterns
references/prompt-writing.mdWriting better Markdown prompt files
references/runtime-config.mdRuntime inheritance and model/provider behavior
references/templates/coder-mission.mdImplementation prompt template
references/templates/research-mission.mdAudit/exploration prompt template
references/templates/batch-wave.mdMulti-wave orchestration prompt template
references/templates/test-runner.mdVerification-focused prompt template
references/scripts/batch-status.shThread-list summary helper for multi-run shells
references/scripts/merged-monitor.shMerge raw monitor streams for threads that expose raw logs

Guardrails

  • Do not invent a task or session subcommand layer.
  • Do not use request answer; the released CLI only exposes request respond.
  • Do not assume unreleased flags such as --follow, --plan, --skip-plan, --label, or --compact unless --help shows them.
  • Do not rely on monitor, review, exec, or thread rollback unless you have verified you are on a newer unreleased build; they are not part of the released surface this skill targets.
  • Do not reuse stale turn ids without re-reading current thread state.
  • Do not treat waiting_request as failure.
  • Do not claim a run is irrecoverable until you have checked read, logs, and doctor.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.76%
按下载量换算25

Claude

29.47%
按下载量换算19

Cursor

19.74%
按下载量换算13

Gemini CLI

9.19%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/yigitkonur/skills-by-yigitkonur --skill run-codex-subagents 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills