Nymbo commited on
Commit
1a033fc
·
verified ·
1 Parent(s): e1583dc

adding some newer tools to the README that were missing

Browse files
Files changed (1) hide show
  1. README.md +41 -3
README.md CHANGED
@@ -29,6 +29,9 @@ Live Space: https://huggingface.co/spaces/Nymbo/Tools
29
  - Generate Image: Text-to-image via Hugging Face serverless inference (choose model, steps, CFG, size, seed).
30
  - Generate Video: Text-to-video via Hugging Face serverless inference (model, steps, guidance, size, fps, duration, seed).
31
  - Deep Research: Multi-query web research pipeline (DDG search + parallel fetch + LLM report synthesis) with downloadable report.
 
 
 
32
  - File System: Safe, sandboxed filesystem operations under a tool root.
33
  - Shell Command: Run shell commands inside the same safe root as File System.
34
 
@@ -97,10 +100,10 @@ Inputs:
97
  - url (str): Absolute URL to fetch (must return HTML).
98
  - max_chars (int, default 3000): 0 = full page; otherwise truncates with a next_cursor notice.
99
  - strip_selectors (str): Comma-separated CSS selectors to remove (e.g., .header, .footer, nav).
100
- - url_scraper (bool): If true, return only a list of links from the page.
101
  - offset (int): Character offset for pagination; pass the previous next_cursor to continue.
102
 
103
- Output: Markdown string. If truncated, includes a next_cursor to continue.
104
 
105
  ### Web_Search (DuckDuckGo backend)
106
  Inputs:
@@ -192,6 +195,41 @@ Inputs:
192
  Output:
193
  - Combined header + STDOUT/STDERR. Absolute paths disabled by default. Shell is detected automatically (PowerShell on Windows when available; bash/sh on POSIX).
194
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  ## Running on Hugging Face Spaces
196
 
197
  1) Duplicate the Space at https://huggingface.co/spaces/Nymbo/Tools.
@@ -213,4 +251,4 @@ Output:
213
 
214
  ## License
215
 
216
- Apache-2.0 (see Space metadata). If you duplicate the Space or use these tools, ensure your usage complies with the licenses and terms of the underlying models and providers.
 
29
  - Generate Image: Text-to-image via Hugging Face serverless inference (choose model, steps, CFG, size, seed).
30
  - Generate Video: Text-to-video via Hugging Face serverless inference (model, steps, guidance, size, fps, duration, seed).
31
  - Deep Research: Multi-query web research pipeline (DDG search + parallel fetch + LLM report synthesis) with downloadable report.
32
+ - Agent Skills: Discover, inspect, and access specialized agent skills and resources.
33
+ - Agent Terminal: Execute Python code to chain multiple tools together (e.g., fetch -> summarize -> save) efficiently.
34
+ - Obsidian Vault: Read-only access to an Obsidian vault (list, read, search notes) with safelisted paths.
35
  - File System: Safe, sandboxed filesystem operations under a tool root.
36
  - Shell Command: Run shell commands inside the same safe root as File System.
37
 
 
100
  - url (str): Absolute URL to fetch (must return HTML).
101
  - max_chars (int, default 3000): 0 = full page; otherwise truncates with a next_cursor notice.
102
  - strip_selectors (str): Comma-separated CSS selectors to remove (e.g., .header, .footer, nav).
103
+ - mode (str): "markdown" (default), "html", or "url_scraper" (returns list of links).
104
  - offset (int): Character offset for pagination; pass the previous next_cursor to continue.
105
 
106
+ Output: Markdown string, raw HTML, or link list. If truncated, includes a next_cursor to continue.
107
 
108
  ### Web_Search (DuckDuckGo backend)
109
  Inputs:
 
195
  Output:
196
  - Combined header + STDOUT/STDERR. Absolute paths disabled by default. Shell is detected automatically (PowerShell on Windows when available; bash/sh on POSIX).
197
 
198
+ ### Agent_Skills (Skill Discovery)
199
+ Inputs:
200
+ - action: "discover" | "info" | "resources" | "validate" | "search" | "help"
201
+ - skill_name (str): Required for info/resources/validate.
202
+ - resource_path (str): Specific file to read within a skill.
203
+ - query (str): Search term for "search" action.
204
+ - max_chars (int), offset (int)
205
+
206
+ Output:
207
+ - Detailed skill metadata, SKILL.md content, resource file content, or validation reports.
208
+
209
+ ### Agent_Terminal (Tool Chaining)
210
+ Inputs:
211
+ - input (str): Python source code to execute.
212
+ - Can call any other tool (e.g., `Web_Fetch(...)`, `File_System(...)`).
213
+ - Use `search_tools("query")` to find tools.
214
+ - Call a tool with no args to get its usage guide.
215
+
216
+ Output:
217
+ - Captured STDOUT validation of the script.
218
+
219
+ ### Obsidian_Vault (Read-only Note Access)
220
+ Root:
221
+ - Defaults to `Tools/Obsidian` (or OBSIDIAN_VAULT_ROOT).
222
+
223
+ Inputs:
224
+ - action: "list" | "read" | "info" | "search" | "help"
225
+ - path (str): Relative to vault root (start with /).
226
+ - query (str): For search action.
227
+ - recursive (bool), show_hidden (bool), max_entries (int)
228
+ - offset (int), max_chars (int)
229
+
230
+ Output:
231
+ - File listings, note content, or search results (with context).
232
+
233
  ## Running on Hugging Face Spaces
234
 
235
  1) Duplicate the Space at https://huggingface.co/spaces/Nymbo/Tools.
 
251
 
252
  ## License
253
 
254
+ Apache-2.0 (see Space metadata). If you duplicate the Space or use these tools, ensure your usage complies with the licenses and terms of the underlying models and providers.