claude-code-templates 1.1.6 → 1.1.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/prompts.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-templates",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "CLI tool to setup Claude Code configurations for different programming languages",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/prompts.js CHANGED
@@ -116,7 +116,7 @@ function getStepConfig(stepName, currentAnswers, projectInfo, options) {
116
116
  return {
117
117
  type: 'checkbox',
118
118
  name: 'commands',
119
- message: 'Select commands to include:',
119
+ message: 'Select commands to include (use space to select):',
120
120
  choices: [
121
121
  {
122
122
  value: 'basic-commands',
@@ -133,7 +133,7 @@ function getStepConfig(stepName, currentAnswers, projectInfo, options) {
133
133
  return {
134
134
  type: 'checkbox',
135
135
  name: 'commands',
136
- message: 'Select commands to include:',
136
+ message: 'Select commands to include (use space to select):',
137
137
  choices: availableCommands.map(cmd => ({
138
138
  value: cmd.name,
139
139
  name: `${cmd.displayName} - ${cmd.description}`,
@@ -220,7 +220,7 @@ function createPrompts(projectInfo, options = {}) {
220
220
  prompts.push({
221
221
  type: 'checkbox',
222
222
  name: 'commands',
223
- message: 'Select commands to include:',
223
+ message: 'Select commands to include (use space to select):',
224
224
  choices: (answers) => {
225
225
  const selectedLanguage = answers.language || options.language;
226
226
  const selectedFramework = answers.framework || options.framework;