agent-procs 0.6.2

Concurrent process runner for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Stage 1: Build
FROM rust:1.85-slim AS builder
WORKDIR /app
COPY . .
RUN cargo build --release

# Stage 2: Runtime
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/target/release/agent-procs /usr/local/bin/
ENTRYPOINT ["agent-procs"]