24 lines
648 B
Python
24 lines
648 B
Python
"""
|
|
Auto Claude Backend - Autonomous Coding Framework
|
|
==================================================
|
|
|
|
Multi-agent autonomous coding framework that builds software through
|
|
coordinated AI agent sessions.
|
|
|
|
This package provides:
|
|
- Autonomous agent execution for building features from specs
|
|
- Workspace isolation via git worktrees
|
|
- QA validation loops
|
|
- Memory management (Graphiti + file-based)
|
|
- Linear integration for project management
|
|
|
|
Quick Start:
|
|
python run.py --spec 001 # Run a spec
|
|
python run.py --list # List all specs
|
|
|
|
See README.md for full documentation.
|
|
"""
|
|
|
|
__version__ = "2.7.6"
|
|
__author__ = "Auto Claude Team"
|