An open API service indexing awesome lists of open source software.

https://github.com/nibalizer/acs

Run AI Code Agents in parallel
https://github.com/nibalizer/acs

Last synced: 6 months ago
JSON representation

Run AI Code Agents in parallel

Awesome Lists containing this project

README

          

# ACS - AI Code Scaffolding

Ever wanted to run AI coding agents in parallel on the same project? Isolate them to run in docker so you can control what they have access to? Now you can!

# Screengrab

image

## Quickstart

```
git clone https://github.com/nibalizer/acs
cd acs/images/claude
docker build -t clauderunner .
cd -
export PATH=${PATH}:/`pwd`/acs/bin
cd
acs start --agent claude .
```

## amp

To use amp

```bash
acs start --agent amp .
```

## claude

To use claude code

```bash
acs start --agent claude .
```

## Connecting services

ACS can connect to an existing docker network to allow it to connect to services e.g. postgres or your app.

```
cd examples/postgres
docker compose -f postgres_service.yaml up -d
docker network ls
acs start --agent amp --network postgres_default .

# in amp
$ ./testdb.sh

```