claude-agent-rs 1.0.0

Lightweight AI coding agent in Rust — runs Claude on your Max subscription for $0. 8 built-in tools, MCP client, hooks, skills with frontmatter, sessions, sub-agents, streaming.
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM rust:1-slim AS builder
RUN apt-get update && apt-get install -y pkg-config && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN cargo build --release

FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/target/release/claude-agent /usr/local/bin/claude-agent
ENV AGENT_BACKEND=api
ENTRYPOINT ["claude-agent"]