@llblab/pi-actors 0.12.1 → 0.12.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.12.2: Registry Migration Notes
6
+
7
+ - `[Docs]` Added explicit rename migration instructions for copying `~/.pi/agent/auto-tools.json` or the short-lived `~/.pi/agent/tools.json` to `~/.pi/agent/actors-tools.json`. Impact: operators keep control of config migration while the package avoids silent rewrites of old registry files.
8
+
5
9
  ## 0.12.1: Actor Tool Registry Name
6
10
 
7
11
  - `[Registry]` Renamed the new pi-actors registry filename from `tools.json` to `actors-tools.json`. Impact: the persisted config name now clearly describes actor-control tools instead of implying every pi tool belongs to this extension.
package/README.md CHANGED
@@ -40,6 +40,28 @@ From git:
40
40
  pi install git:github.com/llblab/pi-actors
41
41
  ```
42
42
 
43
+ ## Rename Migration
44
+
45
+ `pi-actors` reads persistent actor-control tools from:
46
+
47
+ ```text
48
+ ~/.pi/agent/actors-tools.json
49
+ ```
50
+
51
+ If you previously used `pi-auto-tools`, copy the old registry intentionally:
52
+
53
+ ```bash
54
+ cp ~/.pi/agent/auto-tools.json ~/.pi/agent/actors-tools.json
55
+ ```
56
+
57
+ If you installed the brief `0.12.0`/`0.12.1` line and created `tools.json`, copy that file instead:
58
+
59
+ ```bash
60
+ cp ~/.pi/agent/tools.json ~/.pi/agent/actors-tools.json
61
+ ```
62
+
63
+ The extension does not silently rewrite old registry files; keep or delete the old file after confirming the new registry loads as expected.
64
+
43
65
  ## Mental Model
44
66
 
45
67
  `pi-actors` has one execution idea that grows in place:
@@ -4,6 +4,22 @@
4
4
 
5
5
  This document is the local adaptation of the portable [Command Template Standard](./command-templates.md).
6
6
 
7
+ ## Rename Migration
8
+
9
+ `pi-actors` reads only `~/.pi/agent/actors-tools.json` as its registry source. When moving from `pi-auto-tools`, copy the previous registry explicitly:
10
+
11
+ ```bash
12
+ cp ~/.pi/agent/auto-tools.json ~/.pi/agent/actors-tools.json
13
+ ```
14
+
15
+ If a short-lived `~/.pi/agent/tools.json` file exists from the early `pi-actors` rename window, copy that file instead:
16
+
17
+ ```bash
18
+ cp ~/.pi/agent/tools.json ~/.pi/agent/actors-tools.json
19
+ ```
20
+
21
+ No automatic rewrite is performed so operators can decide when to retire old config files.
22
+
7
23
  ## Registering Tools
8
24
 
9
25
  `register_tool` is the interactive API for listing, creating, updating, or deleting persistent tools. Call it without arguments to list registered tools.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llblab/pi-actors",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
4
4
  "private": false,
5
5
  "description": "Persistent template-backed tools for pi",
6
6
  "type": "module",