claude-code-templates 1.24.17 → 1.25.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.
@@ -78,6 +78,7 @@ program
78
78
  .option('--sandbox <provider>', 'execute Claude Code in isolated sandbox environment (e.g., e2b)')
79
79
  .option('--e2b-api-key <key>', 'E2B API key for sandbox execution (alternative to environment variable)')
80
80
  .option('--anthropic-api-key <key>', 'Anthropic API key for Claude Code (alternative to environment variable)')
81
+ .option('--clone-session <url>', 'download and import a shared Claude Code session from URL')
81
82
  .action(async (options) => {
82
83
  try {
83
84
  // Only show banner for non-agent-list commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-templates",
3
- "version": "1.24.17",
3
+ "version": "1.25.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": {
@@ -74,6 +74,7 @@
74
74
  "js-yaml": "^4.1.0",
75
75
  "open": "^8.4.2",
76
76
  "ora": "^5.4.1",
77
+ "qrcode": "^1.5.3",
77
78
  "uuid": "^11.1.0",
78
79
  "ws": "^8.18.3"
79
80
  },