SWE-AF

(★ 981)

Autonomous software engineering fleet of AI agents for production-grade PRs on AgentField: plan, code, test, and ship.

File Explorer

  • .dockerignore
  • .env.example
  • .gitignore
  • agentfield-package.yaml
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • CODEOWNERS
  • docker-compose.go.yml
  • docker-compose.local.yml
  • docker-compose.yml
  • Dockerfile
  • LICENSE
  • Makefile
  • opencode.json
  • pyproject.toml
  • railway.toml
  • README.md
  • requirements-docker.txt
  • requirements.txt
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

claude

View Details ▼

An agent-based coding tool that understands your code base and helps you code faster through natural language commands.

claude prompt

Execute with prompt:

claude update

Update `claude`:

claude mcp list

Get the list of specified MCP servers:

🔍

codex

View Details ▼

Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.

codex

Start an interactive Codex session in the current directory:

codex "{{prompt}}"

Run a single Codex command using a prompt:

codex --sandbox workspace-write "{{prompt}}"

Run a prompt allowing Codex to edit files in the workspace:

🔍

docker compose up

View Details ▼

Start and run Docker services defined in a Compose file.

docker compose up

Start all services defined in the docker-compose file:

docker compose up {{[-d|--detach]}}

Start services in the background (detached mode):

docker compose up --build

Start services and rebuild images before starting:

🔍

docker compose

View Details ▼

Run and manage multi container Docker applications.

docker compose ps

List all running containers:

docker compose up {{[-d|--detach]}}

Create and start all containers in the background using a `docker-compose.yml` file from the current directory:

docker compose up --build

Start all containers, rebuild if necessary:

🔍

gh pr checks

View Details ▼

View CI checks for a GitHub pull request.

gh pr checks

Show checks for the pull request of the current branch:

gh pr checks {{pr_number}}

Show checks for a specific pull request:

gh pr checks {{pr_number}} --watch

Watch checks and update in real time until completion:

🔍

git status

View Details ▼

Show the changes to files in a Git repository.
List changed, added, and deleted files compared to the currently checked-out commit.

git status

Show untracked and changed files which are not yet added for commit:

git status {{[-s|--short]}}

Give output in short format:

git status {{[-sb|--short --branch]}}

Show output in short format along with branch info:

🔍

git

View Details ▼

Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.

git init

Create an empty Git repository:

git clone {{https://example.com/repo.git}}

Clone a remote Git repository from the internet:

git status

View the status of the local repository:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

bwrap

View Details ▼

Run programs in a lightweight sandbox.

bwrap --ro-bind / / {{/bin/bash}}

Run a program in a read-only environment:

bwrap --dev-bind /dev /dev --proc /proc --ro-bind / / --tmpfs /tmp {{/bin/bash}}

Give the environment access to devices, process information and create a `tmpfs` for it:

// repository documentation