First commit, working quite ok!

This commit is contained in:
2026-04-09 08:20:32 +02:00
commit c6dee66c4b
30 changed files with 2811 additions and 0 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env python3
"""
AutoDev - Autonomous CLI Development Studio
Can be symlinked from anywhere. Works in the directory where you call it.
"""
import os
import sys
# Resolve the real location of this script (follows symlinks)
# so Python can find the autodev package regardless of where we're called from
real_script = os.path.realpath(__file__)
package_dir = os.path.dirname(os.path.dirname(real_script))
if package_dir not in sys.path:
sys.path.insert(0, package_dir)
from autodev.main import main
main()