wicked-brain 0.18.0 → 0.18.1
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/install.mjs +10 -6
- package/package.json +1 -1
- package/server/package.json +1 -1
package/install.mjs
CHANGED
|
@@ -48,12 +48,16 @@ function resolveClaudeCandidates() {
|
|
|
48
48
|
// Canonical non-claude targets. Claude is expanded dynamically via
|
|
49
49
|
// resolveClaudeCandidates() below so CLI_TARGETS stays a flat spec.
|
|
50
50
|
const CLI_TARGETS = [
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
{ name: "
|
|
56
|
-
{ name: "
|
|
51
|
+
// Paths verified against each CLI's own source of truth:
|
|
52
|
+
// - Copilot CLI loads personal custom skills from ~/.copilot/skills/ (not ~/.github/skills).
|
|
53
|
+
// - Antigravity / Gemini CLI load global custom skills from ~/.gemini/config/skills/
|
|
54
|
+
// (confirmed by the Antigravity agent; not ~/.gemini/skills or ~/.antigravity/skills).
|
|
55
|
+
{ name: "gemini", dir: join(home, ".gemini", "config", "skills"), platform: "gemini" },
|
|
56
|
+
{ name: "copilot", dir: join(home, ".copilot", "skills"), platform: "copilot" },
|
|
57
|
+
{ name: "codex", dir: join(home, ".codex", "skills"), platform: "codex" },
|
|
58
|
+
{ name: "cursor", dir: join(home, ".cursor", "skills"), platform: "cursor" },
|
|
59
|
+
{ name: "kiro", dir: join(home, ".kiro", "skills"), platform: "kiro" },
|
|
60
|
+
{ name: "antigravity", dir: join(home, ".gemini", "config", "skills"), platform: "antigravity" },
|
|
57
61
|
];
|
|
58
62
|
|
|
59
63
|
// Identity-marker gate for claude candidates. Without this, probing
|
package/package.json
CHANGED