kwaak 0.19.0

Run a team of autonomous agents on your code, right from your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# A lightweight image used for tests
FROM rust:1.88-slim

RUN apt-get update && \
  apt-get install -y --no-install-recommends \
  build-essential \
  libssl-dev \
  pkg-config \
  git \
  curl && \
  apt-get clean && \
  rm -rf /var/lib/apt/lists/*

COPY . /app

WORKDIR /app