@zhiman_innies/innies-codex 0.122.26 → 0.122.28

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.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: using-superpowers
3
- description: Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
3
+ description: Use when starting any conversation - establishes how to find and use skills, requiring native skill loading before ANY response including clarifying questions
4
4
  ---
5
5
 
6
6
  <SUBAGENT-STOP>
@@ -27,6 +27,8 @@ If CLAUDE.md, GEMINI.md, or AGENTS.md says "don't use TDD" and a skill says "alw
27
27
 
28
28
  ## How to Access Skills
29
29
 
30
+ **In Codex/Innies:** Skills are loaded natively from `SKILL.md` files. Read the relevant `SKILL.md` path provided in the skills list, then follow it directly. Do not run `skill <name>` or `activate_skill <name>` as shell commands; those commands do not exist in Codex/Innies.
31
+
30
32
  **In Claude Code:** Use the `Skill` tool. When you invoke a skill, its content is loaded and presented to you—follow it directly. Never use the Read tool on skill files.
31
33
 
32
34
  **In Gemini CLI:** Skills activate via the `activate_skill` tool. Gemini loads skill metadata at session start and activates the full content on demand.
@@ -50,7 +52,7 @@ digraph skill_flow {
50
52
  "Already brainstormed?" [shape=diamond];
51
53
  "Invoke brainstorming skill" [shape=box];
52
54
  "Might any skill apply?" [shape=diamond];
53
- "Invoke Skill tool" [shape=box];
55
+ "Load skill instructions" [shape=box];
54
56
  "Announce: 'Using [skill] to [purpose]'" [shape=box];
55
57
  "Has checklist?" [shape=diamond];
56
58
  "Create TodoWrite todo per item" [shape=box];
@@ -63,9 +65,9 @@ digraph skill_flow {
63
65
  "Invoke brainstorming skill" -> "Might any skill apply?";
64
66
 
65
67
  "User message received" -> "Might any skill apply?";
66
- "Might any skill apply?" -> "Invoke Skill tool" [label="yes, even 1%"];
68
+ "Might any skill apply?" -> "Load skill instructions" [label="yes, even 1%"];
67
69
  "Might any skill apply?" -> "Respond (including clarifications)" [label="definitely not"];
68
- "Invoke Skill tool" -> "Announce: 'Using [skill] to [purpose]'";
70
+ "Load skill instructions" -> "Announce: 'Using [skill] to [purpose]'";
69
71
  "Announce: 'Using [skill] to [purpose]'" -> "Has checklist?";
70
72
  "Has checklist?" -> "Create TodoWrite todo per item" [label="yes"];
71
73
  "Has checklist?" -> "Follow skill exactly" [label="no"];
@@ -13,6 +13,10 @@ Skills use Claude Code tool names. When you encounter these in a skill, use your
13
13
  | `Read`, `Write`, `Edit` (files) | Use your native file tools |
14
14
  | `Bash` (run commands) | Use your native shell tools |
15
15
 
16
+ Do not run shell commands such as `skill <name>` or `activate_skill <name>`.
17
+ Those are not Codex/Innies commands. Load the skill by reading its `SKILL.md`
18
+ through the available file-reading mechanism and then follow the instructions.
19
+
16
20
  ## Subagent dispatch requires multi-agent support
17
21
 
18
22
  Add to your Codex config (`~/.codex/config.toml`):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhiman_innies/innies-codex",
3
- "version": "0.122.26",
3
+ "version": "0.122.28",
4
4
  "license": "Apache-2.0",
5
5
  "bin": {
6
6
  "innies": "bin/innies.js"
@@ -23,7 +23,7 @@
23
23
  "postinstall": "node bin/innies-init.js"
24
24
  },
25
25
  "optionalDependencies": {
26
- "@zhiman_innies/innies-codex-darwin-x64": "0.122.26-darwin-x64",
27
- "@zhiman_innies/innies-codex-darwin-arm64": "0.122.26-darwin-arm64"
26
+ "@zhiman_innies/innies-codex-darwin-x64": "0.122.28-darwin-x64",
27
+ "@zhiman_innies/innies-codex-darwin-arm64": "0.122.28-darwin-arm64"
28
28
  }
29
29
  }