assistme 0.1.0 → 0.1.2
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/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -2995,7 +2995,7 @@ browserCmd.command("check").description("Check if Chrome is reachable for AI con
|
|
|
2995
2995
|
);
|
|
2996
2996
|
}
|
|
2997
2997
|
});
|
|
2998
|
-
program.command("start").description("Start the agent and listen for tasks from the web UI").option("-w, --workspace <path>", "Workspace path (default: current directory)").option("-n, --name <name>", "Session name").option("-v, --verbose", "Enable verbose/debug logging").action(async (opts) => {
|
|
2998
|
+
program.command("start", { isDefault: true }).description("Start the agent and listen for tasks from the web UI").option("-w, --workspace <path>", "Workspace path (default: current directory)").option("-n, --name <name>", "Session name").option("-v, --verbose", "Enable verbose/debug logging").action(async (opts) => {
|
|
2999
2999
|
if (opts.verbose) {
|
|
3000
3000
|
setLogLevel("debug");
|
|
3001
3001
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -252,7 +252,7 @@ browserCmd
|
|
|
252
252
|
// ── assistme start ──────────────────────────────────────────────────
|
|
253
253
|
|
|
254
254
|
program
|
|
255
|
-
.command("start")
|
|
255
|
+
.command("start", { isDefault: true })
|
|
256
256
|
.description("Start the agent and listen for tasks from the web UI")
|
|
257
257
|
.option("-w, --workspace <path>", "Workspace path (default: current directory)")
|
|
258
258
|
.option("-n, --name <name>", "Session name")
|