create-walle 0.2.0 → 0.2.1

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.
@@ -137,24 +137,21 @@ function install(targetDir) {
137
137
  // Save install path for start/stop
138
138
  saveWalleDir(path.resolve(targetDir));
139
139
 
140
- // Install and start the service
141
- console.log(`\n Starting Wall-E service...`);
142
- installService(path.resolve(targetDir), port);
143
-
144
140
  console.log(`
145
- ${GREEN}${BOLD}Wall-E is running!${RESET}
141
+ ${GREEN}${BOLD}Done!${RESET}
142
+
143
+ ${BOLD}Start Wall-E:${RESET}
144
+ cd ${targetDir} && node claude-task-manager/server.js
145
+
146
+ ${BOLD}Then open:${RESET} http://localhost:${port}
146
147
 
147
- ${BOLD}Open:${RESET} http://localhost:${port}
148
+ ${BOLD}Auto-start on login (optional):${RESET}
149
+ npx create-walle start
148
150
 
149
- ${BOLD}Manage:${RESET}
151
+ ${BOLD}Other commands:${RESET}
150
152
  npx create-walle stop ${DIM}Stop the service${RESET}
151
- npx create-walle start ${DIM}Start / restart${RESET}
152
153
  npx create-walle status ${DIM}Check status${RESET}
153
154
  npx create-walle logs ${DIM}View logs${RESET}
154
-
155
- ${BOLD}Change port:${RESET}
156
- Edit ${targetDir}/.env → CTM_PORT=8080
157
- npx create-walle start
158
155
  `);
159
156
  }
160
157
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-walle",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Set up Wall-E — your personal digital twin",
5
5
  "bin": {
6
6
  "create-walle": "bin/create-walle.js"