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 CHANGED
@@ -98,6 +98,7 @@ Fragments are Agentwheel composition inputs, not runtime file-drop targets.
98
98
 
99
99
  | Command | Meaning |
100
100
  |---|---|
101
+ | `agentwheel search <query>` | Search configured registries and the public enriched/Vercel catalogue; supports stable JSON output for agent reranking. |
101
102
  | `agentwheel add <source>` | Validate and save a package entry in `.agentwheel/config.json`; does not touch runtimes. |
102
103
  | `agentwheel plan [name-or-source]` | Preview what `install` would reconcile without writing; supports `--profile <name>` and `--json`. |
103
104
  | `agentwheel install` | Reconcile configured packages into the current target or selected fleet. Uses the graph lock as input by default. |
@@ -152,6 +153,28 @@ agentwheel plan
152
153
  agentwheel install
153
154
  ```
154
155
 
156
+ ## Artifact Discovery
157
+
158
+ Search configured registries and the complete public catalogue with one command:
159
+
160
+ ```bash
161
+ agentwheel search "conversation memory"
162
+ agentwheel search "telegram integration" --type skill
163
+ agentwheel search "message recall" --json --limit 10
164
+ ```
165
+
166
+ Use `--scope registry`, `--scope enriched`, or `--scope vercel` to restrict a query. The default
167
+ `--scope all` combines every source, deduplicates equivalent artifacts, and reports every
168
+ provenance plus the safe installation route.
169
+
170
+ Search is deterministic and lexical. The companion skill adds semantic behavior at the agent
171
+ layer: it can generate a small set of related queries, merge and rerank the JSON results against
172
+ the original request, and suggest at most three artifacts. Search never installs or changes
173
+ configuration by itself.
174
+
175
+ Registry maintenance remains available through `agentwheel registry update` and
176
+ `agentwheel registry list`. Registry short names continue to resolve during add/install.
177
+
155
178
  ## Source Inputs
156
179
 
157
180
  Agentwheel can install from explicit local paths, Git sources, catalogue short names, provider
@@ -378,6 +401,28 @@ be deselected:
378
401
  }
379
402
  ```
380
403
 
404
+ ### Root version policy
405
+
406
+ Workspace packages can combine source movement with an npm-style release policy:
407
+
408
+ ```jsonc
409
+ {
410
+ "name": "agent-pack",
411
+ "source": "github:your-org/agent-pack",
412
+ "driver": "git",
413
+ "mode": "tracking",
414
+ "version": "^1.4.0"
415
+ }
416
+ ```
417
+
418
+ `mode: pinned` never advances automatically. `mode: tracking` may advance to the newest release
419
+ allowed by an exact version, `~`, `^`, comparator range, or `*`. Status always reports installed,
420
+ locked, latest allowed, and latest overall versions, including newer releases outside the selected
421
+ policy. Version discovery uses a 24-hour cache by default; `--refresh` bypasses it and `--offline`
422
+ uses cached metadata marked stale when its TTL has expired. Git packages use semver tags as
423
+ enumerable releases. A branch without tags can report a changed HEAD but cannot select an older
424
+ compatible release; explicit refs and commits remain pins.
425
+
381
426
  ### Project-owned selection exports
382
427
 
383
428
  Workspace configuration `schemaVersion: 2` can export named artifact selections. This is useful
@@ -662,6 +707,7 @@ Built-in runtime targets:
662
707
  - [`llms.txt`](llms.txt) — LLM-oriented map of the public docs.
663
708
  - [`docs/spec/openpack.md`](docs/spec/openpack.md) — OpenPack package spec.
664
709
  - [`docs/fleet-config.md`](docs/fleet-config.md) — named agents, SSH targets, and profiles.
710
+ - [`docs/design/federated-fleet-clusters.md`](docs/design/federated-fleet-clusters.md) — federating autonomous workspaces under one doctor/update control plane.
665
711
  - [`docs/design/artifact-harness-compatibility.md`](docs/design/artifact-harness-compatibility.md) — artifact/harness compatibility matrix and rule semantics.
666
712
  - Resource catalogue: https://nestdevlab.github.io/agentwheel/catalogue.html.
667
713
  - [`DESIGN.md`](DESIGN.md) — architecture and module layout.