Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 942 Bytes

File metadata and controls

59 lines (41 loc) · 942 Bytes

Installation

Prerequisites

From Source

git clone https://github.com/agentralabs/agentic-forge.git
cd agentic-forge
cargo build --workspace --release
cargo install --path crates/agentic-forge-cli

Quick Install

bash scripts/install.sh

Verify Installation

aforge version
aforge health
aforge info

FFI Library

To build the C FFI library:

cargo build --release -p agentic-forge-ffi

Output files:

  • Static: target/release/libagentic_forge_ffi.a
  • Dynamic: target/release/libagentic_forge_ffi.dylib (macOS)

Uninstall

cargo uninstall agentic-forge-cli

Troubleshooting

If aforge is not found after installation, ensure ~/.cargo/bin is in your PATH:

export PATH="$HOME/.cargo/bin:$PATH"

See docs/public/troubleshooting.md for more help.