@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 CHANGED
@@ -40,13 +40,8 @@ flowchart TD
40
40
  ## Quick Start
41
41
 
42
42
  ```bash
43
- # Load the orchestrator at session start
44
- /flow:prime
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
- Commands are the primary human interface. Type a command to create a task with the right workflow:
58
-
59
- | Command | Workflow | Description |
60
- | ------------- | -------------------- | ---------------------------------- |
61
- | `/flow:feat` | feature-development | New feature with planning + review |
62
- | `/flow:bug` | bug-fix | Bug investigation and fix |
63
- | `/flow:task` | agile-task | General development task |
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:init`.
81
+ Customize workflows for your project with `/flow:setup`.
93
82
 
94
83
  ## Architecture
95
84
 
96
- ```
97
- /flow:feat "add dark mode" ← human types a command
98
-
99
-
100
- ┌──────────────────┐ ┌──────────────────┐
101
- │ Orchestrator │ ◄─MCP─► │ Navigator │
102
- │ (flow:prime) │ │ (state machine) │
103
- └──────────────────┘ └──────────────────┘
104
- │ │
105
- ▼ ▼
106
- ┌──────────────────┐ ┌──────────────────┐
107
- │ Subagents │ │ Workflows │
108
- │ @flow:Planner │ │ │
109
- │ @flow:Developer │ └──────────────────┘
110
- │ @flow:Tester │
111
- │ @flow:Reviewer │
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. Prime the plugin: /flow:prime
146
- 3. Create a task: feat: "Add user authentication"
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leclabs/agent-toolkit",
3
- "version": "1.9.1",
3
+ "version": "2.0.0",
4
4
  "description": "The essential Claude Code plugin marketplace for reliable Agent-led workflow orchestration",
5
5
  "main": "index.js",
6
6
  "bin": {