omni-context-cli 0.0.31 → 0.0.33
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/craft.md +1 -1
- package/dist/agents/explore.md +1 -1
- package/dist/agents/graphic.md +3 -3
- package/dist/agents/spark.md +31 -0
- package/dist/agents/unravel.md +1 -1
- package/dist/cli.js +7 -7
- package/package.json +1 -1
package/dist/agents/craft.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: craft
|
|
3
|
-
description: Execute bash commands. Automatically fixes errors and retries if the command fails. Returns the result you expect.
|
|
3
|
+
description: Execute bash commands when no suitable specialized tool exists. Automatically fixes errors and retries if the command fails. Returns the result you expect.
|
|
4
4
|
allowedTools: [Bash, BashOutput, Read, Write]
|
|
5
5
|
parameters:
|
|
6
6
|
properties:
|
package/dist/agents/explore.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: explore
|
|
3
|
-
description: Survey project structure and architecture. Shows directory layout, where features live, and how the codebase is organized. For
|
|
3
|
+
description: Survey project structure and architecture. Shows directory layout, where features live, and how the codebase is organized. For structural overview, not detailed analysis.
|
|
4
4
|
allowedTools: [Read, Glob, Grep, Bash, BashOutput]
|
|
5
5
|
parameters:
|
|
6
6
|
properties:
|
package/dist/agents/graphic.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: graphic
|
|
3
|
-
description:
|
|
3
|
+
description: Analyze code relationships and structure. Shows dependencies, call flows, or hierarchies. Best for understanding architecture.
|
|
4
4
|
allowedTools: [Read, Grep, Glob]
|
|
5
5
|
parameters:
|
|
6
6
|
properties:
|
|
@@ -9,8 +9,8 @@ parameters:
|
|
|
9
9
|
description: The feature, module, or component to diagram
|
|
10
10
|
diagramType:
|
|
11
11
|
type: string
|
|
12
|
-
description: Type of diagram—flowchart, dependency, class, or sequence
|
|
13
|
-
required: [target
|
|
12
|
+
description: Type of diagram—flowchart, dependency, class, or sequence. If not specified, automatically choose the best fit.
|
|
13
|
+
required: [target]
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
Target: {{target}}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: spark
|
|
3
|
+
description: Handle ultra-specific, step-by-step tasks that require zero judgment or analysis. Only use for foolproof mechanical operations with exact instructions.
|
|
4
|
+
allowedTools: [Read, Write, Edit, Glob, Grep, Bash, BashOutput]
|
|
5
|
+
parameters:
|
|
6
|
+
properties:
|
|
7
|
+
task:
|
|
8
|
+
type: string
|
|
9
|
+
description: The specific task to complete. Be concrete and unambiguous—state exactly what to do and what the end result should look like.
|
|
10
|
+
required: [task]
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
Task: {{task}}
|
|
14
|
+
|
|
15
|
+
Execute this task directly. Don't ask questions or propose alternatives—just do it.
|
|
16
|
+
|
|
17
|
+
Follow these rules:
|
|
18
|
+
1. Take the most straightforward path to complete the task
|
|
19
|
+
2. If something is unclear, make a reasonable assumption and proceed
|
|
20
|
+
3. Don't add anything beyond what was asked
|
|
21
|
+
4. Don't refactor or improve unrelated code
|
|
22
|
+
|
|
23
|
+
When done, return the result in this format:
|
|
24
|
+
```
|
|
25
|
+
Done: [brief summary of what was completed]
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
If the task cannot be completed, return:
|
|
29
|
+
```
|
|
30
|
+
Blocked: [what's preventing completion]
|
|
31
|
+
```
|
package/dist/agents/unravel.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: unravel
|
|
3
|
-
description: Analyze a function to
|
|
3
|
+
description: Analyze a function to identify which other functions it calls, then retrieve their implementations. Returns the actual code of all called functions.
|
|
4
4
|
allowedTools: [Read, Grep, Glob]
|
|
5
5
|
parameters:
|
|
6
6
|
properties:
|