@nano-step/skill-manager 5.5.1 → 5.5.3

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/README.md CHANGED
@@ -26,7 +26,7 @@ npx @nano-step/skill-manager install --all
26
26
  | `update [name]` | Update one or all installed skills |
27
27
  | `installed` | Show currently installed skills |
28
28
 
29
- ## Available Skills (15 public + 6 private)
29
+ ## Available Skills (15 public + 5 private)
30
30
 
31
31
  ### Public Skills (bundled in npm)
32
32
 
@@ -54,7 +54,6 @@ npx @nano-step/skill-manager install --all
54
54
  |-------|-------------|
55
55
  | `e2e-test-generator` | E2E test generation from PRD using Playwright MCP |
56
56
  | `feature-analysis` | Deep code analysis with execution tracing and gap analysis |
57
- | `mcp-management` | MCP tool routing and execution with token-saving isolation |
58
57
  | `pr-code-reviewer` | Comprehensive PR code review with 4 parallel subagents |
59
58
  | `rri-t-testing` | RRI-T QA methodology — 5-phase testing with 7 dimensions and release gates |
60
59
  | `database-inspector` | Database schema inspection for MySQL and PostgreSQL with progressive discovery |
package/dist/index.js CHANGED
@@ -66,7 +66,13 @@ async function run() {
66
66
  const paths = await (0, utils_1.detectOpenCodePaths)();
67
67
  await (0, state_1.migrateV4State)(paths.configDir, paths.stateFilePath, paths.skillsDir);
68
68
  const token = await (0, auth_1.resolveToken)();
69
- const remoteSkills = token ? await (0, remote_registry_1.listRemoteSkills)() : (0, registry_1.loadPrivateCatalog)(paths.packageSkillsDir);
69
+ const liveRemoteSkills = token ? await (0, remote_registry_1.listRemoteSkills)() : [];
70
+ const bundledPrivate = (0, registry_1.loadPrivateCatalog)(paths.packageSkillsDir);
71
+ const liveNames = new Set(liveRemoteSkills.map((s) => s.name));
72
+ const remoteSkills = [
73
+ ...liveRemoteSkills,
74
+ ...bundledPrivate.filter((s) => !liveNames.has(s.name)),
75
+ ];
70
76
  const catalog = await (0, registry_1.loadMergedCatalog)(paths.packageSkillsDir, remoteSkills);
71
77
  const state = await (0, state_1.loadState)(paths.stateFilePath);
72
78
  if (catalog.length === 0) {
@@ -92,7 +98,7 @@ async function run() {
92
98
  if (installed) {
93
99
  status = chalk_1.default.green("installed");
94
100
  }
95
- else if (entry.source === "private" && !token) {
101
+ else if (entry.source === "private" && !liveNames.has(skill.name)) {
96
102
  status = chalk_1.default.yellow("login required");
97
103
  }
98
104
  else {
@@ -107,7 +113,8 @@ async function run() {
107
113
  skill.description);
108
114
  }
109
115
  console.log("");
110
- if (!token) {
116
+ const hasUnauthPrivate = catalog.some((e) => e.source === "private" && !liveNames.has(e.manifest.name));
117
+ if (hasUnauthPrivate) {
111
118
  console.log(chalk_1.default.gray("Tip: Run 'skill-manager login --token <github-token>' to install private skills."));
112
119
  console.log("");
113
120
  }
package/dist/utils.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const MANAGER_VERSION = "5.5.1";
1
+ export declare const MANAGER_VERSION = "5.5.3";
2
2
  export interface SkillManifest {
3
3
  name: string;
4
4
  version: string;
package/dist/utils.js CHANGED
@@ -13,7 +13,7 @@ exports.writeText = writeText;
13
13
  const path_1 = __importDefault(require("path"));
14
14
  const os_1 = __importDefault(require("os"));
15
15
  const fs_extra_1 = __importDefault(require("fs-extra"));
16
- exports.MANAGER_VERSION = "5.5.1";
16
+ exports.MANAGER_VERSION = "5.5.3";
17
17
  async function detectOpenCodePaths() {
18
18
  const homeConfig = path_1.default.join(os_1.default.homedir(), ".config", "opencode");
19
19
  const cwd = process.cwd();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nano-step/skill-manager",
3
- "version": "5.5.1",
3
+ "version": "5.5.3",
4
4
  "description": "CLI tool that installs and manages AI agent skills, MCP tool routing, and workflow configurations.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,11 +14,6 @@
14
14
  "version": "2.0.0",
15
15
  "description": "Deep code analysis of any feature or service before writing docs, diagrams, or making changes"
16
16
  },
17
- {
18
- "name": "mcp-management",
19
- "version": "2.0.0",
20
- "description": "MCP tool routing and execution with token-saving isolation"
21
- },
22
17
  {
23
18
  "name": "pr-code-reviewer",
24
19
  "version": "2.6.0",