@thacio/auditaria 0.30.12 → 0.30.13
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 +14 -10
- package/bundle/docs/admin/enterprise-controls.md +115 -0
- package/bundle/docs/changelogs/index.md +20 -1
- package/bundle/docs/changelogs/latest.md +359 -293
- package/bundle/docs/changelogs/preview.md +296 -349
- package/bundle/docs/cli/checkpointing.md +2 -3
- package/bundle/docs/cli/cli-reference.md +4 -5
- package/bundle/docs/cli/commands.md +376 -650
- package/bundle/docs/cli/custom-commands.md +3 -0
- package/bundle/docs/cli/enterprise.md +1 -1
- package/bundle/docs/cli/gemini-md.md +20 -12
- package/bundle/docs/cli/headless.md +34 -372
- package/bundle/docs/cli/keyboard-shortcuts.md +36 -35
- package/bundle/docs/cli/plan-mode.md +5 -1
- package/bundle/docs/cli/rewind.md +11 -11
- package/bundle/docs/cli/session-management.md +61 -44
- package/bundle/docs/cli/settings.md +10 -5
- package/bundle/docs/cli/skills.md +15 -8
- package/bundle/docs/cli/themes.md +85 -51
- package/bundle/docs/cli/tutorials/automation.md +187 -0
- package/bundle/docs/cli/tutorials/file-management.md +142 -0
- package/bundle/docs/cli/tutorials/mcp-setup.md +105 -0
- package/bundle/docs/cli/tutorials/memory-management.md +126 -0
- package/bundle/docs/cli/tutorials/session-management.md +105 -0
- package/bundle/docs/cli/tutorials/shell-commands.md +107 -0
- package/bundle/docs/cli/tutorials/skills-getting-started.md +36 -31
- package/bundle/docs/cli/tutorials/task-planning.md +93 -0
- package/bundle/docs/cli/tutorials/web-tools.md +78 -0
- package/bundle/docs/core/policy-engine.md +4 -2
- package/bundle/docs/core/subagents.md +38 -38
- package/bundle/docs/extensions/best-practices.md +102 -53
- package/bundle/docs/extensions/index.md +37 -21
- package/bundle/docs/extensions/reference.md +148 -216
- package/bundle/docs/extensions/releasing.md +93 -122
- package/bundle/docs/extensions/writing-extensions.md +87 -76
- package/bundle/docs/get-started/configuration.md +103 -61
- package/bundle/docs/get-started/examples.md +39 -119
- package/bundle/docs/get-started/index.md +5 -4
- package/bundle/docs/get-started/installation.md +110 -77
- package/bundle/docs/index.md +156 -108
- package/bundle/docs/releases.md +2 -2
- package/bundle/docs/sidebar.json +101 -61
- package/bundle/docs/tools/activate-skill.md +43 -0
- package/bundle/docs/tools/ask-user.md +1 -1
- package/bundle/docs/tools/file-system.md +43 -133
- package/bundle/docs/tools/index.md +92 -91
- package/bundle/docs/tools/internal-docs.md +46 -0
- package/bundle/docs/tools/mcp-server.md +2 -2
- package/bundle/docs/tools/memory.md +21 -40
- package/bundle/docs/tools/shell.md +43 -88
- package/bundle/docs/tools/todos.md +22 -44
- package/bundle/docs/tools/web-fetch.md +22 -46
- package/bundle/docs/tools/web-search.md +19 -29
- package/bundle/gemini.js +138221 -136590
- package/bundle/mcp-bridge.js +154 -143
- package/bundle/node_modules/@browserbasehq/stagehand/dist/index.js +430 -257
- package/bundle/node_modules/@thacio/auditaria-search/dist/tsconfig.tsbuildinfo +1 -1
- package/bundle/web-client/components/EditorPanel.js +57 -36
- package/bundle/web-client/components/FileTreePanel.js +77 -2
- package/bundle/web-client/index.html +5 -1
- package/bundle/web-client/managers/EditorManager.js +190 -24
- package/bundle/web-client/styles/themes.css +376 -0
- package/bundle/web-client/utils/theme-manager.js +33 -1
- package/package.json +6 -6
- package/bundle/docs/architecture.md +0 -80
- package/bundle/docs/cli/index.md +0 -67
- package/bundle/docs/cli/tutorials.md +0 -87
- package/bundle/docs/get-started/configuration-v1.md +0 -882
|
@@ -1,59 +1,35 @@
|
|
|
1
1
|
# Web fetch tool (`web_fetch`)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The `web_fetch` tool allows the Gemini agent to retrieve and process content
|
|
4
|
+
from specific URLs provided in your prompt.
|
|
4
5
|
|
|
5
|
-
##
|
|
6
|
+
## Technical reference
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
in a prompt. `web_fetch` takes a natural language prompt and returns a generated
|
|
10
|
-
response.
|
|
8
|
+
The agent uses this tool when you include URLs in your prompt and request
|
|
9
|
+
specific operations like summarization or extraction.
|
|
11
10
|
|
|
12
11
|
### Arguments
|
|
13
12
|
|
|
14
|
-
`
|
|
13
|
+
- `prompt` (string, required): A request containing up to 20 valid URLs
|
|
14
|
+
(starting with `http://` or `https://`) and instructions on how to process
|
|
15
|
+
them.
|
|
15
16
|
|
|
16
|
-
|
|
17
|
-
(up to 20) to fetch and specific instructions on how to process their content.
|
|
18
|
-
For example:
|
|
19
|
-
`"Summarize https://example.com/article and extract key points from https://another.com/data"`.
|
|
20
|
-
The prompt must contain at least one URL starting with `http://` or
|
|
21
|
-
`https://`.
|
|
17
|
+
## Technical behavior
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
- **Confirmation:** Triggers a confirmation dialog showing the converted URLs.
|
|
20
|
+
- **Processing:** Uses the Gemini API's `urlContext` for retrieval.
|
|
21
|
+
- **Fallback:** If API access fails, the tool attempts to fetch raw content
|
|
22
|
+
directly from your local machine.
|
|
23
|
+
- **Formatting:** Returns a synthesized response with source attribution.
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
contains URLs. The tool will ask for confirmation before fetching any URLs. Once
|
|
27
|
-
confirmed, the tool will process URLs through Gemini API's `urlContext`.
|
|
25
|
+
## Use cases
|
|
28
26
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
provide the response to the user.
|
|
27
|
+
- Summarizing technical articles or blog posts.
|
|
28
|
+
- Comparing data between two or more web pages.
|
|
29
|
+
- Extracting specific information from a documentation site.
|
|
33
30
|
|
|
34
|
-
|
|
31
|
+
## Next steps
|
|
35
32
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
## `web_fetch` examples
|
|
41
|
-
|
|
42
|
-
Summarize a single article:
|
|
43
|
-
|
|
44
|
-
```
|
|
45
|
-
web_fetch(prompt="Can you summarize the main points of https://example.com/news/latest")
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
Compare two articles:
|
|
49
|
-
|
|
50
|
-
```
|
|
51
|
-
web_fetch(prompt="What are the differences in the conclusions of these two papers: https://arxiv.org/abs/2401.0001 and https://arxiv.org/abs/2401.0002?")
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
## Important notes
|
|
55
|
-
|
|
56
|
-
- **URL processing:** `web_fetch` relies on the Gemini API's ability to access
|
|
57
|
-
and process the given URLs.
|
|
58
|
-
- **Output quality:** The quality of the output will depend on the clarity of
|
|
59
|
-
the instructions in the prompt.
|
|
33
|
+
- Follow the [Web tools guide](../cli/tutorials/web-tools.md) for practical
|
|
34
|
+
usage examples.
|
|
35
|
+
- See the [Web search tool reference](./web-search.md) for general queries.
|
|
@@ -1,42 +1,32 @@
|
|
|
1
1
|
# Web search tool (`google_web_search`)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The `google_web_search` tool allows the Gemini agent to retrieve up-to-date
|
|
4
|
+
information, news, and facts from the internet via Google Search.
|
|
4
5
|
|
|
5
|
-
##
|
|
6
|
+
## Technical reference
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
sources.
|
|
8
|
+
The agent uses this tool when your request requires knowledge of current events
|
|
9
|
+
or specific online documentation not available in its internal training data.
|
|
10
10
|
|
|
11
11
|
### Arguments
|
|
12
12
|
|
|
13
|
-
`
|
|
13
|
+
- `query` (string, required): The search query to be executed.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
## Technical behavior
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
- **Grounding:** Returns a generated summary based on search results.
|
|
18
|
+
- **Citations:** Includes source URIs and titles for factual grounding.
|
|
19
|
+
- **Processing:** The Gemini API processes the search results before returning a
|
|
20
|
+
synthesized response to the agent.
|
|
18
21
|
|
|
19
|
-
|
|
20
|
-
performs a web search. `google_web_search` will return a generated response
|
|
21
|
-
based on the search results, including citations and sources.
|
|
22
|
+
## Use cases
|
|
22
23
|
|
|
23
|
-
|
|
24
|
+
- Researching the latest version of a software library or API.
|
|
25
|
+
- Finding solutions to recent software bugs or security vulnerabilities.
|
|
26
|
+
- Retrieving news or documentation updated after the model's knowledge cutoff.
|
|
24
27
|
|
|
25
|
-
|
|
26
|
-
google_web_search(query="Your query goes here.")
|
|
27
|
-
```
|
|
28
|
+
## Next steps
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
```
|
|
34
|
-
google_web_search(query="latest advancements in AI-powered code generation")
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
## Important notes
|
|
38
|
-
|
|
39
|
-
- **Response returned:** The `google_web_search` tool returns a processed
|
|
40
|
-
summary, not a raw list of search results.
|
|
41
|
-
- **Citations:** The response includes citations to the sources used to generate
|
|
42
|
-
the summary.
|
|
30
|
+
- Follow the [Web tools guide](../cli/tutorials/web-tools.md) for practical
|
|
31
|
+
usage examples.
|
|
32
|
+
- Explore the [Web fetch tool reference](./web-fetch.md) for direct URL access.
|