lsh-framework 0.5.11 → 0.5.12
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 +24 -5
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -64,17 +64,36 @@ program
|
|
|
64
64
|
await startInteractiveShell(options);
|
|
65
65
|
}
|
|
66
66
|
else {
|
|
67
|
-
// No arguments - show
|
|
67
|
+
// No arguments - show commands without verbose options
|
|
68
68
|
console.log('LSH - A modern shell with ZSH features and superior job management');
|
|
69
69
|
console.log('');
|
|
70
70
|
console.log('Usage: lsh [options] [command]');
|
|
71
71
|
console.log('');
|
|
72
|
+
console.log('Commands:');
|
|
73
|
+
console.log(' repl JavaScript REPL interactive shell');
|
|
74
|
+
console.log(' script <file> Execute shell script');
|
|
75
|
+
console.log(' config Manage configuration');
|
|
76
|
+
console.log(' zsh ZSH compatibility commands');
|
|
77
|
+
console.log(' help Show detailed help');
|
|
78
|
+
console.log('');
|
|
79
|
+
console.log('Self-Management:');
|
|
80
|
+
console.log(' self update Update to latest version');
|
|
81
|
+
console.log(' self version Show version information');
|
|
82
|
+
console.log(' self uninstall Uninstall LSH from system');
|
|
83
|
+
console.log(' self theme Manage themes');
|
|
84
|
+
console.log(' self zsh-import Import ZSH configs');
|
|
85
|
+
console.log('');
|
|
86
|
+
console.log('Library Services:');
|
|
87
|
+
console.log(' lib api API server management');
|
|
88
|
+
console.log(' lib daemon Daemon management');
|
|
89
|
+
console.log(' lib cron Cron job management');
|
|
90
|
+
console.log(' lib secrets Secrets management');
|
|
91
|
+
console.log(' lib supabase Supabase database management');
|
|
92
|
+
console.log('');
|
|
72
93
|
console.log('Quick Start:');
|
|
73
94
|
console.log(' lsh -i Start interactive shell');
|
|
74
|
-
console.log(' lsh --help Show
|
|
75
|
-
console.log(' lsh
|
|
76
|
-
console.log('');
|
|
77
|
-
console.log('For full documentation, run: lsh help');
|
|
95
|
+
console.log(' lsh --help Show all options');
|
|
96
|
+
console.log(' lsh help Show detailed help with examples');
|
|
78
97
|
}
|
|
79
98
|
}
|
|
80
99
|
catch (error) {
|