用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rongarede/skill-snapshots --skill codex-parser命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Technology scouting and evaluation for tools, frameworks, libraries, and technical approaches. Use when users need to evaluate technology options, compare frameworks, assess technical feasibility, scout emerging technologies, or make build-vs-buy decisions. Produces structured comparison matrices with objective criteria scoring.
使用 Semantic Scholar API 检索和验证学术论文。支持并发多关键词搜索、批量 ID/DOI 查询、引用分析、批量补全摘要、统一 Markdown 导出。覆盖 2.14 亿+ 学术论文,无需 API Key 即可使用。触发词:论文检索、论文验证、Semantic Scholar、S2 搜索、查论文、补全摘要、导出MD
中文/英文写作风格迁移与错误记忆工作流。适用于论文、学位论文、报告等场景,提供 style profile、error log、长期记忆与多智能体写作闭环。
正在显示 SKILL.md
基于 SOC 职业分类
| name | codex-parser |
| description | 解析 Codex CLI 输出日志,快速理解执行结果。触发词:/codex-parse、分析 codex 输出、查看 codex 日志 |
快速解析 Codex CLI 的 NDJSON 日志输出,无需全量读取。
/codex-parse/codex-parser目标目录需要先运行索引生成脚本:
bash <codex-outputs>/scripts/codex-index.sh
生成文件:
INDEX.json - 结构化索引MANIFEST.md - 可读摘要读取 MANIFEST.md 即可,包含:
cat <codex-outputs>/MANIFEST.md
用户指定批次时,读取对应日志的索引:
jq '.logs[] | select(.file | contains("batch-1"))' <codex-outputs>/INDEX.json
jq '.logs[] | select(.stats.failed_commands > 0) | {file, failed: .failed_commands_detail}' <codex-outputs>/INDEX.json
jq '.logs[] | {file, files_changed}' <codex-outputs>/INDEX.json
当需要详细分析时,读取原始 .log 文件:
# 提取推理过程
jq -r 'select(.type == "item.completed" and .item.type == "reasoning") | .item.text' <log_file>
# 提取命令执行
jq -c 'select(.type == "item.completed" and .item.type == "command_execution") | {cmd: .item.command, exit: .item.exit_code, out: .item.aggregated_output[0:200]}' <log_file>
# 提取文件变更
jq -r 'select(.type == "item.completed" and .item.type == "file_change") | .item.changes[] | "\(.kind): \(.path)"' <log_file>
## Codex 执行概览
| 批次 | 命令 | 失败 | 文件变更 | Token |
|------|------|------|----------|-------|
| batch-1 | 38 | 8 | 8 | 1.4M |
| batch-2 | 109 | 92 | 12 | 5.2M |
**总计**: 147 命令,100 失败,20 文件变更
### 失败命令 (Top 5)
1. `npm install spl-token-bankrun` → exit 1
2. ...
### 主要文件变更
- AGENTS.md (6 次更新)
- CHANGELOG.md (6 次更新)
- tests/integration/shared/* (3 个新文件)
## batch-1/P1-T01-T02.log 详情
**Thread ID**: 019bdfab-d47e-7ac0-af06-4a391ed8e77d
**Token**: 575K 输入 / 8K 输出
### 推理摘要
1. 决定使用 sed 直接修改文件
2. 检查 package.json 依赖
3. ...
### 执行命令 (16 条)
| # | 命令 | 结果 |
|---|------|------|
| 1 | `ls` | ✅ |
| 2 | `npm install spl-token-bankrun` | ❌ exit 1 |
| ... |
### 文件变更 (5 个)
- [update] AGENTS.md
- [update] CHANGELOG.md
- [update] package.json
当有新的 Codex 执行后,重新运行索引脚本:
bash <codex-outputs>/scripts/codex-index.sh