shin-engine 1.0.8 → 1.0.9

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/bin/ee.js +7 -3
  2. package/package.json +1 -1
package/bin/ee.js CHANGED
@@ -143,8 +143,9 @@ async function main() {
143
143
 
144
144
  if (!cmd) {
145
145
  log("shin-engine v" + VERSION);
146
- log("Usage: shin <command>");
147
- log("Run 'shin --help' for options");
146
+ log("");
147
+ log("Install: npm install -g shin-engine");
148
+ log("Usage: shin --help");
148
149
  return;
149
150
  }
150
151
 
@@ -201,7 +202,10 @@ async function main() {
201
202
  }
202
203
 
203
204
  if (cmd === "--help" || cmd === "-h") {
204
- log("Usage: shin <command>");
205
+ log("SHIN - Engineering Experience Engine");
206
+ log("");
207
+ log("Install:");
208
+ log(" npm install -g shin-engine");
205
209
  log("");
206
210
  log("Commands:");
207
211
  log(" shin start Start the SHIN backend (first run downloads + installs)");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shin-engine",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Engineering Experience Engine — engineering judgment for AI coding agents",
5
5
  "bin": {
6
6
  "shin": "bin/ee.js"