@oh-my-pi/cli 0.3.0 → 0.4.0
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/.editorconfig +14 -0
- package/.prettierrc +6 -0
- package/README.md +65 -71
- package/bun.lock +13 -10
- package/dist/cli.js +114 -34
- package/dist/commands/config.d.ts.map +1 -1
- package/dist/commands/features.d.ts.map +1 -1
- package/dist/commands/install.d.ts.map +1 -1
- package/dist/commands/list.d.ts.map +1 -1
- package/dist/commands/uninstall.d.ts.map +1 -1
- package/dist/commands/update.d.ts.map +1 -1
- package/dist/runtime.d.ts.map +1 -1
- package/dist/symlinks.d.ts +1 -0
- package/dist/symlinks.d.ts.map +1 -1
- package/package.json +11 -4
- package/plugins/exa/README.md +44 -38
- package/plugins/exa/package.json +44 -11
- package/plugins/exa/tools/exa/company.ts +24 -13
- package/plugins/exa/tools/exa/index.ts +43 -34
- package/plugins/exa/tools/exa/linkedin.ts +24 -13
- package/plugins/exa/tools/exa/researcher.ts +26 -18
- package/plugins/exa/tools/exa/search.ts +31 -20
- package/plugins/exa/tools/exa/shared.ts +182 -156
- package/plugins/exa/tools/exa/websets.ts +39 -28
- package/plugins/metal-theme/package.json +13 -4
- package/plugins/subagents/README.md +3 -0
- package/plugins/subagents/agents/explore.md +11 -0
- package/plugins/subagents/agents/planner.md +3 -0
- package/plugins/subagents/agents/reviewer.md +6 -0
- package/plugins/subagents/agents/task.md +8 -1
- package/plugins/subagents/commands/architect-plan.md +1 -0
- package/plugins/subagents/commands/implement-with-critic.md +1 -0
- package/plugins/subagents/commands/implement.md +1 -0
- package/plugins/subagents/package.json +43 -11
- package/plugins/subagents/tools/task/index.ts +1089 -861
- package/plugins/user-prompt/README.md +22 -66
- package/plugins/user-prompt/package.json +15 -4
- package/plugins/user-prompt/tools/user-prompt/index.ts +185 -157
- package/scripts/bump-version.sh +10 -13
- package/src/cli.ts +1 -1
- package/src/commands/config.ts +21 -6
- package/src/commands/features.ts +49 -12
- package/src/commands/install.ts +91 -24
- package/src/commands/list.ts +14 -3
- package/src/commands/uninstall.ts +4 -1
- package/src/commands/update.ts +6 -1
- package/src/runtime.ts +3 -10
- package/src/symlinks.ts +12 -7
|
@@ -9,29 +9,34 @@ You are a worker agent for delegated tasks. You operate in an isolated context w
|
|
|
9
9
|
Do what has been asked; nothing more, nothing less. Work autonomously using all available tools.
|
|
10
10
|
|
|
11
11
|
Your strengths:
|
|
12
|
+
|
|
12
13
|
- Searching for code, configurations, and patterns across large codebases
|
|
13
14
|
- Analyzing multiple files to understand system architecture
|
|
14
15
|
- Investigating complex questions that require exploring many files
|
|
15
16
|
- Performing multi-step research and implementation tasks
|
|
16
17
|
|
|
17
18
|
Guidelines:
|
|
19
|
+
|
|
18
20
|
- For file searches: Use grep/glob when you need to search broadly. Use read when you know the specific file path.
|
|
19
21
|
- For analysis: Start broad and narrow down. Use multiple search strategies if the first doesn't yield results.
|
|
20
22
|
- Be thorough: Check multiple locations, consider different naming conventions, look for related files.
|
|
21
23
|
- NEVER create files unless absolutely necessary. ALWAYS prefer editing existing files.
|
|
22
|
-
- NEVER proactively create documentation files (
|
|
24
|
+
- NEVER proactively create documentation files (\*.md) or README files unless explicitly requested.
|
|
23
25
|
- Any file paths in your response MUST be absolute. Do NOT use relative paths.
|
|
24
26
|
- Include relevant code snippets in your final response.
|
|
25
27
|
|
|
26
28
|
Output format when finished:
|
|
27
29
|
|
|
28
30
|
## Completed
|
|
31
|
+
|
|
29
32
|
What was done.
|
|
30
33
|
|
|
31
34
|
## Files Changed
|
|
35
|
+
|
|
32
36
|
- `/absolute/path/to/file.ts` - what changed
|
|
33
37
|
|
|
34
38
|
## Key Code
|
|
39
|
+
|
|
35
40
|
Relevant snippets or signatures touched:
|
|
36
41
|
|
|
37
42
|
```language
|
|
@@ -39,8 +44,10 @@ Relevant snippets or signatures touched:
|
|
|
39
44
|
```
|
|
40
45
|
|
|
41
46
|
## Notes (if any)
|
|
47
|
+
|
|
42
48
|
Anything the main agent should know.
|
|
43
49
|
|
|
44
50
|
If handing off to another agent (e.g. reviewer), include:
|
|
51
|
+
|
|
45
52
|
- Exact file paths changed
|
|
46
53
|
- Key functions/types touched (short list)
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/subagents",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Task delegation system with specialized subagents (task, planner, explore, reviewer)",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"omp-plugin",
|
|
7
|
+
"agents",
|
|
8
|
+
"task-delegation"
|
|
9
|
+
],
|
|
6
10
|
"author": "Can Bölük <me@can.ac>",
|
|
7
11
|
"license": "MIT",
|
|
8
12
|
"repository": {
|
|
@@ -12,15 +16,43 @@
|
|
|
12
16
|
},
|
|
13
17
|
"omp": {
|
|
14
18
|
"install": [
|
|
15
|
-
{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
{
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
{
|
|
20
|
+
"src": "tools/task/index.ts",
|
|
21
|
+
"dest": "agent/tools/task/index.ts"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"src": "agents/task.md",
|
|
25
|
+
"dest": "agent/agents/task.md"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"src": "agents/planner.md",
|
|
29
|
+
"dest": "agent/agents/planner.md"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"src": "agents/explore.md",
|
|
33
|
+
"dest": "agent/agents/explore.md"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"src": "agents/reviewer.md",
|
|
37
|
+
"dest": "agent/agents/reviewer.md"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"src": "commands/implement.md",
|
|
41
|
+
"dest": "agent/commands/implement.md"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"src": "commands/implement-with-critic.md",
|
|
45
|
+
"dest": "agent/commands/implement-with-critic.md"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"src": "commands/architect-plan.md",
|
|
49
|
+
"dest": "agent/commands/architect-plan.md"
|
|
50
|
+
}
|
|
23
51
|
]
|
|
24
52
|
},
|
|
25
|
-
"files": [
|
|
53
|
+
"files": [
|
|
54
|
+
"agents",
|
|
55
|
+
"tools",
|
|
56
|
+
"commands"
|
|
57
|
+
]
|
|
26
58
|
}
|