flowviant 0.74.2 → 0.76.0
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/agentPlan.mjs +187 -0
- package/bin/lib/deploy.mjs +4 -0
- package/bin/lib/fleet.mjs +25 -0
- package/bin/lib/landed.mjs +175 -0
- package/bin/lib/prompts.mjs +277 -10
- package/bin/lib/work.mjs +1149 -2
- package/bin/lib/worktreeDiff.mjs +1 -1
- package/package.json +1 -1
package/bin/lib/worktreeDiff.mjs
CHANGED
|
@@ -55,7 +55,7 @@ const MAX_COMMITS = 50;
|
|
|
55
55
|
* a plausible id is dropped here rather than shipped: the server drops unknown
|
|
56
56
|
* ids too, but a readout should not spend a request on obvious noise.
|
|
57
57
|
*/
|
|
58
|
-
function taskIdsFromMessage(body) {
|
|
58
|
+
export function taskIdsFromMessage(body) {
|
|
59
59
|
const ids = [];
|
|
60
60
|
for (const line of String(body || '').split('\n')) {
|
|
61
61
|
const m = line.match(/^\s*Flowviant-Task\s*:\s*(.+?)\s*$/i);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowviant",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.76.0",
|
|
4
4
|
"description": "Run your own coding CLIs as build agents for Flowviant \u2014 Claude Code, Codex or Antigravity, on your own credentials. Holds your sessions, keeps a worktree per tab, and ships branches on your word.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|