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

setup-project: Project Bootstrap Script

2025

Opinionated script that scaffolds a complete project workspace with aligned docs (user stories, requirements, design, validation, tracking) so humans and AI share the same scratch pad and definition of done.

BashUnixGit
View Details →
#!/bin/bash

# setup-project - Create a new project with the standard template structure
# Usage: ./setup-project <project-name>

set -e

# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
bash