You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 🧪 Powerful file filtering to focus the AI's attention on specific scrolls of code
28
28
- 📚 Handles file output with proper directory creation spells
29
29
- 📥 Supports reading enchantments from stdin
30
+
- 🖼️ Includes image attachment capabilities for visual context
30
31
31
32
## 🧙 Installation
32
33
@@ -85,9 +86,18 @@ Include specific scrolls:
85
86
wiz prompt -f main.py -f utils.py "How can I make these files more efficient?"
86
87
```
87
88
89
+
Add images for visual context:
90
+
91
+
```bash
92
+
wiz prompt -i screenshot.png "What UI improvements would you suggest based on this screenshot?"
93
+
```
94
+
88
95
Options:
89
96
-`-f, --file`: Specify files to include (can be used multiple times)
97
+
-`-i, --image`: Include image files as context (can be used multiple times)
90
98
-`-o, --output`: Location to write response (default: `.response.md`)
99
+
-`-m, --max-tokens`: Maximum tokens for the response (default: 60000)
100
+
-`-t, --thinking-tokens`: Maximum tokens for Claude's thinking process (default: 16000)
91
101
92
102
The wizard's response will be saved to `.response.md` by default, and a copy of the full messages including system prompt will be saved to `.messages.md`.
93
103
@@ -132,6 +142,18 @@ Conjure a new feature:
132
142
wiz prompt "Add a progress bar to the file processing function"
133
143
```
134
144
145
+
Get feedback on UI design with an image:
146
+
147
+
```bash
148
+
wiz prompt -i design.png -f styles.css "How can I improve this layout?"
149
+
```
150
+
151
+
Adjust token limits for complex analysis:
152
+
153
+
```bash
154
+
wiz prompt -m 80000 -t 20000 "Perform a comprehensive security audit of this codebase"
0 commit comments