lsh-framework 0.5.9 → 0.5.10

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.
Files changed (2) hide show
  1. package/dist/cli.js +11 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -64,8 +64,17 @@ program
64
64
  await startInteractiveShell(options);
65
65
  }
66
66
  else {
67
- // No arguments - show help
68
- program.help();
67
+ // No arguments - show brief usage message
68
+ console.log('LSH - A modern shell with ZSH features and superior job management');
69
+ console.log('');
70
+ console.log('Usage: lsh [options] [command]');
71
+ console.log('');
72
+ console.log('Quick Start:');
73
+ console.log(' lsh -i Start interactive shell');
74
+ console.log(' lsh --help Show detailed help');
75
+ console.log(' lsh self update Update to latest version');
76
+ console.log('');
77
+ console.log('For full documentation, run: lsh help');
69
78
  }
70
79
  }
71
80
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lsh-framework",
3
- "version": "0.5.9",
3
+ "version": "0.5.10",
4
4
  "description": "A powerful, extensible shell with advanced job management, database persistence, and modern CLI features",
5
5
  "main": "dist/app.js",
6
6
  "bin": {