agent-skillboard 0.2.14 → 0.2.15
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 +8 -0
- package/package.json +1 -1
- package/src/lifecycle-cli.mjs +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.2.15 — 2026-07-03
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Sudo setup now restores ownership for content-identical managed guidance
|
|
10
|
+
files reported as `Unchanged`, repairing existing root-owned guidance on
|
|
11
|
+
reinstall or explicit `skillboard setup --yes`.
|
|
12
|
+
|
|
5
13
|
## 0.2.14 — 2026-07-03
|
|
6
14
|
|
|
7
15
|
### Fixed
|
package/package.json
CHANGED
package/src/lifecycle-cli.mjs
CHANGED
|
@@ -349,6 +349,7 @@ async function installAgentIntegration(targets, ownership = null) {
|
|
|
349
349
|
throw error;
|
|
350
350
|
});
|
|
351
351
|
if (existing === content) {
|
|
352
|
+
await applyOwnership(target.skillPath, ownership);
|
|
352
353
|
unchanged.push(`${target.agent}:${target.skillPath}`);
|
|
353
354
|
continue;
|
|
354
355
|
}
|