agent-core 0.1.0

A Rust Framework to build TUI Agents
Documentation
# Default recipe
default:
    @just --list

# Build the crate
build:
    @cargo build

# Run tests
test:
    @cargo test

# Run clippy
lint:
    @cargo clippy -- -D warnings

# Format code
fmt:
    @cargo fmt

# Check formatting
fmt-check:
    @cargo fmt -- --check

# Clean build artifacts
clean:
    @cargo clean