@plur-ai/cli 0.8.2 → 0.8.3

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.
@@ -167,8 +167,7 @@ ${parts2.join("\n")}` };
167
167
  } else {
168
168
  task = input.prompt || "";
169
169
  if (!task) {
170
- writeFileSync(marker, "");
171
- return;
170
+ task = "general session";
172
171
  }
173
172
  const sessionId2 = randomUUID();
174
173
  writeFileSync(marker, JSON.stringify({ task, sessionId: sessionId2 }));
package/dist/index.js CHANGED
@@ -49,7 +49,7 @@ function createPlur(flags2) {
49
49
  }
50
50
 
51
51
  // src/index.ts
52
- var VERSION = "0.8.2";
52
+ var VERSION = "0.8.3";
53
53
  var argv = process.argv.slice(2);
54
54
  if (argv.includes("--version") || argv.includes("-v")) {
55
55
  console.log(VERSION);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plur-ai/cli",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "plur": "dist/index.js"
@@ -10,7 +10,7 @@
10
10
  "dist"
11
11
  ],
12
12
  "dependencies": {
13
- "@plur-ai/core": "0.8.2"
13
+ "@plur-ai/core": "0.8.3"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/node": "^25.5.0"