Skip to content

Instantly share code, notes, and snippets.

View taylor-curran's full-sized avatar

Taylor Curran taylor-curran

  • Windsurf
  • Austin
View GitHub Profile
@taylor-curran
taylor-curran / simple_session_loop_with_structured_output.py
Created October 25, 2025 15:27
Simple Structured Output Devin Loop Example
#!/usr/bin/env python3
"""
Simplified script to create Devin sessions for multiple repositories.
Retrieves and saves structured outputs to local files.
Dependencies: httpx and python-dotenv
pip install httpx python-dotenv
"""
import os
@taylor-curran
taylor-curran / simple_session_loop.py
Created October 25, 2025 15:22
Simple Parallel Devin Session Loop
#!/usr/bin/env python3
"""
Super simple script to run Devin on multiple repos.
Just a for loop - no parallelism needed since sessions are non-blocking!
pip install httpx python-dotenv
"""
import os
import httpx
from dotenv import load_dotenv