claude-code-templates 1.28.0 → 1.28.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.
- package/bin/create-claude-config.js +1 -1
- package/package.json +1 -1
- package/src/index.js +3 -3
|
@@ -59,7 +59,7 @@ program
|
|
|
59
59
|
.option('--agents', 'launch Claude Code agents dashboard (opens directly to conversations)')
|
|
60
60
|
.option('--chats-mobile', 'launch mobile-first chats interface (AI-optimized for mobile devices)')
|
|
61
61
|
.option('--plugins', 'launch Plugin Dashboard to view marketplaces, installed plugins, and permissions')
|
|
62
|
-
.option('--skills', 'launch Skills Dashboard to view and explore installed Claude Code Skills')
|
|
62
|
+
.option('--skills-manager', 'launch Skills Dashboard to view and explore installed Claude Code Skills')
|
|
63
63
|
.option('--tunnel', 'enable Cloudflare Tunnel for remote access (use with --analytics or --chats)')
|
|
64
64
|
.option('--verbose', 'enable verbose logging for debugging and development')
|
|
65
65
|
.option('--health-check, --health, --check, --verify', 'run comprehensive health check to verify Claude Code setup')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-templates",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.1",
|
|
4
4
|
"description": "CLI tool to setup Claude Code configurations with framework-specific commands, automation hooks and MCP Servers for your projects",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
package/src/index.js
CHANGED
|
@@ -251,9 +251,9 @@ async function createClaudeConfig(options = {}) {
|
|
|
251
251
|
}
|
|
252
252
|
|
|
253
253
|
// Handle skills dashboard
|
|
254
|
-
if (options.
|
|
255
|
-
trackingService.trackCommandExecution('skills');
|
|
256
|
-
trackingService.trackAnalyticsDashboard({ page: 'skills', source: 'command_line' });
|
|
254
|
+
if (options.skillsManager) {
|
|
255
|
+
trackingService.trackCommandExecution('skills-manager');
|
|
256
|
+
trackingService.trackAnalyticsDashboard({ page: 'skills-manager', source: 'command_line' });
|
|
257
257
|
await runSkillDashboard(options);
|
|
258
258
|
return;
|
|
259
259
|
}
|