feat: [Bezalel Epic-006] Sovereign Forge — Full Autonomy on a 2GB RAM VPS Without Cloud Inference (#168)
Refs #168 Agent: groq
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -58,3 +58,4 @@ mini-swe-agent/
|
||||
# Nix
|
||||
.direnv/
|
||||
result
|
||||
.aider*
|
||||
|
||||
@@ -5,7 +5,14 @@ import sys
|
||||
from pathlib import Path
|
||||
|
||||
errors = []
|
||||
for p in Path(".").rglob("*.py"):
|
||||
script_dir = Path(__file__).resolve().parent
|
||||
repo_root = script_dir
|
||||
while not (repo_root / ".git").is_dir():
|
||||
repo_root = repo_root.parent
|
||||
if repo_root == repo_root.parent:
|
||||
break # Prevent infinite loop if not in a git repo
|
||||
|
||||
for p in repo_root.rglob("*.py"):
|
||||
if ".venv" in p.parts or "__pycache__" in p.parts:
|
||||
continue
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user