Agent Factory: Autonomous System Builds AI Agents from Online Problem Discussions

Agent Factory is an autonomous system that builds AI agents by identifying real-world problems from online discussions. Inspired by Andrej Karpathy's autoresearch pattern, it applies the same "run experiments overnight, keep what works, throw away what doesn't" approach to idea generation rather than ML optimization.
How It Works
The system scrapes Reddit, Hacker News, GitHub, and Twitter for real problems people discuss online. It scores each potential idea on three criteria: demand, market gap, and feasibility. If an idea clears a quality threshold, the system automatically builds a standalone AI agent, validates it works, and commits it. The threshold ratchets up with each build, requiring progressively better ideas.
Practical Implementation
The project consists of three key files:
program.md- Tells Claude Code where to research and what quality bar to hitseed/- A minimal Next.js template with 7 toolsrun.sh- Launches Claude Code headless and auto-restarts on context limits
The system is built with TypeScript, uses MIT licensing, and runs on either OpenRouter or Ollama. It specifically avoids LangChain and CrewAI frameworks. Each generated agent is standalone and can be cloned and run independently.
Example Output
In its first session, the system generated 20 agents including:
freelancer-deduction-finder- For freelancers asking about missed tax deductionswage-rights-advisor- For people confused about overtime exemptionsdata-broker-opt-out- For people overwhelmed by data broker opt-outs
Quality Verification
The system boots each agent, sends a test prompt, and checks if the output is useful. However, the creator acknowledges these are MVPs and some are rough. The primary purpose is idea generation - the creator reviews the shipped agents each morning and selects the most promising one for further development as a real project.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw Skill Usage Tracker: Monitor Which Skills You Actually Use
A developer built a tool to track OpenClaw skill usage analytics, including invocation counts, breakdowns by agent and channel, and top skill rankings over different time periods.

gui.new: Tool for Claude to Render Visual Output as Shareable Links
gui.new is a tool that lets Claude render visual output as live shareable links instead of returning code blocks. It's built with Claude, uses Next.js on Vercel with Supabase, and requires no signup.

Quiver: A GUI for Managing and Syncing Claude Code Skills
Quiver is a free, open-source GUI tool that provides a web interface for managing Claude Code skills, allowing users to browse local skills and marketplace plugins, edit SKILL.md files, sync via Git, and install skills without using the terminal.

Stanford Researchers Release OpenJarvis: A Local-First Framework for On-Device AI Agents
Stanford researchers have released OpenJarvis, a local-first framework for building on-device personal AI agents with tools, memory, and learning capabilities. The project includes GitHub repository and website links for developers to explore.