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
Copy file name to clipboardExpand all lines: README.en.md
+35-45Lines changed: 35 additions & 45 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ English | [简体中文](README.md)
21
21
<tr>
22
22
<td width="50%" valign="top">
23
23
<h3>🤖 Intelligent Conversations</h3>
24
-
<p>Natural language interactions powered by LLMs with context understanding and multi-turn dialogues. Simply run <code>blade "task"</code> to launch the UI and auto-send your first message.</p>
24
+
<p>Natural language interactions powered by LLMs with context understanding and multi-turn dialogues. Simply run <code>blade</code> to launch the interactive UI.</p>
# Direct message (automatically sent once the UI is ready)
156
-
blade "What is artificial intelligence?"
157
-
158
-
# Code generation
159
-
blade "Write a debounce function in JavaScript"
156
+
# Non-interactive quick answer (print mode)
157
+
blade --print "What is artificial intelligence?"
160
158
161
-
#Non-interactive quick answer
162
-
blade --print "Summarize the repo in one sentence"
159
+
#Code generation (print mode)
160
+
blade --print "Write a debounce function in JavaScript"
163
161
```
164
162
165
-
> Any message passed as `blade "..."` is automatically injected and executed once the interactive UI finishes initializing—no extra keystrokes required.
166
-
167
163
### Smart Tool Invocation
168
164
169
165
Blade Code automatically selects appropriate tools based on your needs:
170
166
171
167
```bash
172
-
# File operations
173
-
blade "List all TypeScript files in the current directory"
168
+
# File operations (print mode)
169
+
blade --print "List all TypeScript files in the current directory"
174
170
175
-
# Git operations
176
-
blade "Show the last 5 commit logs"
171
+
# Git operations (print mode)
172
+
blade --print "Show the last 5 commit logs"
177
173
178
-
# Code review (non-interactive example)
174
+
# Code review (print mode)
179
175
blade --print "Review code quality in src/utils directory"
180
176
```
181
177
182
178
### Session Management
183
179
184
180
```bash
185
-
# Create or use named session
186
-
blade --session-id "project-alpha""Start new project"
181
+
# Create or use named session (print mode)
182
+
blade --session-id "project-alpha"--print "Start new project"
0 commit comments