@rulemetric/skills-registry 0.11.0 → 0.12.1

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.
@@ -25,7 +25,7 @@ const OctokitWithPlugins = Octokit.plugin(retry, throttling);
25
25
  // graphile-worker concurrency slot stayed locked the whole time. The cron
26
26
  // produced zero progress logs and the job appeared hung. See
27
27
  // docs/incidents/2026-05-20-launches-stuck-and-worker-wedge.md task #26 and
28
- // apps/cli/src/lib/handlers/cron-refresh-skills.test.ts for the evidence.
28
+ // apps/cli/src/lib/jobs/handlers/cron-refresh-skills.test.ts for the evidence.
29
29
  //
30
30
  // Fix: cap the wait we're willing to accept at 5 minutes. Anything longer
31
31
  // means GitHub's rate window is essentially the next hour — at which point
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulemetric/skills-registry",
3
- "version": "0.11.0",
3
+ "version": "0.12.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -45,6 +45,7 @@
45
45
  "build": "tsc",
46
46
  "type-check": "tsc --noEmit",
47
47
  "fetch": "tsx src/fetch-registry.ts",
48
- "discover": "tsx src/discover-sources.ts"
48
+ "discover": "tsx src/discover-sources.ts",
49
+ "sync:api": "node scripts/sync-to-api.mjs"
49
50
  }
50
51
  }