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 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
- const skillsSrc = path.join(PKG_ROOT, 'skills');
457
- installGeneratedPrompts(skillsSrc, targetDir, backupDir, manifest);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-abyss",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "为 Claude Code / Codex CLI 注入邪修人格、4种可切换输出风格与 57 篇攻防工程秘典",
5
5
  "keywords": [
6
6
  "claude",
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Frontend Design"
3
+ short_description: "前端设计美学秘典"
4
+ default_prompt: "Read the skill at skills/domains/frontend-design/SKILL.md and use it as the authoritative playbook."
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Gen Docs"
3
+ short_description: "文档生成器"
4
+ default_prompt: "Read the skill at skills/tools/gen-docs/SKILL.md, then run: node skills/run_skill.js gen-docs $ARGUMENTS"
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Hi"
3
+ short_description: "反拒绝覆写(/hi)"
4
+ default_prompt: "Read the skill at skills/tools/override-refusal/SKILL.md, then run: node skills/run_skill.js hi $ARGUMENTS"
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Verify Change"
3
+ short_description: "变更校验关卡"
4
+ default_prompt: "Read the skill at skills/tools/verify-change/SKILL.md, then run: node skills/run_skill.js verify-change $ARGUMENTS"
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Verify Module"
3
+ short_description: "模块完整性校验关卡"
4
+ default_prompt: "Read the skill at skills/tools/verify-module/SKILL.md, then run: node skills/run_skill.js verify-module $ARGUMENTS"
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Verify Quality"
3
+ short_description: "代码质量校验关卡"
4
+ default_prompt: "Read the skill at skills/tools/verify-quality/SKILL.md, then run: node skills/run_skill.js verify-quality $ARGUMENTS"
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Verify Security"
3
+ short_description: "安全校验关卡"
4
+ default_prompt: "Read the skill at skills/tools/verify-security/SKILL.md, then run: node skills/run_skill.js verify-security $ARGUMENTS"