mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-11 22:53:00 +00:00
New `arc-exe` crate that runs agent tool operations inside ephemeral exe.dev VMs via SSH. Uses two SSH connections: a management plane (`ssh exe.dev`) for VM lifecycle and a data plane (`ssh vmname.exe.xyz`) for command execution and file I/O. Includes SshRunner trait with MockSshRunner for unit tests and OpensshRunner for real SSH, with raw_mode for the exe.dev management plane's custom command handler. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[package]
|
|
name = "arc-workflows"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
description = "A DOT-based pipeline runner for multi-stage AI workflows"
|
|
repository = "https://github.com/brynary/arc"
|
|
keywords = ["llm", "ai", "pipeline", "workflow", "dot"]
|
|
categories = ["development-tools"]
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
clap.workspace = true
|
|
anyhow.workspace = true
|
|
dotenvy.workspace = true
|
|
arc-agent = { path = "../arc-agent" }
|
|
arc-exe = { path = "../arc-exe" }
|
|
arc-util = { path = "../arc-util" }
|
|
arc-git-storage = { path = "../arc-git-storage" }
|
|
arc-llm = { path = "../arc-llm" }
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
ulid.workspace = true
|
|
uuid.workspace = true
|
|
rand.workspace = true
|
|
async-trait.workspace = true
|
|
futures.workspace = true
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
nom = "7"
|
|
toml.workspace = true
|
|
dirs = "6"
|
|
dialoguer.workspace = true
|
|
daytona-sdk.workspace = true
|
|
daytona-api-client.workspace = true
|
|
base64.workspace = true
|
|
regex.workspace = true
|
|
scopeguard = "1"
|
|
git2.workspace = true
|
|
console.workspace = true
|
|
indicatif.workspace = true
|
|
tokio-util.workspace = true
|
|
tracing.workspace = true
|
|
reqwest.workspace = true
|
|
jsonwebtoken.workspace = true
|
|
[dev-dependencies]
|
|
mockito = "1"
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
tempfile = "3"
|
|
dotenvy.workspace = true
|
|
assert_cmd = "2"
|
|
predicates = "3"
|