kenmark-skills 1.1.5 → 1.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kenmark-skills",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Skills by Kenmark ITan Solutions — Cursor/Codex agent skills from our development workflows. Created by Tanooj Mehra & Adwait Date.",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -15,6 +15,7 @@
15
15
  "scripts/skills-adopt.js",
16
16
  "scripts/cli.js",
17
17
  "scripts/interactive.js",
18
+ "scripts/recommended-catalog.js",
18
19
  "scripts/skills-init.js",
19
20
  "scripts/skills-inventory.js",
20
21
  "scripts/skills-install-recommended.js",
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env node
2
+
3
+ const fs = require("fs");
4
+ const path = require("path");
5
+
6
+ const catalogPath = path.join(
7
+ path.resolve(__dirname, ".."),
8
+ "skills",
9
+ "user-skills",
10
+ "recommended-catalog.json"
11
+ );
12
+
13
+ function loadCatalog() {
14
+ if (!fs.existsSync(catalogPath)) {
15
+ return { packs: [] };
16
+ }
17
+ return JSON.parse(fs.readFileSync(catalogPath, "utf8"));
18
+ }
19
+
20
+ module.exports = { catalogPath, loadCatalog };