content = """import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).parent))

from autonomy.learning_loops import LearningLoop
from autonomy.task_planner import TaskPlanner
from autonomy.task_executor import TaskExecutor
from autonomy.transfer_learning import TransferLearner
from autonomy.self_improver import SelfImprover

class EdenIntegrated:
    def __init__(self):
        self.learning = LearningLoop()
        self.planner = TaskPlanner()
        self.executor = TaskExecutor()
        print("Eden Integrated initialized")
    
    def complete_task(self, goal, task_type="general"):
        print(f"Task: {goal}")
        plan = self.planner.create_plan(goal)
        result = self.executor.execute_plan(plan, dry_run=True)
        print(f"Success: {result['success']}")
        return result

if __name__ == "__main__":
    print("EDEN INTEGRATED TEST")
    eden = EdenIntegrated()
    eden.complete_task("Create config", "file_creation")
    print("OPERATIONAL")
"""

with open('core/eden_integrated.py', 'w') as f:
    f.write(content)
print("Created core/eden_integrated.py")
