omni-context-cli 0.0.13 → 0.0.15
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/dist/agents/quest.md +37 -37
- package/dist/cli.js +7 -7
- package/package.json +3 -1
package/dist/agents/quest.md
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: quest
|
|
3
|
-
description: Research topics using web search. Returns information matching what you need to know.
|
|
4
|
-
allowedTools: []
|
|
5
|
-
parameters:
|
|
6
|
-
properties:
|
|
7
|
-
query:
|
|
8
|
-
type: string
|
|
9
|
-
description: What to research.
|
|
10
|
-
expectedResult:
|
|
11
|
-
type: string
|
|
12
|
-
description: What result you expect—like "latest version number", "list of best practices", "comparison of approaches", or "code examples".
|
|
13
|
-
required: [query, expectedResult]
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
Query: {{query}}
|
|
17
|
-
Expected result: {{expectedResult}}
|
|
18
|
-
|
|
19
|
-
Use available web search tools to research the query. Gather information from multiple sources if needed for a comprehensive answer.
|
|
20
|
-
|
|
21
|
-
Extract and return the result according to the expected result description in this exact format:
|
|
22
|
-
```
|
|
23
|
-
Result: [extracted result matching the expected result description]
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
If sources are relevant, you may include them in a brief format:
|
|
27
|
-
```
|
|
28
|
-
Result: [extracted result matching the expected result description]
|
|
29
|
-
Sources: [brief list of sources if relevant]
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
If the research cannot find relevant information, return:
|
|
33
|
-
```
|
|
34
|
-
Not found: [brief explanation of what was searched]
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
Do not include explanations beyond the result format. Keep responses concise and structured.
|
|
1
|
+
---
|
|
2
|
+
name: quest
|
|
3
|
+
description: Research topics using web search and external knowledge bases. Returns information matching what you need to know.
|
|
4
|
+
allowedTools: []
|
|
5
|
+
parameters:
|
|
6
|
+
properties:
|
|
7
|
+
query:
|
|
8
|
+
type: string
|
|
9
|
+
description: What to research.
|
|
10
|
+
expectedResult:
|
|
11
|
+
type: string
|
|
12
|
+
description: What result you expect—like "latest version number", "list of best practices", "comparison of approaches", or "code examples".
|
|
13
|
+
required: [query, expectedResult]
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
Query: {{query}}
|
|
17
|
+
Expected result: {{expectedResult}}
|
|
18
|
+
|
|
19
|
+
Use available web search tools and external knowledge bases to research the query. Gather information from multiple sources if needed for a comprehensive answer.
|
|
20
|
+
|
|
21
|
+
Extract and return the result according to the expected result description in this exact format:
|
|
22
|
+
```
|
|
23
|
+
Result: [extracted result matching the expected result description]
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
If sources are relevant, you may include them in a brief format:
|
|
27
|
+
```
|
|
28
|
+
Result: [extracted result matching the expected result description]
|
|
29
|
+
Sources: [brief list of sources if relevant]
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
If the research cannot find relevant information, return:
|
|
33
|
+
```
|
|
34
|
+
Not found: [brief explanation of what was searched]
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Do not include explanations beyond the result format. Keep responses concise and structured.
|