EveryDev.ai
Sign inSubscribe
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
Main Menu
  • Tools
  • Developers
  • Topics
  • Discussions
  • Communities
  • News
  • Podcasts
  • Blogs
  • Builds
  • Contests
  • Compare
  • Arena
Create
    Home
    Tools

    2,508+ AI tools

    • New
    • Trending
    • Featured
    • Compare
    • Arena
    Categories
    • Agents1666
    • Coding1214
    • Infrastructure542
    • Marketing451
    • Design437
    • Projects396
    • Research371
    • Analytics339
    • Testing233
    • MCP227
    • Data213
    • Security200
    • Integration170
    • Learning155
    • Communication148
    • Prompts144
    • Extensions137
    • Commerce125
    • Voice122
    • DevOps99
    • Web78
    • Finance21
    1. Home
    2. Tools
    3. Fractals
    Fractals icon

    Fractals

    Multi-agent Systems

    Recursive agentic task orchestrator that decomposes any high-level task into a self-similar tree of subtasks and executes each leaf in isolated git worktrees using an agent swarm.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free and open-source under the MIT License. Self-host from the GitHub repository.

    Engagement

    Available On

    Web
    CLI
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsAgent FrameworksAutonomous Systems

    Alternatives

    Spine SwarmOpenManusOpenFang
    Developer
    TinyAGITinyAGI builds the operating system for AI-native companies…

    Listed May 2026

    About Fractals

    Fractals is an open-source recursive task orchestrator built by TinyAGI, available on GitHub under the MIT License. It takes a high-level task description, recursively decomposes it into a tree of atomic subtasks, and then executes each leaf node in an isolated git worktree using Claude CLI or Codex CLI agents. The project is marked as experimental and is written primarily in TypeScript.

    What It Is

    Fractals sits in the multi-agent orchestration category. Its core job is to bridge the gap between a vague, high-level goal and concrete, executable code-level work. Rather than asking a single agent to handle a complex task end-to-end, Fractals grows a "fractal tree" of subtasks — each composite node is broken down further until only atomic, directly executable leaves remain. Those leaves are then handed off to AI coding agents running in parallel, each in its own isolated git worktree to avoid conflicts.

    Architecture and Two-Phase Flow

    The system is split into two distinct phases:

    • Plan phase: The user enters a task and a max depth. An OpenAI model (gpt-5.2 per the source) classifies each node as atomic or composite. Composite nodes are recursively decomposed until all leaves are atomic and marked "ready."
    • Execute phase: The user reviews the full plan tree, provides a workspace path (git-initialized automatically), and triggers batch execution. Each leaf task is run via claude --dangerously-skip-permissions in its own git worktree, with real-time status polling from the frontend.

    The server runs on port 1618 — a deliberate reference to the golden ratio, the constant behind fractal geometry.

    Stack and Components

    The project uses a Next.js frontend for task input, tree visualization, and status polling, backed by a Hono API server. Key internal modules include:

    • llm.ts — OpenAI calls for classify and decompose with structured output
    • orchestrator.ts — Recursive plan() that builds the tree without executing
    • executor.ts — Claude CLI invocation per task in a git worktree
    • workspace.ts — git init and worktree management
    • batch.ts — Batch execution strategies (depth-first implemented; breadth-first and layer-sequential on the roadmap)

    Batch Execution and Roadmap

    Because of rate limits, leaf tasks execute in batches rather than all at once. The currently implemented strategy is depth-first: all leaves under one branch complete before moving to the next, with tasks within a branch running concurrently. The roadmap includes breadth-first and layer-sequential strategies, as well as a backpropagation "merge agent" that would combine worktree branches bottom-up after execution, LLM-inferred task dependencies, persistent sessions, and SSE/WebSocket real-time updates.

    Current Status

    The repository carries an "experimental" stability badge. According to the GitHub metadata, the project was created in early 2026 and last updated in May 2026, with 633 stars and 46 forks at the time of data collection. It is actively maintained under the TinyAGI organization, which also operates the tinyagicompany.com platform focused on AI-native company infrastructure.

    Fractals - 1

    Community Discussions

    Be the first to start a conversation about Fractals

    Share your experience with Fractals, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free and open-source under the MIT License. Self-host from the GitHub repository.

    • Recursive task decomposition
    • Git worktree isolation per task
    • Claude CLI and Codex CLI executor support
    • Next.js frontend with tree visualization
    • REST API

    Capabilities

    Key Features

    • Recursive task decomposition into a self-similar subtask tree
    • Atomic vs. composite task classification via LLM
    • Isolated git worktree execution per leaf task
    • Claude CLI and Codex CLI executor support
    • Next.js frontend with real-time tree visualization
    • Depth-first batch execution strategy
    • Configurable max recursion depth
    • Automatic git workspace initialization
    • REST API for session, decompose, workspace, execute, and tree state
    • OpenAI structured output for classify and decompose

    Integrations

    OpenAI (gpt-5.2)
    Claude CLI
    Codex CLI
    Git
    Next.js
    Hono
    API Available
    View Docs

    Reviews & Ratings

    No ratings yet

    Be the first to rate Fractals and help others make informed decisions.

    Developer

    TinyAGI

    TinyAGI builds the operating system for AI-native companies through its Singular platform, turning scattered work and knowledge into a living company brain. The team develops AI coworkers with persistent long-term memory, self-evolving skills, and autonomous coordination capabilities. Their products include Fractals, an open-source recursive task orchestrator, and a broader Company Emulator that lets users build departments and teams of AI agents. TinyAGI describes itself as an applied research lab focused on AGI products for human-AI collaboration.

    Read more about TinyAGI
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Spine Swarm icon

    Spine Swarm

    Spine Swarm is an agentic platform that autonomously manages and orchestrates AI agent swarms, enabling anyone to delegate complex tasks to parallel specialized sub-agents via a visual canvas workspace.

    OpenManus icon

    OpenManus

    An open-source framework for building and running general-purpose AI agents capable of executing complex, multi-step tasks autonomously.

    OpenFang icon

    OpenFang

    Open-source Agent Operating System built in Rust with 7 autonomous Hands, 30 pre-built agents, 40 channel adapters, 38 built-in tools, and 16 security systems in a single binary.

    Browse all tools

    Related Topics

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    181 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    358 tools

    Autonomous Systems

    AI agents that can perform complex tasks with minimal human guidance.

    235 tools
    Browse all topics
    Back to all tools
    Discussions