@laststance/claude-plugin-dashboard 0.2.1 → 0.2.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.
@@ -26,7 +26,7 @@ export function detectPluginComponents(installPath) {
26
26
  if (skillsCount > 0) {
27
27
  components.skills = skillsCount;
28
28
  }
29
- // Detect commands (count .md files in commands/ folder)
29
+ // Detect commands (legacy location, now unified with skills in Claude Code v2.1.3+)
30
30
  const commandsCount = countMarkdownFiles(installPath, 'commands');
31
31
  if (commandsCount > 0) {
32
32
  components.commands = commandsCount;
@@ -11,7 +11,7 @@
11
11
  export interface PluginComponents {
12
12
  /** Count of skill directories in skills/ */
13
13
  skills?: number;
14
- /** Count of slash command .md files in commands/ */
14
+ /** Count of command .md files in commands/ (legacy location, now unified with skills in Claude Code v2.1.3+) */
15
15
  commands?: number;
16
16
  /** Count of subagent .md files in agents/ */
17
17
  agents?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laststance/claude-plugin-dashboard",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Interactive CLI dashboard to manage Claude Code plugins",
5
5
  "license": "MIT",
6
6
  "author": "Ryota Murakami <ryota.murakami@laststance.io> (https://github.com/ryota-murakami)",
@@ -65,4 +65,4 @@
65
65
  "typescript": "^5.7.2",
66
66
  "vitest": "^4.0.16"
67
67
  }
68
- }
68
+ }