agentwheel 0.14.4 → 0.14.6

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/install.md ADDED
@@ -0,0 +1,113 @@
1
+ # Install Agentwheel
2
+
3
+ Use this file when a user gives an AI agent a markdown install prompt and asks it to install or
4
+ bootstrap Agentwheel.
5
+
6
+ Agentwheel installs OpenPack resources into AI agent runtimes: skills, instructions, rules,
7
+ commands, subagents, MCP, hooks, settings, plugins, and fragments.
8
+
9
+ ## What To Do
10
+
11
+ 1. Inspect the environment.
12
+ 2. Install the `agentwheel` CLI if it is missing or too old.
13
+ 3. Verify the CLI.
14
+ 4. Install the Agentwheel companion skill into the user's active runtime when requested.
15
+ 5. Show the user how to browse or install catalogue resources.
16
+
17
+ If the user explicitly asked you to install Agentwheel, you may run the installation commands below.
18
+ Ask before destructive operations, `--force`, remote publishing, local adapter code execution, or
19
+ plugin execution with `--execute-plugins`.
20
+
21
+ ## Install The CLI
22
+
23
+ Check whether Agentwheel is already available:
24
+
25
+ ```bash
26
+ agentwheel --version
27
+ agentwheel --help
28
+ ```
29
+
30
+ If it is missing, install it with the package manager already available on the host:
31
+
32
+ ```bash
33
+ npm i -g agentwheel
34
+ ```
35
+
36
+ Prefer pnpm only when the host already uses pnpm for global tools:
37
+
38
+ ```bash
39
+ pnpm add -g agentwheel
40
+ ```
41
+
42
+ Verify after installation:
43
+
44
+ ```bash
45
+ agentwheel --version
46
+ agentwheel doctor --help
47
+ ```
48
+
49
+ ## Install The Companion Skill
50
+
51
+ Pick the adapter that matches the active runtime:
52
+
53
+ - `codex` for Codex CLI
54
+ - `claude` for Claude Code
55
+ - `openclaw` for OpenClaw
56
+ - `copilot` for GitHub Copilot CLI
57
+ - `hermes` for Hermes
58
+
59
+ For a project-local Codex setup:
60
+
61
+ ```bash
62
+ agentwheel doctor --adapter codex --local
63
+ agentwheel install github:NestDevLab/agentwheel --adapter codex --local --skill agentwheel
64
+ ```
65
+
66
+ For a user-level Claude setup:
67
+
68
+ ```bash
69
+ agentwheel doctor --adapter claude --user
70
+ agentwheel install github:NestDevLab/agentwheel --adapter claude --user --skill agentwheel
71
+ ```
72
+
73
+ If the user wants to preview first, add `--dry-run` to the `install` command.
74
+
75
+ ## Use The Catalogue
76
+
77
+ Browse the public catalogue:
78
+
79
+ ```text
80
+ https://nestdevlab.github.io/agentwheel/catalogue.html
81
+ ```
82
+
83
+ Install an OpenPack package:
84
+
85
+ ```bash
86
+ agentwheel install github:owner/agent-pack --adapter codex --local
87
+ ```
88
+
89
+ Install an MCP Registry server when Agentwheel reports it as installable:
90
+
91
+ ```bash
92
+ agentwheel install mcp-registry:publisher/server-name --adapter claude --local
93
+ ```
94
+
95
+ Install a ClawHub plugin into OpenClaw only when the user approves plugin execution:
96
+
97
+ ```bash
98
+ agentwheel install clawhub:@openclaw/package-name --adapter openclaw --local --execute-plugins
99
+ ```
100
+
101
+ Draft a catalogue submission for a public repository:
102
+
103
+ ```bash
104
+ npx agentwheel@latest registry publish https://github.com/owner/repo
105
+ ```
106
+
107
+ ## Success Criteria
108
+
109
+ - `agentwheel --version` works.
110
+ - `agentwheel doctor` runs for the selected adapter.
111
+ - The companion skill is installed if the user requested it.
112
+ - Any catalogue resource install uses the adapter and installation type the user intended.
113
+ - Catalogue submissions use `agentwheel registry publish` unless the user explicitly wants a manual registry PR.
package/llms.txt ADDED
@@ -0,0 +1,27 @@
1
+ # agentwheel
2
+
3
+ > One source. Every agent. Agentwheel installs OpenPack resources into AI agent runtimes.
4
+
5
+ ## Start Here
6
+
7
+ - README: https://github.com/NestDevLab/agentwheel#readme
8
+ - AI install handoff: https://github.com/NestDevLab/agentwheel/blob/main/install.md
9
+ - AI agent guide: https://github.com/NestDevLab/agentwheel/blob/main/AGENT.md
10
+ - Public catalogue: https://nestdevlab.github.io/agentwheel/catalogue.html
11
+
12
+ ## Specs And Design
13
+
14
+ - OpenPack spec: https://github.com/NestDevLab/agentwheel/blob/main/docs/spec/openpack.md
15
+ - Compatibility matrix: https://github.com/NestDevLab/agentwheel/blob/main/docs/design/artifact-harness-compatibility.md
16
+ - Dependency composition: https://github.com/NestDevLab/agentwheel/blob/main/docs/design/dependency-composition.md
17
+ - Fleet config: https://github.com/NestDevLab/agentwheel/blob/main/docs/fleet-config.md
18
+ - Lifecycle model: https://github.com/NestDevLab/agentwheel/blob/main/LIFECYCLE.md
19
+ - Architecture: https://github.com/NestDevLab/agentwheel/blob/main/DESIGN.md
20
+
21
+ ## Install Commands
22
+
23
+ ```bash
24
+ npm i -g agentwheel
25
+ agentwheel doctor --adapter codex --local
26
+ agentwheel install github:NestDevLab/agentwheel --adapter codex --local --skill agentwheel
27
+ ```
package/openpack.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
3
  "name": "NestDevLab/agentwheel",
4
- "version": "0.14.4",
4
+ "version": "0.14.6",
5
5
  "provides": [
6
6
  { "type": "skills", "path": "skills" }
7
7
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentwheel",
3
- "version": "0.14.4",
3
+ "version": "0.14.6",
4
4
  "description": "Weave skills, rules, and instructions across every AI agent.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -31,6 +31,9 @@
31
31
  "dist",
32
32
  "skills",
33
33
  "openpack.json",
34
+ "install.md",
35
+ "AGENT.md",
36
+ "llms.txt",
34
37
  "README.md",
35
38
  "LICENSE"
36
39
  ],
@@ -145,6 +145,19 @@ agentwheel add github:owner/repo --select skills/code-review --select rules/core
145
145
  agentwheel add github:owner/repo --select skills/code-review,rules/core.md
146
146
  ```
147
147
 
148
+ Install or persist suggested companion artifacts only when requested:
149
+
150
+ ```bash
151
+ agentwheel plan github:owner/repo --skill review --with-suggestions
152
+ agentwheel install github:owner/repo --skill review --suggestion brainstorming
153
+ agentwheel add github:owner/repo --skill review --with-suggestions --adapter codex --installation-type local
154
+ ```
155
+
156
+ Treat OpenPack `suggests` as opt-in soft composition, not as `requires.optional`.
157
+ `--with-suggestions` includes all suggestions relevant to selected artifacts as non-blocking
158
+ optional graph edges. `--suggestion <alias>` includes one named suggestion and should fail if that
159
+ explicit suggestion cannot resolve.
160
+
148
161
  Use a source override when a selected package should replace the same artifact coming from another
149
162
  source, such as a forked skill overriding a meta-pack dependency. The declaration is explicit and
150
163
  planning fails if it does not match exactly one losing artifact and one selected replacement: