tune-basic-toolset 0.1.20 → 0.1.21
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/README.md +33 -6
- package/package.json +1 -1
- package/src/search_tools.tool.chat +2 -1
package/README.md
CHANGED
|
@@ -207,15 +207,42 @@ TODOS:
|
|
|
207
207
|
Find appropriate tools for a given task by searching through available tools
|
|
208
208
|
```chat
|
|
209
209
|
user: @search_tools
|
|
210
|
-
|
|
210
|
+
what is in my current directory?
|
|
211
|
+
|
|
212
|
+
assistant:
|
|
213
|
+
I'll help you check what's in your current directory.
|
|
214
|
+
|
|
215
|
+
tool_call: search_tools
|
|
216
|
+
list files and folders in current directory
|
|
217
|
+
|
|
218
|
+
tool_result:
|
|
219
|
+
@sh "sh" - because it can run shell commands like `ls -la` to list files/folders on Unix-like systems
|
|
220
|
+
@cmd "cmd" - because it can execute `dir` to list directory contents on Windows cmd.exe
|
|
221
|
+
@powershell "powershell" - because it can run `Get-ChildItem` (alias `ls`) to list items on Windows PowerShell
|
|
222
|
+
@nu "nu" - because it can run Nushell commands like `ls` for structured directory listings
|
|
211
223
|
|
|
212
|
-
|
|
224
|
+
assistant:
|
|
225
|
+
Let me try with a shell command that works on most systems:
|
|
226
|
+
|
|
227
|
+
tool_call: sh
|
|
228
|
+
ls -la
|
|
213
229
|
|
|
214
|
-
tool_call: search_tools
|
|
215
|
-
I need to work with a database and manage todos
|
|
216
230
|
tool_result:
|
|
217
|
-
|
|
218
|
-
|
|
231
|
+
total 13584
|
|
232
|
+
drwxr-xr-x 15 iovdin staff 480 Jan 18 19:07 .
|
|
233
|
+
drwxr-xr-x 195 iovdin staff 6240 Jan 17 12:46 ..
|
|
234
|
+
drwxr-xr-x 14 iovdin staff 448 Jan 18 19:00 .git
|
|
235
|
+
drwxr-xr-x 3 iovdin staff 96 Sep 4 20:15 .github
|
|
236
|
+
-rw-r--r-- 1 iovdin staff 82 Aug 12 10:44 .gitignore
|
|
237
|
+
-rw-r--r-- 1 iovdin staff 316 Oct 21 21:41 .npmignore
|
|
238
|
+
drwxr-xr-x 32 iovdin staff 1024 Jan 18 18:59 chats
|
|
239
|
+
drwxr-xr-x 13 iovdin staff 416 Oct 25 09:32 node_modules
|
|
240
|
+
-rw-r--r-- 1 iovdin staff 8145 Oct 25 09:32 package-lock.json
|
|
241
|
+
-rw-r--r-- 1 iovdin staff 754 Jan 18 18:59 package.json
|
|
242
|
+
-rw-r--r-- 1 iovdin staff 18959 Jan 18 18:59 README.md
|
|
243
|
+
drwxr-xr-x 62 iovdin staff 1984 Jan 18 19:04 src
|
|
244
|
+
drwxr-xr-x 16 iovdin staff 512 Nov 9 09:14 test
|
|
245
|
+
|
|
219
246
|
```
|
|
220
247
|
|
|
221
248
|
This tool analyzes your task description and recommends the most relevant tools from the available toolset, explaining why each tool would be helpful for your specific use case.
|
package/package.json
CHANGED