@leclabs/agent-toolkit 1.7.0 → 1.8.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 +20 -15
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -70,20 +70,24 @@ Commands are the primary human interface. Type a command to create a task with t
|
|
|
70
70
|
|
|
71
71
|
## Workflows
|
|
72
72
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
| Workflow | Steps | Description
|
|
76
|
-
| ------------------------- | ----- |
|
|
77
|
-
| feature-development | 15 | Full lifecycle: plan, implement, test, review, PR
|
|
78
|
-
| bug-fix | 11 | Reproduce, investigate, fix, regression test
|
|
79
|
-
|
|
|
80
|
-
|
|
|
81
|
-
|
|
|
82
|
-
|
|
|
83
|
-
|
|
|
84
|
-
|
|
|
85
|
-
|
|
|
86
|
-
|
|
|
73
|
+
14 workflow templates ship in the catalog:
|
|
74
|
+
|
|
75
|
+
| Workflow | Steps | Description |
|
|
76
|
+
| ------------------------- | ----- | ------------------------------------------------------------------ |
|
|
77
|
+
| feature-development | 15 | Full lifecycle: plan, implement, test, review, PR |
|
|
78
|
+
| bug-fix | 11 | Reproduce, investigate, fix, regression test |
|
|
79
|
+
| bug-hunt | 16 | Parallel investigation: reproduce, code archaeology, git forensics |
|
|
80
|
+
| agile-task | 9 | General task: analyze, implement, test, review |
|
|
81
|
+
| quick-task | 8 | Minimal: understand, execute, verify |
|
|
82
|
+
| test-coverage | 10 | Analyze gaps, write tests, review |
|
|
83
|
+
| context-gather | 10 | Parallel context gathering: repo, system, weather |
|
|
84
|
+
| context-optimization | 10 | Map connections, identify pathologies, improve |
|
|
85
|
+
| ui-reconstruction | 17 | Extract semantic IR, rebuild UI, blind review |
|
|
86
|
+
| refactor | 16 | Functional core / imperative shell restructuring |
|
|
87
|
+
| build-review-murder-board | 7 | Build-review loop, level 5 scrutiny, blind-shot review |
|
|
88
|
+
| build-review-quick | 7 | Build-review loop, basic sanity check |
|
|
89
|
+
| execute | 3 | Single-step workflow: just do the thing |
|
|
90
|
+
| hitl-test | 5 | Minimal HITL recovery test: work, gate, escalate |
|
|
87
91
|
|
|
88
92
|
Customize workflows for your project with `/flow:init`.
|
|
89
93
|
|
|
@@ -101,7 +105,7 @@ Customize workflows for your project with `/flow:init`.
|
|
|
101
105
|
▼ ▼
|
|
102
106
|
┌──────────────────┐ ┌──────────────────┐
|
|
103
107
|
│ Subagents │ │ Workflows │
|
|
104
|
-
│ @flow:Planner │ │
|
|
108
|
+
│ @flow:Planner │ │ │
|
|
105
109
|
│ @flow:Developer │ └──────────────────┘
|
|
106
110
|
│ @flow:Tester │
|
|
107
111
|
│ @flow:Reviewer │
|
|
@@ -112,6 +116,7 @@ Customize workflows for your project with `/flow:init`.
|
|
|
112
116
|
|
|
113
117
|
- [Flow Plugin](plugins/flow/README.md) -- commands, skills, workflows, and customization
|
|
114
118
|
- [Navigator MCP Server](packages/agent-flow-navigator-mcp/README.md) -- workflow state machine
|
|
119
|
+
- [Workflow Diagrams](.flow/diagrams/) -- mermaid diagrams for all workflows
|
|
115
120
|
|
|
116
121
|
## License
|
|
117
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leclabs/agent-toolkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "The essential Claude Code plugin marketplace for reliable Agent-led workflow orchestration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"changeset": "changeset",
|
|
17
17
|
"version": "changeset version && node scripts/sync-versions.js",
|
|
18
18
|
"release": "npm whoami --registry https://registry.npmjs.org/ || (echo '\\nAuth failed. Run: npm config set //registry.npmjs.org/:_authToken=YOUR_TOKEN' && exit 1) && npm publish --access public && cd packages/agent-flow-navigator-mcp && npm publish --access public",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
19
|
+
"reload": "npm run reload:mcp && npm run reload:plugin",
|
|
20
|
+
"reload:mcp": "npm link --prefix packages/agent-flow-navigator-mcp && npm link @leclabs/agent-flow-navigator-mcp",
|
|
21
|
+
"reload:plugin": "(claude plugin uninstall flow@agent-toolkit || true) && (claude plugin marketplace remove agent-toolkit || true) && claude plugin marketplace add $(pwd) && claude plugin install flow@agent-toolkit"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|