@fprad0/skill-master-mcp 0.0.6 → 0.0.8

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,19 +1,23 @@
1
1
  {
2
2
  "name": "@fprad0/skill-master-mcp",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Personal MCP server that catalogs, recommends and reports skills with update-aware metadata.",
7
7
  "main": "dist/index.js",
8
8
  "bin": {
9
+ "skill-master-activation": "./bin/skill-master-activation.mjs",
9
10
  "skill-master-configure-private-registry": "./bin/skill-master-configure-private-registry.mjs",
11
+ "skill-master-eval-activation": "./bin/skill-master-eval-activation.mjs",
10
12
  "skill-master-menu": "./bin/skill-master-menu.mjs",
11
13
  "skill-master-mcp": "./bin/skill-master.mjs",
14
+ "skill-master-success-skills": "./bin/skill-master-success-skills.mjs",
12
15
  "skill-master-update": "./bin/skill-master-update.mjs"
13
16
  },
14
17
  "files": [
15
18
  "bin",
16
19
  "dist",
20
+ "docs/architecture",
17
21
  "docs/operations/GUIA_NPM_PRIVADO.md",
18
22
  "manifests",
19
23
  "network",
@@ -26,7 +30,7 @@
26
30
  "sources.json"
27
31
  ],
28
32
  "publishConfig": {
29
- "registry": "https://npm.pkg.github.com"
33
+ "registry": "https://registry.npmjs.org"
30
34
  },
31
35
  "repository": {
32
36
  "type": "git",
@@ -42,15 +46,17 @@
42
46
  "start": "node dist/index.js",
43
47
  "test": "vitest run",
44
48
  "setup:private-registry": "node scripts/configure-private-registry.mjs",
49
+ "eval:activation": "npm run build && node bin/skill-master-eval-activation.mjs",
45
50
  "check:manifest": "node scripts/check-manifest.mjs",
46
51
  "check": "npm run build && npm test && npm run check:manifest",
47
52
  "prepack": "npm run build",
48
53
  "pack:dry-run": "npm pack --dry-run",
49
- "publish:github": "npm publish",
54
+ "publish:github": "npm publish --registry=https://npm.pkg.github.com",
50
55
  "publish:npm-public": "npm publish --access public --registry=https://registry.npmjs.org"
51
56
  },
52
57
  "dependencies": {
53
58
  "@modelcontextprotocol/sdk": "^1.29.0",
59
+ "prompts": "^2.4.2",
54
60
  "zod": "^4.4.3"
55
61
  },
56
62
  "devDependencies": {
package/sources.json CHANGED
@@ -3,6 +3,9 @@
3
3
  "%USERPROFILE%/.codex/skills",
4
4
  "%USERPROFILE%/.agents/skills"
5
5
  ],
6
- "workspaceRoots": [],
6
+ "workspaceRoots": [
7
+ ".codex/skills",
8
+ ".agents/skills"
9
+ ],
7
10
  "webSources": []
8
11
  }