@mjasnikovs/pi-task 0.13.3 → 0.13.4
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/README.md +3 -3
- package/dist/remote/ui.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
<img src="https://
|
|
3
|
+
<img src="https://raw.githubusercontent.com/mjasnikovs/pi-task/main/assets/pipeline.svg" alt="pi-task pipeline: a /task request runs through refine, research, grill, compose and critique, then the final spec is delivered to your main pi session in the same chat. Every phase boundary is persisted to .pi-tasks/TASK_NNNN.md, so the task is crash-safe and resumable." width="820"/>
|
|
4
4
|
|
|
5
|
-
# <img src="https://
|
|
5
|
+
# <img src="https://raw.githubusercontent.com/mjasnikovs/pi-task/main/assets/pi-logo.svg" alt="" height="30" align="top"/> pi-task
|
|
6
6
|
|
|
7
7
|
**Deterministic spec-orchestration for local models — with bundled web, docs, fetch, and worker sub-agent tools.**
|
|
8
8
|
|
|
@@ -69,7 +69,7 @@ A real feature is usually several tasks, not one. `/task-auto` is a thin planner
|
|
|
69
69
|
|
|
70
70
|
<div align="center">
|
|
71
71
|
|
|
72
|
-
<img src="https://
|
|
72
|
+
<img src="https://raw.githubusercontent.com/mjasnikovs/pi-task/main/assets/task-auto.svg" alt="/task-auto plans a feature: it clarifies the gray areas, decomposes the answers into an ordered list of task titles written to TASK_AUTO_NNNN.md, then runs each unchecked title through the full /task pipeline one at a time, ticking the box before moving on." width="820"/>
|
|
73
73
|
|
|
74
74
|
</div>
|
|
75
75
|
|
package/dist/remote/ui.js
CHANGED
|
@@ -200,7 +200,7 @@ export function html(wsUrl) {
|
|
|
200
200
|
#prompt-card textarea { width: 100%; background: var(--surface0); color: var(--text);
|
|
201
201
|
border: 1px solid var(--surface2); border-radius: 6px; padding: 10px; font-size: 15px;
|
|
202
202
|
font-family: inherit; line-height: 1.5; resize: vertical; margin-bottom: 4px; }
|
|
203
|
-
#prompt-card .row { display: flex; gap: 8px; margin-top: 12px; align-items:
|
|
203
|
+
#prompt-card .row { display: flex; gap: 8px; margin-top: 12px; align-items: stretch;
|
|
204
204
|
flex-wrap: wrap; }
|
|
205
205
|
#prompt-card button { padding: 11px 16px; border-radius: 8px; border: none; cursor: pointer;
|
|
206
206
|
font-family: inherit; font-size: 14px; font-weight: 600; transition: filter .15s ease; }
|
|
@@ -209,8 +209,8 @@ export function html(wsUrl) {
|
|
|
209
209
|
font-weight: 700; flex: 1; min-width: 160px; }
|
|
210
210
|
#prompt-card button.secondary { background: var(--surface1); color: var(--text);
|
|
211
211
|
flex: 1; min-width: 160px; }
|
|
212
|
-
#prompt-card button.cancel { margin-left: auto;
|
|
213
|
-
font-size: 12px; font-weight: 500; padding: 8px 10px; }
|
|
212
|
+
#prompt-card button.cancel { margin-left: auto; align-self: center; background: transparent;
|
|
213
|
+
color: var(--subtext0); font-size: 12px; font-weight: 500; padding: 8px 10px; }
|
|
214
214
|
#prompt-card button.cancel:hover { color: var(--red); filter: none; }
|
|
215
215
|
#prompt-card button.cancel.armed { background: var(--red); color: var(--crust); font-weight: 700; }
|
|
216
216
|
.toast { position: fixed; top: calc(env(safe-area-inset-top, 0px) + 12px);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mjasnikovs/pi-task",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.4",
|
|
4
4
|
"description": "Deterministic spec-orchestration for local models, with a bundled real-time remote web view and web/docs/fetch/worker subagent tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|