agentwheel 0.14.13 → 0.15.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 +23 -0
- package/dist/index.js +1426 -264
- package/openpack.json +1 -1
- package/package.json +1 -1
- package/skills/agentwheel/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -378,6 +378,28 @@ be deselected:
|
|
|
378
378
|
}
|
|
379
379
|
```
|
|
380
380
|
|
|
381
|
+
### Root version policy
|
|
382
|
+
|
|
383
|
+
Workspace packages can combine source movement with an npm-style release policy:
|
|
384
|
+
|
|
385
|
+
```jsonc
|
|
386
|
+
{
|
|
387
|
+
"name": "agent-pack",
|
|
388
|
+
"source": "github:your-org/agent-pack",
|
|
389
|
+
"driver": "git",
|
|
390
|
+
"mode": "tracking",
|
|
391
|
+
"version": "^1.4.0"
|
|
392
|
+
}
|
|
393
|
+
```
|
|
394
|
+
|
|
395
|
+
`mode: pinned` never advances automatically. `mode: tracking` may advance to the newest release
|
|
396
|
+
allowed by an exact version, `~`, `^`, comparator range, or `*`. Status always reports installed,
|
|
397
|
+
locked, latest allowed, and latest overall versions, including newer releases outside the selected
|
|
398
|
+
policy. Version discovery uses a 24-hour cache by default; `--refresh` bypasses it and `--offline`
|
|
399
|
+
uses cached metadata marked stale when its TTL has expired. Git packages use semver tags as
|
|
400
|
+
enumerable releases. A branch without tags can report a changed HEAD but cannot select an older
|
|
401
|
+
compatible release; explicit refs and commits remain pins.
|
|
402
|
+
|
|
381
403
|
### Project-owned selection exports
|
|
382
404
|
|
|
383
405
|
Workspace configuration `schemaVersion: 2` can export named artifact selections. This is useful
|
|
@@ -662,6 +684,7 @@ Built-in runtime targets:
|
|
|
662
684
|
- [`llms.txt`](llms.txt) — LLM-oriented map of the public docs.
|
|
663
685
|
- [`docs/spec/openpack.md`](docs/spec/openpack.md) — OpenPack package spec.
|
|
664
686
|
- [`docs/fleet-config.md`](docs/fleet-config.md) — named agents, SSH targets, and profiles.
|
|
687
|
+
- [`docs/design/federated-fleet-clusters.md`](docs/design/federated-fleet-clusters.md) — federating autonomous workspaces under one doctor/update control plane.
|
|
665
688
|
- [`docs/design/artifact-harness-compatibility.md`](docs/design/artifact-harness-compatibility.md) — artifact/harness compatibility matrix and rule semantics.
|
|
666
689
|
- Resource catalogue: https://nestdevlab.github.io/agentwheel/catalogue.html.
|
|
667
690
|
- [`DESIGN.md`](DESIGN.md) — architecture and module layout.
|