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
- Host: GitHub
- URL: https://github.com/nibalizer/acs
- Owner: nibalizer
- License: apache-2.0
- Created: 2025-08-10T04:31:01.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-22T22:26:03.000Z (9 months ago)
- Last Synced: 2025-09-23T00:20:00.517Z (9 months ago)
- Language: Shell
- Size: 21.5 KB
- Stars: 4
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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

## 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
```