worclaude 1.2.1 → 1.2.3

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/README.md CHANGED
@@ -4,7 +4,6 @@
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/worclaude.svg)](https://www.npmjs.com/package/worclaude)
6
6
  [![license](https://img.shields.io/npm/l/worclaude.svg)](LICENSE)
7
- [![tests](https://img.shields.io/badge/tests-135%2B%20passing-brightgreen)]()
8
7
 
9
8
  <!-- GIF goes here once recorded -->
10
9
  <!-- ![worclaude init demo](docs/public/demo.gif) -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "worclaude",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "CLI tool that scaffolds a comprehensive Claude Code workflow into any project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -48,10 +48,14 @@ export async function restoreCommand() {
48
48
 
49
49
  const { confirm } = await inquirer.prompt([
50
50
  {
51
- type: 'confirm',
51
+ type: 'list',
52
52
  name: 'confirm',
53
53
  message: 'Confirm restore?',
54
- default: false,
54
+ choices: [
55
+ { name: 'Yes', value: true },
56
+ { name: 'No', value: false },
57
+ ],
58
+ default: 1,
55
59
  },
56
60
  ]);
57
61