@leclabs/agent-toolkit 1.9.1 → 2.0.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/README.md +37 -38
- package/bin/setup-agent-toolkit.js +2 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,13 +40,8 @@ flowchart TD
|
|
|
40
40
|
## Quick Start
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
#
|
|
44
|
-
/flow:
|
|
45
|
-
|
|
46
|
-
# Create a task using any command
|
|
47
|
-
/flow:feat "add user authentication"
|
|
48
|
-
/flow:bug "fix login redirect loop"
|
|
49
|
-
/flow:task "refactor the settings module"
|
|
43
|
+
# Create a task with a workflow
|
|
44
|
+
/flow:task "add user authentication"
|
|
50
45
|
|
|
51
46
|
# Execute all pending tasks
|
|
52
47
|
/flow:go
|
|
@@ -54,19 +49,13 @@ flowchart TD
|
|
|
54
49
|
|
|
55
50
|
## Commands
|
|
56
51
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
|
60
|
-
|
|
|
61
|
-
| `/flow:
|
|
62
|
-
| `/flow:
|
|
63
|
-
| `/flow:
|
|
64
|
-
| `/flow:fix` | quick-task | Quick fix, minimal ceremony |
|
|
65
|
-
| `/flow:spec` | test-coverage | Analyze and improve test coverage |
|
|
66
|
-
| `/flow:ctx` | context-optimization | Optimize agent context and prompts |
|
|
67
|
-
| `/flow:ui` | ui-reconstruction | Reconstruct UI from reference |
|
|
68
|
-
| `/flow:go` | _(runs task queue)_ | Execute all pending tasks |
|
|
69
|
-
| `/flow:recon` | _(exploration)_ | Deep project reconnaissance |
|
|
52
|
+
| Command | Description |
|
|
53
|
+
| ------------- | -------------------------------------------- |
|
|
54
|
+
| `/flow:task` | Create a task and choose a workflow |
|
|
55
|
+
| `/flow:go` | Execute all pending tasks |
|
|
56
|
+
| `/flow:recon` | Deep project reconnaissance |
|
|
57
|
+
| `/flow:list` | List available workflows |
|
|
58
|
+
| `/flow:setup` | Set up workflows and agents for your project |
|
|
70
59
|
|
|
71
60
|
## Workflows
|
|
72
61
|
|
|
@@ -89,27 +78,37 @@ Commands are the primary human interface. Type a command to create a task with t
|
|
|
89
78
|
| execute | 3 | Single-step workflow: just do the thing |
|
|
90
79
|
| hitl-test | 5 | Minimal HITL recovery test: work, gate, escalate |
|
|
91
80
|
|
|
92
|
-
Customize workflows for your project with `/flow:
|
|
81
|
+
Customize workflows for your project with `/flow:setup`.
|
|
93
82
|
|
|
94
83
|
## Architecture
|
|
95
84
|
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
85
|
+
```mermaid
|
|
86
|
+
flowchart TB
|
|
87
|
+
user["/flow:task 'add dark mode'"]
|
|
88
|
+
|
|
89
|
+
subgraph Orchestrator
|
|
90
|
+
start["flow:start"]
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
subgraph Navigator["Navigator (MCP)"]
|
|
94
|
+
sm["State Machine"]
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
subgraph Subagents
|
|
98
|
+
planner["Planner"]
|
|
99
|
+
developer["Developer"]
|
|
100
|
+
tester["Tester"]
|
|
101
|
+
reviewer["Reviewer"]
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
subgraph Workflows
|
|
105
|
+
wf["Graph Definitions"]
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
user --> Orchestrator
|
|
109
|
+
Orchestrator <-->|MCP| Navigator
|
|
110
|
+
Orchestrator --> Subagents
|
|
111
|
+
Navigator --> Workflows
|
|
113
112
|
```
|
|
114
113
|
|
|
115
114
|
## Links
|
|
@@ -142,10 +142,8 @@ Setup complete!
|
|
|
142
142
|
|
|
143
143
|
Next steps:
|
|
144
144
|
1. Start Claude Code: claude
|
|
145
|
-
2.
|
|
146
|
-
3.
|
|
147
|
-
|
|
148
|
-
Quick prefixes: fix: | feat: | bug:
|
|
145
|
+
2. Create a task: /flow:task "Add user authentication"
|
|
146
|
+
3. Execute tasks: /flow:go
|
|
149
147
|
`);
|
|
150
148
|
}
|
|
151
149
|
|