Initialize SHSF CLI project with core structure, configuration, and command handling

This commit is contained in:
Space-Banane
2026-03-18 15:47:45 +01:00
commit 6831669de7
10 changed files with 337 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import chalk from "chalk";
export const helloworldDefinition = {
name: "helloworld",
description: "Prints Hello, World! to the terminal.",
action: async () => {
console.log(`${chalk.green("✓")} ${chalk.bgGreen.black(" Hello, World! ")}`);
},
};