phewsh 0.15.43 → 0.15.44

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.
@@ -28,10 +28,14 @@ If there is no \`.intent/\` directory here, say so and tell me I can create one
28
28
 
29
29
  // Tools that support file-based custom slash commands, and how each wants them.
30
30
  // parentDir must already exist (the tool is installed) before we write.
31
+ //
32
+ // Claude Code is deliberately EXCLUDED: it already ships a phewsh `/intent`
33
+ // SKILL (the artifact generator) and gets the SessionStart hook brief, so a
34
+ // global `/intent` command here just collides with the canonical one (two
35
+ // `/intent` entries). We add `/intent` only where it's genuinely absent.
31
36
  const SLASH_TARGETS = [
32
- { id: 'claude-code', parent: '.claude', sub: 'commands', file: 'intent.md', fmt: 'claude' },
33
- { id: 'codex', parent: '.codex', sub: 'prompts', file: 'intent.md', fmt: 'codex' },
34
- { id: 'gemini', parent: '.gemini', sub: 'commands', file: 'intent.toml', fmt: 'gemini' },
37
+ { id: 'codex', parent: '.codex', sub: 'prompts', file: 'intent.md', fmt: 'codex' },
38
+ { id: 'gemini', parent: '.gemini', sub: 'commands', file: 'intent.toml', fmt: 'gemini' },
35
39
  ];
36
40
 
37
41
  function bodyFor(fmt) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phewsh",
3
- "version": "0.15.43",
3
+ "version": "0.15.44",
4
4
  "description": "Turn intent into action. Structure your thinking, execute your next step.",
5
5
  "bin": {
6
6
  "phewsh": "bin/phewsh.js"