Parcourir la source

Revert "feat: echo skill base directory in use-skill"

This reverts commit a08f7de64b85a909d3e9c3b0075d9d3a7023d09f.
Jesse Vincent il y a 9 mois
Parent
commit
e416a0e105
2 fichiers modifiés avec 1 ajouts et 4 suppressions
  1. 1 3
      .codex/superpowers-codex
  2. 0 1
      RELEASE-NOTES.md

+ 1 - 3
.codex/superpowers-codex

@@ -232,8 +232,6 @@ function runUseSkill(skillName) {
     console.log(`# Supporting tools and docs are in ${skillDirectory}`);
     console.log('# ============================================');
     console.log('');
-    console.log(`Base directory for this skill: ${skillDirectory}`);
-    console.log('');
 
     // Display the skill content (without frontmatter)
     console.log(content);
@@ -266,4 +264,4 @@ switch (command) {
         console.log('  superpowers-codex use-skill superpowers:brainstorming');
         console.log('  superpowers-codex use-skill my-custom-skill');
         break;
-}
+}

+ 0 - 1
RELEASE-NOTES.md

@@ -9,7 +9,6 @@
   - Explicitly tells the model that using-superpowers is already loaded to prevent redundant skill loading
   - Consolidated bootstrap content generation into shared `getBootstrapContent()` helper
   - Cleaner single-implementation approach (removed fallback pattern)
-- **Codex Skill Loader**: `superpowers-codex use-skill` now prints `Base directory for this skill: ...`, mirroring Claude Code’s output so agents immediately know where the skill’s tools live (fixes confusion around locating binaries like `codex-subagent`).
 
 ---