Brian Kelleher
About
Writing
Quotes
Art
Projects
Ponder

Projects

A selection of technical projects and experiments. Each represents a journey of learning and creation.

AI-Powered Mathematical Animation Platform

PythonDjangoFastAPISvelteKitTypeScriptMySQLRedisRabbitMQCeleryDockerAWS S3CloudFrontManimOpenAI APIAnthropic APIElevenLabsWebSocketsJWTMyPy
View Details →
async def orchestrate_animation_generation(prompt: str):
    """Multi-agent orchestration for Manim video generation"""
    
    # Phase 1: Concept extraction with specialized agent
    concept_agent = ConceptExtractionAgent(
        model="gpt-4",
        math_knowledge_base=self.kb
    )
    concepts = await concept_agent.extract(prompt)
    
    # Phase 2: Parallel script generation with retry logic
    script_tasks = []
python

Claude Workflow Automation System

2025

An autonomous code generation pipeline orchestrating multi-stage AI workflows for full-stack application development

BashNode.jsBullMQRedisClaude APIGitDockerWinstonIORedis
View Details →
#!/bin/bash
# Hook-based autonomous continuation mechanism

# Check all PROGRESS_TRACKER.md files for remaining tasks
find "$PROJECT_DIR/projects/active" -name "PROGRESS_TRACKER.md" | while read tracker; do
    remaining=$(grep -c "\[ \]" "$tracker" 2>/dev/null || echo 0)
    total_remaining=$((total_remaining + remaining))
done

if [ "$total_remaining" -gt 0 ]; then
    echo "Implementation incomplete: $total_remaining tasks remain" >&2
    echo "Continue implementing. BE AGGRESSIVE ABOUT UPDATING PROGRESS_TRACKER.md"
bash

© 2025 Brian Kelleher

GitHub LinkedIn Email