Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
.git
.venv
venv
__pycache__
*.pyc
*.pyo
*.pyd
.pytest_cache
.mypy_cache
.ruff_cache
.coverage
htmlcov
.env
.env.*
!.env.example
.DS_Store
.idea
.vscode
*.swp
*.swo
*.bak

examples/
_worktrees/
assets/
docs/
tests/
swe_af.egg-info/
.plandb.db

docker-compose*.yml
Dockerfile
.dockerignore
.github/
*.md
LICENSE
CODEOWNERS
CODE_OF_CONDUCT.md
SECURITY.md
Makefile
railway.toml
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ Thumbs.db
# AgentField runtime worktrees
.worktrees/
**/.worktrees/
_worktrees/
**/_worktrees/

# Root runtime artifacts for this node (example artifacts are versioned separately)
/.artifacts/
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ ENV PATH="/root/.opencode/bin:${PATH}"
# Git identity — env vars take highest precedence and are inherited by all
# subprocesses including Claude Code agent instances spawned by the SDK
ENV GIT_AUTHOR_NAME="SWE-AF" \
GIT_AUTHOR_EMAIL="contact@agentfield.com" \
GIT_AUTHOR_EMAIL="eng@agentfield.ai" \
GIT_COMMITTER_NAME="SWE-AF" \
GIT_COMMITTER_EMAIL="contact@agentfield.com"
GIT_COMMITTER_EMAIL="eng@agentfield.ai"

# Configure git identity and use gh CLI as credential helper so all git
# HTTPS operations (clone, push, fetch) authenticate via GH_TOKEN at runtime.
RUN git config --global user.name "SWE-AF" && \
git config --global user.email "contact@agentfield.com" && \
git config --global user.email "eng@agentfield.ai" && \
gh auth setup-git --hostname github.com --force

# Install uv for fast package installation
Expand Down
18 changes: 0 additions & 18 deletions swe_af/agent_ai/README.md

This file was deleted.

28 changes: 0 additions & 28 deletions swe_af/agent_ai/__init__.py

This file was deleted.

86 changes: 0 additions & 86 deletions swe_af/agent_ai/client.py

This file was deleted.

77 changes: 0 additions & 77 deletions swe_af/agent_ai/factory.py

This file was deleted.

1 change: 0 additions & 1 deletion swe_af/agent_ai/providers/__init__.py

This file was deleted.

53 changes: 0 additions & 53 deletions swe_af/agent_ai/providers/base.py

This file was deleted.

3 changes: 0 additions & 3 deletions swe_af/agent_ai/providers/claude/__init__.py

This file was deleted.

37 changes: 0 additions & 37 deletions swe_af/agent_ai/providers/claude/adapter.py

This file was deleted.

Loading
Loading