Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

codex-devCodex DEV 开发

Agent Skill

codex-dev 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,714

周安装

413

GitHub Stars

公开资料未说明

下载量

3,403
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:codex-dev(Codex DEV 开发)
来源仓库:https://github.com/fzhlian/codex-dev
安装命令:
openclaw skills install codex-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install codex-dev

简介

将 Codex 作为后台本地作业运行,并提供即时收据、保存的日志和补丁工件、可选的 Telegram 通知以及显式的工作目录支持。

SKILL.md

name
codex-dev
description
Run Codex as a background local job with an immediate receipt, saved logs and patch artifacts, optional Telegram notifications, and explicit workdir support.

codex-dev

Use this skill when the user wants asynchronous Codex execution instead of a long-lived interactive session.

当用户希望把 Codex 任务放到后台执行、先拿到作业回执、并在完成后查看摘要或接收 Telegram 通知时,使用这个 skill。

What it does | 功能说明

  • Starts a background Codex job and returns a receipt immediately
  • 启动后台 Codex 作业,并立即返回回执
  • Stores artifacts under $HOME/.codex-dev/jobs/<job-id>/
  • 将作业产物保存到 $HOME/.codex-dev/jobs/<job-id>/
  • Supports task.txt, status.json, codex.out.log, summary.txt, and patch.txt
  • 保存 task.txtstatus.jsoncodex.out.logsummary.txtpatch.txt
  • Can optionally send a completion summary to Telegram
  • 可选地在完成后把摘要发送到 Telegram
  • Supports an explicit work directory via --workdir
  • 支持通过 --workdir 明确指定工作目录
  • Works well for Telegram-triggered development flows and local CLI wrappers
  • 适合 Telegram 驱动的开发流程和本地命令行包装

Files | 文件组成

  • Main entrypoint: scripts/codex-dev-dispatch
  • 主入口:scripts/codex-dev-dispatch
  • Worker: scripts/codex-dev-worker
  • Worker:scripts/codex-dev-worker
  • Telegram helper: scripts/telegram-notify
  • Telegram 辅助脚本:scripts/telegram-notify
  • Optional installer: scripts/install-local.sh
  • 可选安装脚本:scripts/install-local.sh
  • Local setup reference: references/local-setup.md
  • 本地配置参考:references/local-setup.md

When to use it | 适用场景

Prefer this skill for any request that should:

  • modify files asynchronously
  • return a job receipt first
  • run against a specific working directory
  • keep a patch/log trail for later inspection

If the user only wants read-only inspection, a normal direct response is usually enough.

Common examples:

  • "Fix one small issue, but give me a receipt first."
  • "Run this Codex task in the background and notify me in Telegram when it finishes."
  • "Only modify files under this specific directory."
  • “修一个小问题,但先给我作业回执。”
  • “把这个 Codex 任务放到后台跑,完成后发 Telegram 给我。”
  • “只修改这个指定目录下的文件。”

Invocation | 调用方式

Run the dispatcher script directly from the installed skill folder: 从已安装的 skill 目录直接运行分发脚本:

./scripts/codex-dev-dispatch "Inspect the repo and fix one issue."

Or with an explicit work directory: 或显式指定工作目录:

./scripts/codex-dev-dispatch --workdir /absolute/path "Fix the issue only in this directory."

Query status and summary: 查询状态和摘要:

./scripts/codex-dev-dispatch status <job-id>
./scripts/codex-dev-dispatch show <job-id>
./scripts/codex-dev-dispatch help

If installed with local wrappers, the same flow can be exposed as: 如果已安装本地包装命令,也可以这样使用:

codex-dev "Fix one issue and summarize the change."
codex-help
codex-dev-status <job-id>
codex-dev-show <job-id>

常见中文用法:

codex-dev "修复一个小问题并总结修改"
codex-dev --workdir /absolute/path "只在这个目录里完成修改"
codex-help

Environment | 环境变量

Optional environment variables: 可选环境变量:

  • CODEX_DEV_DEFAULT_WORKDIR
  • CODEX_DEV_JOBS_ROOT
  • CODEX_DEV_CHAT_ID
  • TELEGRAM_BOT_TOKEN
  • CODEX_DEV_OPENCLAW_CONFIG

If TELEGRAM_BOT_TOKEN is unset, the worker will try to read botToken from CODEX_DEV_OPENCLAW_CONFIG and then from ~/.openclaw/openclaw.json. 如果 TELEGRAM_BOT_TOKEN 未设置,worker 会尝试先从 CODEX_DEV_OPENCLAW_CONFIG,再从 ~/.openclaw/openclaw.json 中读取 botToken

Workdir behavior | 工作目录行为

  • --workdir must be an absolute existing path
  • Codex executes in that work directory
  • If the work directory is inside a git repo, patch.txt is generated relative to the detected repo root

Idempotency | 幂等性

For write requests, prefer idempotent changes. If the requested content already exists, do not append or duplicate it; state that clearly in the summary. 对于写入型请求,优先保持幂等。如果目标内容已经存在,不要重复追加,并在摘要中明确说明。

Notes | 说明

  • This publishable package contains the skill and helper scripts only
  • OpenClaw agent bindings, Telegram bindings, and local workspace wrappers remain local installation details
  • Use references/local-setup.md when you need to wire the installed skill into a local OpenClaw agent
  • The package is intentionally generic: repository path, Telegram chat id, and default workdir are all local configuration
  • 这个包刻意保持通用化:仓库路径、Telegram chat id 和默认工作目录都应在本地配置
  • 这个社区包发布的是 skill 和脚本,不包含你的本地 agent 绑定状态
  • 仓库路径、Telegram chat id、默认工作目录等都需要在本地自行配置

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

85.2%
按下载量换算2,899

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills