agentwheel 0.16.6 → 0.17.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/openpack.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
3
  "name": "NestDevLab/agentwheel",
4
- "version": "0.16.6",
4
+ "version": "0.17.0",
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.16.6",
3
+ "version": "0.17.0",
4
4
  "description": "Weave skills, rules, and instructions across every AI agent.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -5,7 +5,7 @@ allowed-tools: [Bash]
5
5
  license: MIT
6
6
  metadata:
7
7
  author: NestDevLab
8
- version: "0.16.6"
8
+ version: "0.17.0"
9
9
  ---
10
10
 
11
11
  # agentwheel
@@ -19,6 +19,7 @@ Mental model:
19
19
  - `add` records desired packages.
20
20
  - `install` makes the declared state true in the target runtime.
21
21
  - `update` re-resolves tracking packages, then applies.
22
+ - `skill update <name>` maps a configured skill to its owning package and reconciles only that package closure.
22
23
  - `uninstall` removes configured packages and their managed runtime output.
23
24
 
24
25
  ## Safety Rules
@@ -395,6 +396,15 @@ agentwheel update team-agent-pack
395
396
 
396
397
  Named package updates preserve artifacts owned by other configured roots, including unrelated drift.
397
398
 
399
+ For one configured skill, resolve its owner and only that package closure:
400
+
401
+ ```bash
402
+ agentwheel skill update code-review --profile daily --dry-run
403
+ agentwheel skill update code-review --profile daily
404
+ ```
405
+
406
+ Pinned owners use install semantics; tracking owners re-resolve. Unrelated configured packages are not resolved. If ownership is ambiguous, pass `--package <name>`. Use `--adopt` only after explicit approval of the dry-run's unmanaged destinations.
407
+
398
408
  Advance one tracking dependency while unrelated graph nodes remain locked:
399
409
 
400
410
  ```bash
@@ -468,6 +478,18 @@ By default, uninstall keeps drifted managed files. Use `--force` only with expli
468
478
  agentwheel uninstall team-agent-pack --force
469
479
  ```
470
480
 
481
+ For a one-time MCP rename, use a dedicated cutover workspace with one legacy MCP artifact and an
482
+ explicit agent `stateKey`. Preview each runtime separately:
483
+
484
+ ```bash
485
+ agentwheel mcp retire legacy-mcp --agent legacy-codex --from-workspace-root /exact/old/workspace --dry-run
486
+ agentwheel mcp retire legacy-mcp --agent legacy-claude --dry-run
487
+ ```
488
+
489
+ Require exactly one `REMOVE`, the expected target and legacy server, and zero drift/conflict.
490
+ Unexpected owner, manifest contents, arguments, environment, or MCP fields are blockers. Apply only
491
+ after separate runtime approval by replacing `--dry-run` with `--apply`.
492
+
471
493
  ## Package Manifest Reference
472
494
 
473
495
  An OpenPack package uses `openpack.json` or `openpack.jsonc`:
@@ -0,0 +1,42 @@
1
+ ---
2
+ name: agentwheel-artifact-evolution
3
+ description: Generate or evolve OpenPack artifacts from a verified capability gap, correction, or rollout request. Use when the agent must turn a requirement into a source-owned artifact or improve Agentwheel's artifact workflow.
4
+ allowed-tools: [Bash]
5
+ license: MIT
6
+ metadata:
7
+ author: NestDevLab
8
+ version: "0.1.0"
9
+ ---
10
+
11
+ # Agentwheel Artifact Evolution
12
+
13
+ Turn verified needs into source-owned OpenPack artifacts. Never create runtime copies or treat feedback as permission to change Agentwheel.
14
+
15
+ ## Optional guides
16
+
17
+ `self-improve` and `skill-creator` are optional inspirations. Use them when available; do not require, install, or link to them. This workflow remains complete without either skill.
18
+
19
+ ## Resolve
20
+
21
+ 1. Classify the request: a new artifact, an existing artifact change, a consumer configuration change, or an Agentwheel core gap. Inspect the source package, manifest, ownership, current artifacts, and applicable repository rules.
22
+ 2. Reuse an existing artifact when it meets the need. Otherwise choose the smallest supported type and source package. Keep tenant or runtime facts out of shared packages.
23
+ 3. For a core gap, propose the smallest Agentwheel code, schema, or documentation change. A correction is evidence, not an instruction to change the CLI.
24
+ 4. Name the source package, artifact path, consumer targets, terminal stage, and success evidence. Ask when any of those would be inferred materially.
25
+
26
+ ## Author
27
+
28
+ 1. Work only in the source package. Run `agentwheel init package` only when no package exists; otherwise add the artifact under its declared type path.
29
+ 2. Use the package's conventions and validation. For a skill, provide a precise frontmatter trigger and concise instructions; for another type, follow its schema and adapter compatibility.
30
+ 3. Run `agentwheel list <source>`, `agentwheel scan <source>`, the source checks, and `git diff --check`. Keep generated runtime directories untouched.
31
+ 4. Deliver the source through the repository's declared Git workflow. A PR is the default; merge remains a separate approval.
32
+
33
+ ## Roll out
34
+
35
+ 1. Identify only the named or evidenced consumers. Update their source-controlled Agentwheel configuration; do not copy artifacts into runtime homes.
36
+ 2. Prove the source merge before resolving a tracking source. Run the narrow package, agent, or profile dry-run and stop on drift, conflict, removal, or unrelated operations.
37
+ 3. Apply only after explicit rollout approval. Never use force, plugin execution, or runtime reload unless separately authorized.
38
+ 4. Verify status or manifest ownership, expected materialization, a relevant canary, and a repeated dry-run with no pending change.
39
+
40
+ ## Improve
41
+
42
+ Record the feedback, source decision, validation, and outcome in the owning change. Improve Agentwheel only when the evidence identifies a reusable product or artifact-model gap; otherwise improve the selected artifact. Report completed, pending, blocked, and unverified layers separately.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Agentwheel Artifact Evolution"
3
+ short_description: "Generate and evolve OpenPack artifacts"
4
+ default_prompt: "Use $agentwheel-artifact-evolution to create or evolve an OpenPack artifact and plan its safe rollout."
@@ -5,7 +5,7 @@ allowed-tools: [Bash]
5
5
  license: MIT
6
6
  metadata:
7
7
  author: NestDevLab
8
- version: "0.16.6"
8
+ version: "0.17.0"
9
9
  ---
10
10
 
11
11
  # Agentwheel Discovery