@illusoryai/pi-agents 0.1.0 → 0.1.2
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 -60
- package/agents/planner.md +2 -1
- package/agents/scout.md +1 -0
- package/agents/td-worker.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,72 +1,26 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @illusoryai/pi-agents
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Reusable agent definitions for pi-subagents delegation.
|
|
4
4
|
|
|
5
5
|
## Agents
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Fast codebase reconnaissance. Quickly surveys the landscape, identifies key files, and gathers relevant context.
|
|
13
|
-
|
|
14
|
-
### planner
|
|
15
|
-
**Model:** claude-sonnet-4-5
|
|
16
|
-
**Tools:** read, bash, grep, find, ls
|
|
17
|
-
**Output:** plan.md
|
|
18
|
-
**Reads:** context.md
|
|
19
|
-
|
|
20
|
-
Creates detailed implementation plans based on scout's context. Analyzes deeply, designs solutions, and produces step-by-step execution plans.
|
|
21
|
-
|
|
22
|
-
### td-worker
|
|
23
|
-
**Model:** claude-sonnet-4-5
|
|
24
|
-
**Thinking:** high
|
|
25
|
-
**Tools:** read, write, edit, bash, td
|
|
26
|
-
**Reads:** context.md, plan.md
|
|
27
|
-
**Skill:** td-tasks
|
|
28
|
-
|
|
29
|
-
Executes work following the full td task management lifecycle. Implements plans, logs progress, and communicates via td.
|
|
7
|
+
| Agent | Model | Purpose |
|
|
8
|
+
|-------|-------|---------|
|
|
9
|
+
| `scout` | claude-haiku-4-5 | Fast codebase recon — surveys files, extracts context |
|
|
10
|
+
| `planner` | claude-opus-4-6 | Analysis and implementation plans |
|
|
11
|
+
| `td-worker` | claude-opus-4-6 | Executes work with full td lifecycle |
|
|
30
12
|
|
|
31
13
|
## Chains
|
|
32
14
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
Complete implementation pipeline:
|
|
37
|
-
1. **scout** analyzes the codebase and outputs context.md
|
|
38
|
-
2. **planner** reads context.md and creates plan.md
|
|
39
|
-
3. **td-worker** reads both and executes the implementation with td lifecycle
|
|
40
|
-
|
|
41
|
-
## Usage
|
|
42
|
-
|
|
43
|
-
After installing this package, agents and chains are automatically available via pi-subagents:
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
# Run a single agent
|
|
47
|
-
/run scout analyze the auth system
|
|
48
|
-
|
|
49
|
-
# Run the full implementation chain
|
|
50
|
-
/chain implement-issue fix the login bug
|
|
51
|
-
```
|
|
15
|
+
| Chain | Pipeline | Description |
|
|
16
|
+
|-------|----------|-------------|
|
|
17
|
+
| `implement-issue` | scout → planner → td-worker | Full implementation pipeline |
|
|
52
18
|
|
|
53
|
-
##
|
|
54
|
-
|
|
55
|
-
This package is part of the @illusory monorepo. Install from the monorepo root:
|
|
19
|
+
## Install
|
|
56
20
|
|
|
57
21
|
```bash
|
|
58
|
-
|
|
22
|
+
pi install npm:@illusoryai/pi-agents
|
|
59
23
|
```
|
|
60
24
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
```bash
|
|
64
|
-
npm publish
|
|
65
|
-
pi install npm:@illusory/pi-agents
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
## Dependencies
|
|
69
|
-
|
|
70
|
-
- `@mariozechner/pi-ai` - Core pi AI library
|
|
71
|
-
- `@mariozechner/pi-coding-agent` - Pi coding agent framework
|
|
72
|
-
- `pi-subagents` - Subagent orchestration extension
|
|
25
|
+
Requires `npm:pi-subagents` as peer dependency.
|
|
26
|
+
Private package — requires npm auth configured in `~/.npmrc`.
|
package/agents/planner.md
CHANGED
package/agents/scout.md
CHANGED
package/agents/td-worker.md
CHANGED