@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 CHANGED
@@ -1,72 +1,26 @@
1
- # @illusory/pi-agents
1
+ # @illusoryai/pi-agents
2
2
 
3
- Agent orchestration and governance definitions for pi.
3
+ Reusable agent definitions for pi-subagents delegation.
4
4
 
5
5
  ## Agents
6
6
 
7
- ### scout
8
- **Model:** claude-haiku-4-5
9
- **Tools:** read, bash, grep, find, ls
10
- **Output:** context.md
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
- ### implement-issue
34
- **Flow:** scout → planner → td-worker
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
- ## Installation
54
-
55
- This package is part of the @illusory monorepo. Install from the monorepo root:
19
+ ## Install
56
20
 
57
21
  ```bash
58
- npm install
22
+ pi install npm:@illusoryai/pi-agents
59
23
  ```
60
24
 
61
- Or publish and install individually:
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
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: planner
3
3
  description: Analysis and implementation plans
4
- model: claude-sonnet-4-5
4
+ model: claude-opus-4-6
5
+ thinking: high
5
6
  tools: read, bash, grep, find, ls
6
7
  output: plan.md
7
8
  defaultReads: context.md
package/agents/scout.md CHANGED
@@ -2,6 +2,7 @@
2
2
  name: scout
3
3
  description: Fast codebase recon
4
4
  model: claude-haiku-4-5
5
+ thinking: high
5
6
  tools: read, bash, grep, find, ls
6
7
  output: context.md
7
8
  ---
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: td-worker
3
3
  description: Executes work with full td lifecycle
4
- model: claude-sonnet-4-5
4
+ model: claude-opus-4-6
5
5
  thinking: high
6
6
  tools: read, write, edit, bash, td
7
7
  defaultReads: context.md, plan.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@illusoryai/pi-agents",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "keywords": [