@mjasnikovs/pi-task 0.21.1 → 0.21.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.
@@ -337,10 +337,12 @@ export function clientScript(wsUrl) {
337
337
  updateStatusDot();
338
338
  const promptOpen = activePromptId !== null;
339
339
  inputEl.disabled = !connected || promptOpen;
340
+ // Keep these SHORT: the 1-row textarea clips a long placeholder at phone
341
+ // width (seen at 390px in a real browser).
340
342
  inputEl.placeholder = agentRunning
341
- ? 'message the agent \\u2014 steers the live turn'
343
+ ? 'steers the live turn'
342
344
  : (runHolding
343
- ? 'task running \\u2014 held for the next task turn'
345
+ ? 'held for the next task turn'
344
346
  : 'type a message\\u2026 (/ for commands)');
345
347
  if (agentRunning && !promptOpen) {
346
348
  // Send morphs into a red Stop that interrupts the running turn.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mjasnikovs/pi-task",
3
- "version": "0.21.1",
3
+ "version": "0.21.2",
4
4
  "description": "Deterministic task planning and spec-orchestration for local models — crash-safe /task pipelines with verify/enforce gates, a real-time remote web view, and web/docs/fetch/worker subagent tools.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",