├── .env.sample ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── README.md ├── autocoder ├── __init__.py ├── helpers │ ├── __init__.py │ ├── code.py │ ├── context.py │ └── files.py ├── main.py ├── steps │ ├── __init__.py │ ├── act.py │ └── reason.py └── tests │ ├── __init__.py │ ├── e2e │ ├── __init__.py │ ├── test_create_hello_world.py │ ├── test_hello_world_bad_test.py │ ├── test_hello_world_broken.py │ ├── test_hello_world_finished.py │ ├── test_hello_world_good_test.py │ └── test_hello_world_replace.py │ ├── helpers │ ├── __init__.py │ ├── code.py │ ├── context.py │ └── files.py │ └── steps │ ├── __init__.py │ ├── act.py │ └── reason.py ├── docker-compose.yml ├── dockerfile ├── requirements.txt ├── resources ├── image.jpg └── youcreatethefuture.jpg ├── setup.py ├── start.py └── test.py /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/README.md -------------------------------------------------------------------------------- /autocoder/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import * -------------------------------------------------------------------------------- /autocoder/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/helpers/__init__.py -------------------------------------------------------------------------------- /autocoder/helpers/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/helpers/code.py -------------------------------------------------------------------------------- /autocoder/helpers/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/helpers/context.py -------------------------------------------------------------------------------- /autocoder/helpers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/helpers/files.py -------------------------------------------------------------------------------- /autocoder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/main.py -------------------------------------------------------------------------------- /autocoder/steps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/steps/__init__.py -------------------------------------------------------------------------------- /autocoder/steps/act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/steps/act.py -------------------------------------------------------------------------------- /autocoder/steps/reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/steps/reason.py -------------------------------------------------------------------------------- /autocoder/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/__init__.py -------------------------------------------------------------------------------- /autocoder/tests/e2e/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/e2e/__init__.py -------------------------------------------------------------------------------- /autocoder/tests/e2e/test_create_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/e2e/test_create_hello_world.py -------------------------------------------------------------------------------- /autocoder/tests/e2e/test_hello_world_bad_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/e2e/test_hello_world_bad_test.py -------------------------------------------------------------------------------- /autocoder/tests/e2e/test_hello_world_broken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/e2e/test_hello_world_broken.py -------------------------------------------------------------------------------- /autocoder/tests/e2e/test_hello_world_finished.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/e2e/test_hello_world_finished.py -------------------------------------------------------------------------------- /autocoder/tests/e2e/test_hello_world_good_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/e2e/test_hello_world_good_test.py -------------------------------------------------------------------------------- /autocoder/tests/e2e/test_hello_world_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/e2e/test_hello_world_replace.py -------------------------------------------------------------------------------- /autocoder/tests/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/helpers/__init__.py -------------------------------------------------------------------------------- /autocoder/tests/helpers/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/helpers/code.py -------------------------------------------------------------------------------- /autocoder/tests/helpers/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/helpers/context.py -------------------------------------------------------------------------------- /autocoder/tests/helpers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/helpers/files.py -------------------------------------------------------------------------------- /autocoder/tests/steps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/steps/__init__.py -------------------------------------------------------------------------------- /autocoder/tests/steps/act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/autocoder/tests/steps/act.py -------------------------------------------------------------------------------- /autocoder/tests/steps/reason.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/dockerfile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/resources/image.jpg -------------------------------------------------------------------------------- /resources/youcreatethefuture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/resources/youcreatethefuture.jpg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/setup.py -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoinTheAlliance/autocoder/HEAD/start.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | from autocoder.tests import * --------------------------------------------------------------------------------