agentwheel 0.16.5 → 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.5",
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.5",
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.5"
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."
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: agentwheel-discovery
3
- description: Proactively discover reusable skills, integrations, and workflows when a user's request exposes a missing capability, repeated manual work, or unavailable integration. Use Agentwheel semantic search to suggest up to three evidence-backed matches and offer a read-only trial without installing or changing anything.
3
+ description: MUST use proactively when a request describes repeated manual work, inconsistent results, lost information, a missing capability, or an unavailable integration—even if the user did not ask for a skill. Run Agentwheel semantic search before generic brainstorming or workflow advice, suggest up to three evidence-backed reusable skills or integrations, and offer a read-only trial without installing or changing anything.
4
4
  allowed-tools: [Bash]
5
5
  license: MIT
6
6
  metadata:
7
7
  author: NestDevLab
8
- version: "0.16.5"
8
+ version: "0.17.0"
9
9
  ---
10
10
 
11
11
  # Agentwheel Discovery
@@ -25,13 +25,20 @@ This skill is optional: install it only when proactive recommendations are wante
25
25
 
26
26
  ## When To Search
27
27
 
28
- Search automatically when substantive work exposes a missing capability, repeated manual workflow,
29
- or unavailable integration. This is a per-turn judgment, not a background monitor. Delegated agents
30
- follow the same trigger when this skill is available.
28
+ Use this skill before generic brainstorming, planning, or workflow advice whenever the request
29
+ describes repeated manual work, inconsistent outputs, lost information, a missing operational
30
+ capability, or an unavailable integration. The user does not need to mention Agentwheel, skills,
31
+ discovery, search, or a catalogue. Run the first semantic search in the same turn; do not merely
32
+ describe a workflow and defer discovery.
33
+
34
+ This is a per-turn judgment, not a background monitor. Delegated agents follow the same trigger
35
+ when this skill is available.
31
36
 
32
37
  Skip discovery when the user explicitly wants a custom implementation, has already selected an
33
- artifact, an installed artifact clearly satisfies the request, candidates are only weak lexical
34
- matches, or the same suggestion was declined or shown without new evidence.
38
+ artifact, an installed artifact provides the requested operational capability end to end,
39
+ candidates are only weak lexical matches, or the same suggestion was declined or shown without new
40
+ evidence. Generic brainstorming, planning, writing, or advisory skills do not count as an installed
41
+ operational solution and must not suppress discovery.
35
42
 
36
43
  ## Discovery Workflow
37
44