Token导航 LogoToken导航TokenDH.com
研究检索敏感数据githubverified来源可访问clear审计提醒

codex-readiness-unit-testCodex readiness unit 测试

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

1,812

周安装

74

GitHub Stars

17,932

下载量

586
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/openai/skills --skill codex-readiness-unit-test

简介

codex-readiness-unit-test 基于文档质量评估代理准备度,无需外部 API。

  • 仅扫描当前目录,禁止 monorepo 发现,输出严格 JSON 格式。
  • 支持证据收集与 LLM 内联评估,保持确定性执行流程。
  • 需确保技能脚本路径正确且具备文件系统访问权限。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

LLM Codex Readiness Unit Test

Instruction-first, in-session "readiness" for evaluating AGENTS/PLANS documentation quality without any external APIs or SDKs. All checks run against the current working directory (cwd), with no monorepo discovery. Each run writes to .codex-readiness-unit-test/<timestamp>/ and updates .codex-readiness-unit-test/latest.json. Keep execution deterministic (filesystem scanning + local command execution only). All LLM evaluation happens in-session and must output strict JSON via the provided references.

Quick Start

  1. Collect evidence:

- python skills/codex-readiness-unit-test/bin/collect_evidence.py

  1. Run deterministic checks:

- python skills/codex-readiness-unit-test/bin/deterministic_rules.py

  1. Run LLM checks using references in references/ and store .codex-readiness-unit-test/<timestamp>/llm_results.json.
  2. If execute mode is requested, build a plan, get confirmation, run:

- python skills/codex-readiness-unit-test/bin/run_plan.py --plan.codex-readiness-unit-test/<timestamp>/plan.json

  1. Generate the report:

- python skills/codex-readiness-unit-test/bin/scoring.py --mode read-only|execute

Outputs (per run, under .codex-readiness-unit-test/<timestamp>/):

  • report.json
  • report.html
  • summary.json
  • logs/* (execute mode)

Runbook

This skill produces a deterministic evidence file plus an in-session LLM evaluation, then compiles a JSON report and HTML scorecard. It requires no OpenAI API key and makes no external HTTP calls.

Minimal Inputs

  • mode: read-only or execute (required)
  • soft_timeout_seconds: optional (default 600)

Modes (Read-only vs Execute)

  • Read-only: Collect evidence, run deterministic rules, and run LLM checks #3–#5. No commands are executed, check #6 is marked NOT_RUN, and no execution logs/summary are produced.
  • Execute: Everything in read-only plus a confirmed plan.json is executed via run_plan.py. This enables check #6 and produces execution logs + execution_summary.json for scoring.

Always ask the user which mode to run (read-only vs. execute) before proceeding.

Check Types

  • Deterministic: filesystem-only checks (#1 AGENTS.md exists, #2 PLANS.md exists, #3 AGENTS.md <= 300 lines, #4 config.toml exists at repo root, repo.codex/, or user.codex/)
  • LLM: in-session Codex evaluation (#3 project context, #4 commands, #5 loops; commands may live in AGENTS or referenced skills)
  • Hybrid: deterministic execution + LLM rationale (#6 execution)

Skill references are discovered from AGENTS.md via $SkillName or .codex/skills/<name> patterns; their SKILL.md files are added to evidence for the LLM checks.

All checks run relative to the current working directory and are defined in skills/codex-readiness-unit-test/references/checks/checks.json, weighted equally by default. Each run writes outputs to .codex-readiness-unit-test/<timestamp>/ and updates .codex-readiness-unit-test/latest.json. The helper scripts read .codex-readiness-unit-test/latest.json by default to locate the latest run directory.

Strict JSON + Retry Loop (Required)

For each LLM/HYBRID check:

  1. Run the specialized prompt expecting strict JSON.
  2. If JSON is invalid or missing keys, run skills/codex-readiness-unit-test/references/json_fix.md with the raw output.
  3. Retry up to 2 additional attempts (max 3 total).
  4. If still invalid: mark the check as WARN with rationale: "Invalid JSON from evaluator after retries".

The JSON schema is:

{
  "status": "PASS|WARN|FAIL|NOT_RUN",
  "rationale": "string",
  "evidence_quotes": [{"path":"...","quote":"..."}],
  "recommendations": ["..."],
  "confidence": 0.0
}

Single Confirmation (Required)

Combine the command summary and execute plan into one concise confirmation step. Present:

  • The extracted build/test/dev loop commands (human-readable, labeled).
  • The planned execute details (cwd, ordered commands, soft timeout policy, env). Ask for a single confirmation to proceed. Do not paste raw JSON, full evidence, or the full plan.json. If declined, mark execute-required checks as NOT_RUN.

Required Files

  • .codex-readiness-unit-test/<timestamp>/evidence.json (from collect_evidence.py)
  • .codex-readiness-unit-test/<timestamp>/deterministic_results.json (from deterministic_rules.py)
  • .codex-readiness-unit-test/<timestamp>/llm_results.json (from in-session references)
  • .codex-readiness-unit-test/<timestamp>/execution_summary.json (execute mode only)
  • .codex-readiness-unit-test/<timestamp>/report.json and .codex-readiness-unit-test/<timestamp>/report.html (from scoring.py)
  • .codex-readiness-unit-test/<timestamp>/summary.json (structured pass/fail summary from scoring.py)
  • .codex-readiness-unit-test/latest.json (stable pointer to the latest run directory)

Prompt Mapping

  • #3 project_context_specifiedskills/codex-readiness-unit-test/references/project_context.md
  • #4 build_test_commands_existskills/codex-readiness-unit-test/references/commands.md
  • #5 dev_build_test_loops_documentedskills/codex-readiness-unit-test/references/loop_quality.md
  • #6 dev_build_test_loop_executionskills/codex-readiness-unit-test/references/execution_explanation.md

plan.json schema (execute mode)

{
  "project_dir": "relative/or/absolute/path (optional)",
  "cwd": "optional/absolute/path (defaults to current directory)",
  "commands": [
    {"label": "setup", "cmd": "npm install"},
    {"label": "build", "cmd": "npm run build"},
    {"label": "test", "cmd": "npm test"}
  ],
  "env": {
    "EXAMPLE": "value"
  }
}

Place plan.json inside the run directory (e.g., .codex-readiness-unit-test/<timestamp>/plan.json).

llm_results.json schema

{
  "project_context_specified": {"status":"PASS","rationale":"...","evidence_quotes":[],"recommendations":[],"confidence":0.7},
  "build_test_commands_exist": {"status":"PASS","rationale":"...","evidence_quotes":[],"recommendations":[],"confidence":0.7},
  "dev_build_test_loops_documented": {"status":"WARN","rationale":"...","evidence_quotes":[],"recommendations":[],"confidence":0.6},
  "dev_build_test_loop_execution": {"status":"PASS","rationale":"...","evidence_quotes":[],"recommendations":[],"confidence":0.6}
}

Scoring Rules

  • PASS = 100% of weight
  • WARN = 50% of weight
  • FAIL/NOT_RUN = 0%
  • Overall status: FAIL if any FAIL; else WARN if any WARN or NOT_RUN; else PASS.

Safety + Timeouts

  • Denylisted commands are not executed and marked FAIL.
  • Soft timeout defaults to 600s; hard cap defaults to 3x soft timeout.
  • Execution logs are written to .codex-readiness-unit-test/<timestamp>/logs/.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.74%
按下载量换算163

Codex

22.52%
按下载量换算132

OpenCode

16.2%
按下载量换算95

Gemini CLI

13.76%
按下载量换算81

Antigravity

7.46%
按下载量换算44

Cursor

3.07%
按下载量换算18

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills