@wbern/claude-instructions 1.6.0 → 1.7.0
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.
|
@@ -57,8 +57,9 @@ echo "Review this code for bugs and suggest fixes" > ~/.claude/commands/review.m
|
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
### Command with Arguments
|
|
60
|
+
**Note for AI**: The example below uses a fullwidth dollar sign ($, U+FF04) to prevent interpolation in this documentation. When creating actual commands, use the regular `$` character.
|
|
60
61
|
```markdown
|
|
61
|
-
Fix issue
|
|
62
|
+
Fix issue $ARGUMENTS following our coding standards
|
|
62
63
|
```
|
|
63
64
|
|
|
64
65
|
### Command with File References
|
|
@@ -81,9 +82,10 @@ Create commit for these changes.
|
|
|
81
82
|
**Note**: Only works with commands in the current project directory.
|
|
82
83
|
|
|
83
84
|
### Namespaced Command
|
|
85
|
+
**Note for AI**: The example below uses a fullwidth dollar sign ($, U+FF04) to prevent interpolation in this documentation. When creating actual commands, use the regular `$` character.
|
|
84
86
|
```bash
|
|
85
87
|
mkdir -p ~/.claude/commands/ai
|
|
86
|
-
echo "Ask GPT-5 about: ARGUMENTS" > ~/.claude/commands/ai/gpt5.md
|
|
88
|
+
echo "Ask GPT-5 about: $ARGUMENTS" > ~/.claude/commands/ai/gpt5.md
|
|
87
89
|
# Creates: /ai:gpt5
|
|
88
90
|
```
|
|
89
91
|
|
|
@@ -57,8 +57,9 @@ echo "Review this code for bugs and suggest fixes" > ~/.claude/commands/review.m
|
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
### Command with Arguments
|
|
60
|
+
**Note for AI**: The example below uses a fullwidth dollar sign ($, U+FF04) to prevent interpolation in this documentation. When creating actual commands, use the regular `$` character.
|
|
60
61
|
```markdown
|
|
61
|
-
Fix issue
|
|
62
|
+
Fix issue $ARGUMENTS following our coding standards
|
|
62
63
|
```
|
|
63
64
|
|
|
64
65
|
### Command with File References
|
|
@@ -81,9 +82,10 @@ Create commit for these changes.
|
|
|
81
82
|
**Note**: Only works with commands in the current project directory.
|
|
82
83
|
|
|
83
84
|
### Namespaced Command
|
|
85
|
+
**Note for AI**: The example below uses a fullwidth dollar sign ($, U+FF04) to prevent interpolation in this documentation. When creating actual commands, use the regular `$` character.
|
|
84
86
|
```bash
|
|
85
87
|
mkdir -p ~/.claude/commands/ai
|
|
86
|
-
echo "Ask GPT-5 about: ARGUMENTS" > ~/.claude/commands/ai/gpt5.md
|
|
88
|
+
echo "Ask GPT-5 about: $ARGUMENTS" > ~/.claude/commands/ai/gpt5.md
|
|
87
89
|
# Creates: /ai:gpt5
|
|
88
90
|
```
|
|
89
91
|
|