@callmeradical/augy 0.8.1 → 0.8.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/dist/index.js CHANGED
@@ -14,7 +14,7 @@ program.command("install [url]").description("Install skills from a GitHub URL o
14
14
  await installCommand(url, opts ?? {});
15
15
  });
16
16
  program.command("update [skill]").description("Check for upstream changes and upgrade installed skills").action(async (skill) => {
17
- const { updateCommand } = await import("./update-ZXOM4RV6.js");
17
+ const { updateCommand } = await import("./update-OWAEIRRT.js");
18
18
  await updateCommand(skill);
19
19
  });
20
20
  program.command("list").description("Show all installed skills with version + agent info").option("--json", "Output raw JSON registry").action(async (opts) => {
@@ -48,11 +48,16 @@ async function updateCommand(nameArg) {
48
48
  outro(chalk.yellow("All skills are pinned \u2014 nothing to update."));
49
49
  return;
50
50
  }
51
- const authored = unpinned.filter((s2) => !s2.source);
52
- const withSource = unpinned.filter((s2) => s2.source);
51
+ const homeRepo = registry.home?.repo;
52
+ const authored = unpinned.filter(
53
+ (s2) => !s2.source || homeRepo && s2.source.includes(homeRepo)
54
+ );
55
+ const withSource = unpinned.filter(
56
+ (s2) => s2.source && !(homeRepo && s2.source.includes(homeRepo))
57
+ );
53
58
  if (authored.length) {
54
59
  console.log(
55
- chalk.dim(`Skipping ${authored.length} authored skill(s): `) + chalk.dim(authored.map((s2) => s2.name).join(", "))
60
+ chalk.dim(`Skipping ${authored.length} authored skill(s) \u2014 run \`augy home push\` to re-sync: `) + chalk.dim(authored.map((s2) => s2.name).join(", "))
56
61
  );
57
62
  }
58
63
  if (!withSource.length) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@callmeradical/augy",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Homebrew for AI agent skills — install, version, update, rollback",
5
5
  "type": "module",
6
6
  "license": "MIT",