@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 +1 -1
- package/scripts/install.mjs +6 -8
package/package.json
CHANGED
package/scripts/install.mjs
CHANGED
|
@@ -26,14 +26,12 @@ async function promptScope() {
|
|
|
26
26
|
|
|
27
27
|
async function ensureSuperpowers() {
|
|
28
28
|
if (isPluginInstalled('superpowers')) return;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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) {
|