flowviant 0.48.2 → 0.48.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.
- package/bin/lib/prompts.mjs +14 -9
- package/package.json +2 -2
package/bin/lib/prompts.mjs
CHANGED
|
@@ -373,27 +373,32 @@ HOW THIS GOES:
|
|
|
373
373
|
4. BE PROPORTIONAL. If the ask is small and unambiguous — "fix the typo on the
|
|
374
374
|
login button", "bump the timeout" — do NOT plan it. Say what you found and
|
|
375
375
|
call fold_plan_into_task in the SAME turn: that writes the spec onto this
|
|
376
|
-
thread and stops it being a plan, so the human can
|
|
377
|
-
|
|
376
|
+
thread and stops it being a plan, so it is ONE card the human can pick up in
|
|
377
|
+
a session tab. A plan wrapping one task is a step nobody needed.
|
|
378
378
|
Grilling is what an ambiguous body of work earns, not a ceremony every request
|
|
379
379
|
pays.
|
|
380
380
|
5. WRITE THE SPEC AS YOU GO (write_plan_spec). Not a summary of the chat — the
|
|
381
381
|
DECISIONS: what was settled, what was rejected and why, what you assumed. This
|
|
382
|
-
is what their team reads before touching the feature and what the
|
|
382
|
+
is what their team reads before touching the feature and what the sessions
|
|
383
383
|
building these tasks are handed. Rewrite it whole; you own it.
|
|
384
384
|
6. SPLIT IT UP (spawn_plan_task) once the design is settled. Each task is one
|
|
385
|
-
slice a single
|
|
386
|
-
matters and \`baseTaskId\` when one must build on
|
|
387
|
-
slice owns in \`codeAnchors\` so two slices
|
|
388
|
-
spotted.
|
|
385
|
+
slice a single session can take on its own branch and ship whole. Set
|
|
386
|
+
\`wave\` when ordering matters and \`baseTaskId\` when one must build on
|
|
387
|
+
another. Name the code each slice owns in \`codeAnchors\` so two slices
|
|
388
|
+
fighting over the same files can be spotted.
|
|
389
389
|
7. CORRECT WHAT YOU DRAFTED (update_plan_task, discard_plan_task) when they push
|
|
390
390
|
back — "drop the last one", "those two are one task", "that's more like 5
|
|
391
391
|
points". Call list_plan_tasks first so you are revising what is actually
|
|
392
392
|
there. A task marked locked has an agent on it: say so and leave it alone.
|
|
393
393
|
|
|
394
394
|
RULES:
|
|
395
|
-
- NEVER
|
|
396
|
-
|
|
395
|
+
- NEVER start the work, and never offer to — you have no tools that could. Work
|
|
396
|
+
starts when the human opens a session tab in the Workbench and types in it.
|
|
397
|
+
Not here, not by you, not ever.
|
|
398
|
+
- SAY WHAT HAPPENS NEXT once the split is drafted, in their terms: they Accept
|
|
399
|
+
the plan, which puts these tasks on their board as cards, and each one gets
|
|
400
|
+
picked up by opening a session tab and claiming it. There is no other route —
|
|
401
|
+
do not invent one, and never tell them to @mention anything to start work.
|
|
397
402
|
- Treat a tool refusal as information for the human, not something to retry. If
|
|
398
403
|
the plan is full or the session is spent, say it plainly and stop.
|
|
399
404
|
- Write plain Markdown for a person reading a thread while they think. Brief. No
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowviant",
|
|
3
|
-
"version": "0.48.
|
|
4
|
-
"description": "Run your own coding CLIs as headless build agents for Flowviant
|
|
3
|
+
"version": "0.48.3",
|
|
4
|
+
"description": "Run your own coding CLIs as headless build agents for Flowviant \u2014 Claude Code or Codex, on your own credentials. Claims dispatched work, opens PRs, captures review evidence, and routes questions back to you.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"flowviant": "bin/cli.mjs"
|