@leclabs/agent-toolkit 1.2.0 → 1.3.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 +30 -2
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,12 +1,40 @@
|
|
|
1
1
|
# Agent Toolkit
|
|
2
2
|
|
|
3
|
-
A Claude Code plugin marketplace for AI agent tools. The flagship plugin is **Flow** --
|
|
3
|
+
A Claude Code plugin marketplace for AI agent tools. The flagship plugin is **Flow** -- a stateless state-machine for Agents.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Add the toolkit to Claude Code
|
|
9
|
-
claude plugin
|
|
9
|
+
claude plugin marketplace add leclabs/agent-toolkit
|
|
10
|
+
|
|
11
|
+
claude plugin install flow@agent-toolkit
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
```mermaid
|
|
15
|
+
flowchart TD
|
|
16
|
+
start(("Start"))
|
|
17
|
+
work["Do Work<br/><small>Developer</small>"]
|
|
18
|
+
check{"Check"}
|
|
19
|
+
end_success[["Done"]]
|
|
20
|
+
hitl_blocked{{"Blocked"}}
|
|
21
|
+
|
|
22
|
+
start --> work
|
|
23
|
+
work --> check
|
|
24
|
+
check -->|passed| end_success
|
|
25
|
+
check -->|failed| work
|
|
26
|
+
check -->|failed| hitl_blocked
|
|
27
|
+
hitl_blocked -->|passed| work
|
|
28
|
+
|
|
29
|
+
classDef startStep fill:#90EE90,stroke:#228B22
|
|
30
|
+
classDef successStep fill:#87CEEB,stroke:#4169E1
|
|
31
|
+
classDef hitlStep fill:#FFB6C1,stroke:#DC143C
|
|
32
|
+
classDef gateStep fill:#E6E6FA,stroke:#9370DB
|
|
33
|
+
classDef currentStep fill:#FFD700,stroke:#FF8C00,stroke-width:3px
|
|
34
|
+
class start startStep
|
|
35
|
+
class end_success successStep
|
|
36
|
+
class hitl_blocked hitlStep
|
|
37
|
+
class check gateStep
|
|
10
38
|
```
|
|
11
39
|
|
|
12
40
|
## Quick Start
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leclabs/agent-toolkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "The essential Claude Code plugin marketplace for reliable Agent-led workflow orchestration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
"format": "prettier --write .",
|
|
16
16
|
"changeset": "changeset",
|
|
17
17
|
"version": "changeset version && node scripts/sync-versions.js",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
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
|
+
"dev:setup": "npm run dev:setup:mcp && npm run dev:setup:plugin",
|
|
20
|
+
"dev:setup:mcp": "npm link --prefix packages/agent-flow-navigator-mcp && npm link @leclabs/agent-flow-navigator-mcp",
|
|
21
|
+
"dev:setup: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"
|
|
20
22
|
},
|
|
21
23
|
"repository": {
|
|
22
24
|
"type": "git",
|