claude-code-templates 1.21.12 → 1.22.0
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.
|
@@ -58,6 +58,7 @@ program
|
|
|
58
58
|
.option('--chats', 'launch mobile-first chats interface (AI-optimized for mobile devices)')
|
|
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
|
+
.option('--plugins', 'launch Plugin Dashboard to view marketplaces, installed plugins, and permissions')
|
|
61
62
|
.option('--tunnel', 'enable Cloudflare Tunnel for remote access (use with --analytics or --chats)')
|
|
62
63
|
.option('--verbose', 'enable verbose logging for debugging and development')
|
|
63
64
|
.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.
|
|
3
|
+
"version": "1.22.0",
|
|
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
|
@@ -15,6 +15,7 @@ const { runMCPStats } = require('./mcp-stats');
|
|
|
15
15
|
const { runAnalytics } = require('./analytics');
|
|
16
16
|
const { startChatsMobile } = require('./chats-mobile');
|
|
17
17
|
const { runHealthCheck } = require('./health-check');
|
|
18
|
+
const { runPluginDashboard } = require('./plugin-dashboard');
|
|
18
19
|
const { trackingService } = require('./tracking-service');
|
|
19
20
|
const { createGlobalAgent, listGlobalAgents, removeGlobalAgent, updateGlobalAgent } = require('./sdk/global-agent-manager');
|
|
20
21
|
|
|
@@ -193,7 +194,14 @@ async function createClaudeConfig(options = {}) {
|
|
|
193
194
|
await runAnalytics(options);
|
|
194
195
|
return;
|
|
195
196
|
}
|
|
196
|
-
|
|
197
|
+
|
|
198
|
+
// Handle plugin dashboard
|
|
199
|
+
if (options.plugins) {
|
|
200
|
+
trackingService.trackAnalyticsDashboard({ page: 'plugins', source: 'command_line' });
|
|
201
|
+
await runPluginDashboard(options);
|
|
202
|
+
return;
|
|
203
|
+
}
|
|
204
|
+
|
|
197
205
|
// Handle chats dashboard (now points to mobile chats interface)
|
|
198
206
|
if (options.chats) {
|
|
199
207
|
trackingService.trackAnalyticsDashboard({ page: 'chats-mobile', source: 'command_line' });
|