Update Caveman Codex plugin integration

This commit is contained in:
KeyInfo Bot
2026-09-03 11:27:57 +08:00
parent cdfe190697
commit e780ed6213
26 changed files with 1887 additions and 13 deletions
+61 -8
View File
@@ -166,7 +166,16 @@
"category": "Developer Tools",
"sourcePath": "plugins/caveman",
"sparseCheckout": [
"plugins/caveman"
"package.json",
"plugins/caveman",
"skills/caveman-commit/SKILL.md",
"skills/caveman-review/SKILL.md",
"skills/investigate-first",
"skills/lean-build",
"skills/migration",
"skills/safe-refactor",
"skills/surgical-patch",
"skills/verify-and-stop"
],
"include": [
".codex-plugin",
@@ -175,15 +184,49 @@
"agents"
],
"excludePaths": [
"skills/caveman-stats",
"skills/caveman-compress"
"skills/caveman-stats"
],
"materializePaths": [
{
"source": "skills/caveman-commit/SKILL.md",
"destination": "skills/caveman-commit/SKILL.md"
},
{
"source": "skills/caveman-review/SKILL.md",
"destination": "skills/caveman-review/SKILL.md"
},
{
"source": "skills/investigate-first",
"destination": "skills/investigate-first"
},
{
"source": "skills/lean-build",
"destination": "skills/lean-build"
},
{
"source": "skills/migration",
"destination": "skills/migration"
},
{
"source": "skills/safe-refactor",
"destination": "skills/safe-refactor"
},
{
"source": "skills/surgical-patch",
"destination": "skills/surgical-patch"
},
{
"source": "skills/verify-and-stop",
"destination": "skills/verify-and-stop"
}
],
"manifestVersionPath": "package.json",
"manifestOverrides": {
"description": "Caveman 是面向 Codex 的极简输出风格和压缩式协作 skill 集合。",
"description": "Caveman 是面向 Codex 的精简表达、代码工作流和上下文压缩 skill 集合。",
"interface": {
"displayName": "Caveman",
"shortDescription": " Codex 输出更短,同时保留技术准确性。",
"longDescription": "Caveman 提供简输出风格和压缩式子 Agent 协作指引。此公共市场版本只发布 Codex plugin 内可直接使用的 skills;不包含上游一键安装器、Claude Code hooks/statusline、MCP shrink、根目录 slash commands,以及依赖 Anthropic API 或 Claude CLI 的压缩脚本 skill。",
"shortDescription": "精简 Codex 输出,并提供调查、实现、迁移、重构、评审和验证工作流。",
"longDescription": "Caveman 提供简输出、提交信息、代码评审、问题调查、精益实现、安全重构、迁移、补丁和验证工作流。另含可选的 caveman-compress;它需要 Python 3.10 及 Anthropic API Key 或 Claude CLI,仅在用户明确指定文件后把该文件内容发送给 Anthropic。Claude Code 专用统计 hooksstatusline、Caveman CLI、代理和 MCP shrink 不包含在此插件中。",
"developerName": "Julius Brussee",
"category": "Developer Tools",
"capabilities": [
@@ -192,7 +235,8 @@
],
"defaultPrompt": [
"使用 Caveman 模式回答,压缩表达但保留技术准确性。",
"使用 Cavecrew 帮我判断这个任务是否适合分派给压缩输出的子 Agent。"
"使用 investigate-first 先调查这个故障的可信根因。",
"使用 surgical-patch 对这个问题做最小且经过验证的修复。"
],
"websiteURL": "https://github.com/JuliusBrussee/caveman",
"privacyPolicyURL": "https://github.com/JuliusBrussee/caveman/blob/main/README.md",
@@ -202,7 +246,16 @@
},
"skillDescriptions": {
"caveman": "让 Codex 使用更短、更直接的表达,同时保留代码、命令、错误和技术细节。",
"cavecrew": "判断何时使用压缩输出的调查、编辑或评审子 Agent,以降低长会话上下文消耗。"
"cavecrew": "判断何时使用压缩输出的调查、编辑或评审子 Agent,以降低长会话上下文消耗。",
"caveman-compress": "压缩 Markdown 等自然语言文件并保留可读备份;需要 Python 3.10 和 Anthropic API Key 或 Claude CLI。",
"caveman-commit": "生成精简、准确且符合 Conventional Commits 的提交信息,不执行 Git 操作。",
"caveman-review": "以文件和行号为中心输出简短、可执行的代码评审发现。",
"investigate-first": "在修改代码前收集证据、排列假设并确定可信根因。",
"lean-build": "以最小完整范围实现功能,并以明确验收条件约束扩展。",
"migration": "规划并实施可回滚、兼容且保护现有数据的迁移。",
"safe-refactor": "在保持外部行为不变的前提下进行结构调整并验证结果。",
"surgical-patch": "在职责归属最窄的层修复缺陷,并提供针对性回归验证。",
"verify-and-stop": "运行满足验收条件所需的最小验证集,避免额外扩大范围。"
}
},
{