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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-skillboard",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "Let AI agents pick and use allowed skills in each workflow.",
5
5
  "keywords": [
6
6
  "ai-agent",
@@ -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
  }