@toolu/cli 6.8.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Falconiere Barbosa
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # @toolu/cli
2
+
3
+ Install [toolu](https://github.com/Falconiere/toolu) plugins into Claude Code and Codex.
4
+
5
+ The package is scoped; the command it installs is `toolu`.
6
+
7
+ ```bash
8
+ npx @toolu/cli plugins install # every catalog plugin, core first
9
+ npx @toolu/cli plugins install rust-quality # one plugin and its dependency
10
+ npx @toolu/cli plugins list # catalog joined with what is installed
11
+ npx @toolu/cli plugins remove jira --yes
12
+ npx @toolu/cli plugins update
13
+ ```
14
+
15
+ ## What it does
16
+
17
+ It drives each host's own plugin CLI — `claude plugin install`, `codex plugin add` — rather than writing into their directories itself. Install order comes from the marketplace catalog's dependency edges, so `rust-quality` pulls in `toolu` first.
18
+
19
+ Already-installed plugins are reported and left alone. If the installed version differs from the one the marketplace offers, both are named and nothing changes; `plugins update` is how you move it.
20
+
21
+ ## Options
22
+
23
+ | Flag | Meaning |
24
+ |------|---------|
25
+ | `--host <id>` | `claude`, `codex`, or `opencode`. Detected when omitted. |
26
+ | `--scope <scope>` | `user`, `project`, `local`. **Claude Code only.** |
27
+ | `--config <path>` | Replay a `.toolu/plugins.json` selection. |
28
+ | `--yes`, `-y` | Confirm a destructive or command-declaring operation. |
29
+ | `--dry-run` | Print the host commands in order; run none. |
30
+ | `--no-input` | Never prompt; fail listing what is missing. For CI. |
31
+ | `--json` | Machine-readable output where supported. |
32
+
33
+ ## Exit codes
34
+
35
+ | Code | Meaning |
36
+ |------|---------|
37
+ | `0` | Succeeded, or already satisfied |
38
+ | `1` | Something failed; every failure is named on stderr |
39
+ | `2` | Usage error: unknown noun, verb, flag, host, or plugin |
40
+ | `3` | Required input missing, or an ambiguous host with no `--host` |
41
+ | `130` | An interactive prompt was cancelled |
42
+
43
+ ## Not yet supported
44
+
45
+ `--host opencode` exits `2`. OpenCode has its own plugin CLI, but it installs npm packages rather than marketplace entries, so the bash plugins are not addressable through it. Install the bridge directly instead:
46
+
47
+ ```bash
48
+ opencode plugin add @toolu/opencode
49
+ ```
50
+
51
+ Codex agent profiles (`toolu agents …`) are also not built yet.
52
+
53
+ Full documentation: **[docs/cli.md](https://github.com/Falconiere/toolu/blob/main/docs/cli.md)**
54
+
55
+ MIT © Falconiere Barbosa
@@ -0,0 +1,147 @@
1
+ {
2
+ "name": "toolu",
3
+ "owner": {
4
+ "name": "Falconiere Barbosa",
5
+ "email": "hello@falconiere.io",
6
+ "url": "https://github.com/falconiere"
7
+ },
8
+ "allowCrossMarketplaceDependenciesOn": [],
9
+ "plugins": [
10
+ {
11
+ "name": "toolu",
12
+ "source": "./plugins/toolu",
13
+ "description": "Dual-host engineering discipline for Claude Code and Codex: workflow skills, agents, commands, and registry-driven quality hooks.",
14
+ "author": {
15
+ "name": "Falconiere Barbosa",
16
+ "email": "hello@falconiere.io"
17
+ },
18
+ "category": "productivity",
19
+ "keywords": ["hooks", "skills", "agents"],
20
+ "license": "MIT",
21
+ "dependencies": []
22
+ },
23
+ {
24
+ "name": "ast-grep",
25
+ "source": "./plugins/ast-grep",
26
+ "description": "Structural code search & rewrite (ast-grep): skill, wrapper, and a PreToolUse Grep→ast-grep nudge registered into the toolu hook engine.",
27
+ "author": {
28
+ "name": "Falconiere Barbosa",
29
+ "email": "hello@falconiere.io"
30
+ },
31
+ "category": "productivity",
32
+ "keywords": ["ast-grep", "structural-search", "hooks"],
33
+ "license": "MIT"
34
+ },
35
+ {
36
+ "name": "python-quality",
37
+ "source": "./plugins/python-quality",
38
+ "description": "Python PostToolUse quality checks registered into the toolu hook engine.",
39
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
40
+ "category": "productivity",
41
+ "keywords": ["python", "quality", "hooks"],
42
+ "license": "MIT",
43
+ "dependencies": [
44
+ { "name": "toolu", "marketplace": "toolu" }
45
+ ]
46
+ },
47
+ {
48
+ "name": "rust-quality",
49
+ "source": "./plugins/rust-quality",
50
+ "description": "Rust PostToolUse quality checks registered into the toolu hook engine.",
51
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
52
+ "category": "productivity",
53
+ "keywords": ["rust", "quality", "hooks"],
54
+ "license": "MIT",
55
+ "dependencies": [
56
+ { "name": "toolu", "marketplace": "toolu" }
57
+ ]
58
+ },
59
+ {
60
+ "name": "ts-quality",
61
+ "source": "./plugins/ts-quality",
62
+ "description": "TypeScript PostToolUse quality checks registered into the toolu hook engine.",
63
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
64
+ "category": "productivity",
65
+ "keywords": ["typescript", "quality", "hooks"],
66
+ "license": "MIT",
67
+ "dependencies": [
68
+ { "name": "toolu", "marketplace": "toolu" }
69
+ ]
70
+ },
71
+ {
72
+ "name": "statusline",
73
+ "source": "./plugins/statusline",
74
+ "description": "Host-native project status: a persistent Claude Code statusline plus an explicit Codex status skill for repository, gate, git, comemory, and Jev readiness. Standalone, no dependencies.",
75
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
76
+ "category": "productivity",
77
+ "keywords": ["statusline", "quality-gate", "hooks"],
78
+ "license": "MIT"
79
+ },
80
+ {
81
+ "name": "toolu-review",
82
+ "source": "./plugins/toolu-review",
83
+ "description": "Project-tuned pre-push code review mirroring CI falconiere/toolu-ghactions/code-review@v8 (Jev-enabled), writing the toolu push-review state so the gate passes. Standalone.",
84
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
85
+ "category": "productivity",
86
+ "keywords": ["toolu-review", "push-review", "quality", "skills"],
87
+ "license": "MIT"
88
+ },
89
+ {
90
+ "name": "pr-babysit",
91
+ "source": "./plugins/pr-babysit",
92
+ "description": "Babysit a PR until review threads, the review-bot verdict, and CI are clear, using Claude cron or a durable Codex goal with isolated worktrees.",
93
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
94
+ "category": "productivity",
95
+ "keywords": ["pr", "review", "ci", "automation"],
96
+ "license": "MIT",
97
+ "dependencies": [
98
+ { "name": "toolu", "marketplace": "toolu" }
99
+ ]
100
+ },
101
+ {
102
+ "name": "agent-browser",
103
+ "source": "./plugins/agent-browser",
104
+ "description": "Efficient, token-lean browser automation for agents via agent-browser (skill + CLI wrapper) — accessibility-tree snapshots with @eN refs instead of HTML/screenshots. Standalone, no dependencies.",
105
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
106
+ "category": "productivity",
107
+ "keywords": ["agent-browser", "browser-automation", "skills"],
108
+ "license": "MIT"
109
+ },
110
+ {
111
+ "name": "context7",
112
+ "source": "./plugins/context7",
113
+ "description": "Library documentation & code-example lookup via Context7 (skill + REST wrapper). Standalone, no dependencies.",
114
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
115
+ "category": "productivity",
116
+ "keywords": ["context7", "documentation", "skills"],
117
+ "license": "MIT"
118
+ },
119
+ {
120
+ "name": "exa-search",
121
+ "source": "./plugins/exa-search",
122
+ "description": "Web, code, and URL search plus deep research via Exa (skill + REST wrapper). Standalone, no dependencies.",
123
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
124
+ "category": "productivity",
125
+ "keywords": ["exa", "web-search", "skills"],
126
+ "license": "MIT"
127
+ },
128
+ {
129
+ "name": "jev",
130
+ "source": "./plugins/jev",
131
+ "description": "Typed judgments from TypeSafe's Jev model at runtime (skill + REST wrapper) — yes/no probabilities, choices, and scores a script can branch on. Standalone, no dependencies.",
132
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
133
+ "category": "productivity",
134
+ "keywords": ["typesafe", "jev", "judgment", "skills"],
135
+ "license": "MIT"
136
+ },
137
+ {
138
+ "name": "jira",
139
+ "source": "./plugins/jira",
140
+ "description": "Jira issue search and workflow from the session via a REST wrapper (skill + bash). Cloud + Server/DC, read and safe writes. Standalone, no dependencies.",
141
+ "author": { "name": "Falconiere Barbosa", "email": "hello@falconiere.io" },
142
+ "category": "productivity",
143
+ "keywords": ["jira", "atlassian", "skills"],
144
+ "license": "MIT"
145
+ }
146
+ ]
147
+ }