flowviant 0.81.0 → 0.84.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/README.md +13 -0
- package/bin/lib/admission.mjs +116 -0
- package/bin/lib/config.mjs +44 -4
- package/bin/lib/env.mjs +24 -3
- package/bin/lib/fleet.mjs +393 -9
- package/bin/lib/instance.mjs +7 -0
- package/bin/lib/prompts.mjs +50 -0
- package/bin/lib/resources.mjs +226 -1
- package/bin/lib/runtimes.mjs +25 -0
- package/bin/lib/trace.mjs +194 -0
- package/bin/lib/work.mjs +460 -11
- package/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowviant",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.84.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": {
|