@codeenginestudio/harness-creator 1.0.3 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codeenginestudio/harness-creator",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "CES Harness Creator — install wizard",
@@ -26,14 +26,12 @@ async function promptScope() {
26
26
 
27
27
  async function ensureSuperpowers() {
28
28
  if (isPluginInstalled('superpowers')) return;
29
- const install = await p.confirm({ message: 'superpowers is required. Install it?' });
30
- if (p.isCancel(install) || !install) { p.cancel('Cannot continue without superpowers.'); process.exit(1); }
31
- const s = p.spinner();
32
- s.start('Installing superpowers...');
33
- try {
34
- runClaudeCommand('plugin marketplace add obra/superpowers');
35
- s.stop('superpowers installed');
36
- } catch (err) { s.stop('superpowers install failed'); throw err; }
29
+ p.note(
30
+ 'Run this first, then re-run the installer:\n\n claude plugin install superpowers@obra',
31
+ 'superpowers is required'
32
+ );
33
+ p.cancel('Install superpowers first.');
34
+ process.exit(1);
37
35
  }
38
36
 
39
37
  async function installPlugin(scope) {