forgehive 1.0.7 → 1.0.8
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/dist/cli.js +9 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -9804,14 +9804,19 @@ if (command === "init") {
|
|
|
9804
9804
|
console.log();
|
|
9805
9805
|
if (subcommand === "--yes" || rest.includes("--yes")) {
|
|
9806
9806
|
confirm(projectRoot);
|
|
9807
|
-
console.log(
|
|
9807
|
+
console.log(`${ANSI.green}\u2713${ANSI.reset} ${brand} bereit
|
|
9808
|
+
`);
|
|
9808
9809
|
} else {
|
|
9809
|
-
const ok = await promptConfirm(
|
|
9810
|
+
const ok = await promptConfirm(` Best\xE4tigen und loslegen? ${ANSI.dim}[Y/n]${ANSI.reset} `);
|
|
9810
9811
|
if (ok) {
|
|
9811
9812
|
confirm(projectRoot);
|
|
9812
|
-
console.log(
|
|
9813
|
+
console.log(`
|
|
9814
|
+
${ANSI.green}\u2713${ANSI.reset} ${brand} bereit \u2014 \xF6ffne Claude Code in diesem Projekt.
|
|
9815
|
+
`);
|
|
9813
9816
|
} else {
|
|
9814
|
-
console.log(
|
|
9817
|
+
console.log(`
|
|
9818
|
+
\xDCberpr\xFCfe .forgehive/capabilities.yaml, dann: ${ANSI.bold}fh confirm${ANSI.reset}
|
|
9819
|
+
`);
|
|
9815
9820
|
}
|
|
9816
9821
|
}
|
|
9817
9822
|
})().catch((err) => {
|