agentwheel 0.14.13 → 0.16.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 +46 -0
- package/dist/index.js +2158 -301
- package/openpack.json +1 -1
- package/package.json +1 -1
- package/skills/agentwheel/SKILL.md +31 -10
package/openpack.json
CHANGED
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agentwheel
|
|
3
|
-
description: Use
|
|
3
|
+
description: Discover or manage reusable agent artifacts with Agentwheel. Use when a requested agent capability, integration, workflow, policy, or tool may already exist, and when adding, installing, updating, customizing, ejecting, or uninstalling skills, rules, instructions, commands, MCP, hooks, settings, plugins, or subagents across runtimes.
|
|
4
4
|
allowed-tools: [Bash]
|
|
5
5
|
license: MIT
|
|
6
6
|
metadata:
|
|
7
7
|
author: NestDevLab
|
|
8
|
-
version: "0.
|
|
8
|
+
version: "0.16.0"
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
# agentwheel
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Agentwheel discovers reusable artifacts and manages their desired state across runtimes.
|
|
14
14
|
|
|
15
15
|
agentwheel is the control plane. It reads packages from sources, stores desired state in `.agentwheel/config.json`, plans runtime changes, and writes only through `install`. Treat runtime output directories as generated files.
|
|
16
16
|
|
|
@@ -29,11 +29,12 @@ Mental model:
|
|
|
29
29
|
- Gmail, Drive, registry publishing, git commits, pushes, and runtime reloads/restarts are separate external side effects. Get explicit approval for them.
|
|
30
30
|
- Programmatic adapters execute local code. Use `--adapter-module` only with `--allow-adapter-code` after the user approves that local code execution.
|
|
31
31
|
- OpenClaw plugin artifacts are only planned by default. Use `--execute-plugins` only after explicit approval.
|
|
32
|
+
- Search results are proposals, not approval. Never add, install, enable, or change configuration until the user confirms the artifact and target scope.
|
|
32
33
|
|
|
33
34
|
## Core Flow
|
|
34
35
|
|
|
35
36
|
```bash
|
|
36
|
-
agentwheel
|
|
37
|
+
agentwheel search tmux
|
|
37
38
|
agentwheel add github:NestDevLab/agent-mesh --skill codex-tmux --adapter codex --installation-type local --mode tracking
|
|
38
39
|
agentwheel plan
|
|
39
40
|
agentwheel install
|
|
@@ -72,14 +73,34 @@ agentwheel init package
|
|
|
72
73
|
|
|
73
74
|
`agentwheel init package` creates `openpack.json`, `instructions/`, `rules/`, `skills/`, and `instructions/AGENTS.md`.
|
|
74
75
|
|
|
75
|
-
## Discovery
|
|
76
|
+
## Discovery And Recommendations
|
|
76
77
|
|
|
77
|
-
|
|
78
|
+
Search configured registries and public catalogue sources:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
agentwheel search "<query>"
|
|
82
|
+
agentwheel search "<query>" --json --limit 10
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
When a reusable artifact could satisfy the request:
|
|
86
|
+
|
|
87
|
+
1. Extract the capability and constraints from the complete request.
|
|
88
|
+
2. Generate one to four short lexical queries using capability terms, synonyms, runtime names, and artifact types. Prefer English catalogue terms when the request uses another language.
|
|
89
|
+
3. Run one `agentwheel search "<query>" --json --limit 10` per variant. Stop after four calls; do not recursively refine without new user requirements.
|
|
90
|
+
4. Merge results by stable `id`. Treat CLI scores as retrieval signals, not semantic confidence.
|
|
91
|
+
5. Rerank against the original request using capabilities, runtime or ecosystem, artifact type, description, tags, `provides`, and installability. Do not infer capabilities absent from result metadata.
|
|
92
|
+
6. Suggest zero to three distinct artifacts. For each, give its name or source, one evidence-based match reason, installability, and a safe next command.
|
|
93
|
+
7. Wait for explicit approval before `add`, `install`, plugin execution, or configuration changes.
|
|
94
|
+
|
|
95
|
+
For automatic suggestions, skip discovery when the user explicitly wants custom implementation, has already selected an artifact, an installed artifact clearly satisfies the request, candidates are only weak lexical matches, or the same suggestion was already shown without new evidence.
|
|
96
|
+
|
|
97
|
+
Search recommendations are conversational only: they do not select OpenPack `suggests`, mutate desired state, or imply installation approval.
|
|
98
|
+
|
|
99
|
+
Registry maintenance remains explicit:
|
|
78
100
|
|
|
79
101
|
```bash
|
|
80
102
|
agentwheel registry update
|
|
81
103
|
agentwheel registry list
|
|
82
|
-
agentwheel registry search <query>
|
|
83
104
|
```
|
|
84
105
|
|
|
85
106
|
Inspect an explicit source before adding it:
|
|
@@ -91,7 +112,7 @@ agentwheel list ./local-agent-pack
|
|
|
91
112
|
agentwheel scan ./local-agent-pack
|
|
92
113
|
```
|
|
93
114
|
|
|
94
|
-
Filter
|
|
115
|
+
Filter source inspection to specific artifacts:
|
|
95
116
|
|
|
96
117
|
```bash
|
|
97
118
|
agentwheel list github:owner/repo --select skills/review --select rules/core.md
|
|
@@ -498,11 +519,11 @@ If a selected artifact is missing:
|
|
|
498
519
|
agentwheel list <source>
|
|
499
520
|
```
|
|
500
521
|
|
|
501
|
-
If registry short
|
|
522
|
+
If a registry short name fails:
|
|
502
523
|
|
|
503
524
|
```bash
|
|
504
525
|
agentwheel registry update
|
|
505
|
-
agentwheel
|
|
526
|
+
agentwheel search "<query>" --scope registry
|
|
506
527
|
```
|
|
507
528
|
|
|
508
529
|
If npm update checks are noisy:
|