mirror of
https://github.com/RightNow-AI/openfang.git
synced 2026-07-30 23:05:08 +00:00
- #825: Doctor now surfaces blocked workspace skills count in injection scan - #828: Skill install detects Git URLs (https://, git@) and clones before install - #856: Custom model names preserved — user-defined models take priority over builtins - #770: Dashboard WS streaming now triggers Alpine.js reactivity via splice() - #774: tool_use.input always normalized to JSON object (fixes Anthropic API errors) - #851/#808: Global skills loaded for all agents; workspace skills properly override globals - #785: Gemini streaming SSE parser handles \r\n line endings (fixes empty response loop) All 2,186 tests passing. Live tested with daemon. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "openfang-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "CLI tool for the OpenFang Agent OS"
|
|
|
|
[[bin]]
|
|
name = "openfang"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
openfang-types = { path = "../openfang-types" }
|
|
openfang-kernel = { path = "../openfang-kernel" }
|
|
openfang-api = { path = "../openfang-api" }
|
|
openfang-migrate = { path = "../openfang-migrate" }
|
|
openfang-skills = { path = "../openfang-skills" }
|
|
openfang-extensions = { path = "../openfang-extensions" }
|
|
zeroize = { workspace = true }
|
|
tokio = { workspace = true }
|
|
clap = { workspace = true }
|
|
clap_complete = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
dirs = { workspace = true }
|
|
reqwest = { workspace = true, features = ["blocking"] }
|
|
openfang-runtime = { path = "../openfang-runtime" }
|
|
uuid = { workspace = true }
|
|
ratatui = { workspace = true }
|
|
colored = { workspace = true }
|
|
tempfile = { workspace = true }
|