code-abyss 2.0.5 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/install.js +2 -2
- package/bin/lib/skill-registry.js +1 -1
- package/package.json +1 -1
- package/skills/domains/frontend-design/agents/openai.yaml +4 -0
- package/skills/tools/gen-docs/agents/openai.yaml +4 -0
- package/skills/tools/override-refusal/agents/openai.yaml +4 -0
- package/skills/tools/verify-change/agents/openai.yaml +4 -0
- package/skills/tools/verify-module/agents/openai.yaml +4 -0
- package/skills/tools/verify-quality/agents/openai.yaml +4 -0
- package/skills/tools/verify-security/agents/openai.yaml +4 -0
package/bin/install.js
CHANGED
|
@@ -453,8 +453,8 @@ function installCore(tgt, selectedStyle) {
|
|
|
453
453
|
const skillsSrc = path.join(PKG_ROOT, 'skills');
|
|
454
454
|
installGeneratedCommands(skillsSrc, targetDir, backupDir, manifest);
|
|
455
455
|
} else if (tgt === 'codex') {
|
|
456
|
-
|
|
457
|
-
|
|
456
|
+
// Codex 0.117.0+ 已移除 custom prompts,skills 通过 agents/openai.yaml 注册
|
|
457
|
+
// 不再生成 prompts/ 目录
|
|
458
458
|
installCodexAgents(targetDir, backupDir, manifest, selectedStyle);
|
|
459
459
|
}
|
|
460
460
|
|
|
@@ -159,7 +159,7 @@ function collectSkills(skillsDir) {
|
|
|
159
159
|
|
|
160
160
|
for (const entry of entries) {
|
|
161
161
|
if (!entry.isDirectory()) continue;
|
|
162
|
-
if (entry.name === 'scripts' || shouldSkip(entry.name)) continue;
|
|
162
|
+
if (entry.name === 'scripts' || entry.name === 'agents' || shouldSkip(entry.name)) continue;
|
|
163
163
|
scan(path.join(dir, entry.name));
|
|
164
164
|
}
|
|
165
165
|
}
|
package/package.json
CHANGED