Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
@fractalmind-ai

FractalMind AI

Fractal AI Agent Orchestration — self-similar management from single agents to emergent superintelligence

FractalMind AI

Organize AI Agents into Fractal Structures. Emerge Superintelligence.

Open-source, permissionless infrastructure for building self-similar, recursive AI organizations.

Live on SUI Testnet MIT License


Why FractalMind?

LangChain manages tools. CrewAI manages teams. OpenFang manages agents. FractalMind manages organizations.

Every layer uses the same pattern to manage the next — fractals all the way down:

L3+ Inter-Org Federation    DAO governance          Emergent superintelligence
L2  Organization            fractalmind-protocol    On-chain orgs, agents, tasks (SUI)
L1  Agent Team              team-manager            Lead-based team orchestration
L0  Single Agent            agent-manager           Lifecycle, heartbeat, skills, OKR

One pattern. Infinite depth. Each layer is a complete, self-similar copy of the one above it.

Architecture

                 ┌─────────────────────────┐
                 │   Users / Human Admins   │
                 │  (Telegram/Slack/CLI)    │
                 └───────────┬─────────────┘
                             │
                 ┌───────────▼─────────────┐
                 │       fractalbot        │  Communication Layer
                 │  Multi-channel gateway  │  Go · TG · Slack · iMessage
                 └───────────┬─────────────┘
                             │
                 ┌───────────▼─────────────┐
                 │     agent-manager       │  Management Layer (L0)
                 │  Agent lifecycle (tmux) │  start · stop · heartbeat
                 └─────┬───────────┬───────┘
                       │           │
          ┌────────────▼──┐  ┌────▼──────────┐
          │ team-manager  │  │ okr-manager   │  Management Layer (L1)
          │ Team orchestr │  │ Goal tracking │
          └───────────────┘  └───────────────┘

                    ═══ On-chain (SUI) ═══

          ┌───────────────────────────────┐
          │   fractalmind-protocol        │  Protocol Layer (L2)
          │  Org · Agent · Task · DAO     │  Move + TypeScript SDK
          └───────────────────────────────┘

Core Principles

Principle What It Means
Permissionless Anyone can create an AI org, register agents, assign tasks — no approval needed
Self-Similar Child orgs use the exact same management model as parent orgs — recursive by design
Decentralized On-chain DAO governance on SUI, no central authority
Composable Skills install independently via openskills, mix and match freely
Open Source All core tools MIT-licensed
Off-chain First Daily ops run locally; only trust-critical actions go on-chain

Products

Protocol Layer (SUI)

Repo Description
fractalmind-protocol Permissionless on-chain protocol for fractal AI organizations. 9 Move modules + TypeScript SDK. Create orgs, register agents, complete tasks, nest sub-orgs, govern via DAO. Live on SUI Testnet

Management Layer (openskills)

Repo Install Description
agent-manager-skill npx openskills install fractalmind-ai/agent-manager-skill Agent lifecycle management — start, stop, monitor, assign tasks via tmux + Python
team-manager-skill npx openskills install fractalmind-ai/team-manager-skill Multi-agent team orchestration with lead-based coordination
okr-manager-skill npx openskills install fractalmind-ai/okr-manager-skill OKR lifecycle management — create, track, audit, report

Communication Layer

Repo Description
fractalbot Multi-channel messaging gateway in Go — Telegram, Slack, Discord, Feishu, iMessage
team-chat-skill File-backed team collaboration with append-only inboxes and audit trail

Tool Skills

Repo Description
use-fractalbot-skill Agent-side skill for sending messages through fractalbot
agent-browser-skill Headless browser automation for AI agents
use-phone-skill ADB-based Android device control

Applications

Repo Description
oh-my-code Reference implementation — complete example of an AI agent workspace using FractalMind
typemind-android Android AI keyboard with agent integration

Quick Start

# Install core skills
npx openskills install fractalmind-ai/agent-manager-skill
npx openskills install fractalmind-ai/team-manager-skill
npx openskills install fractalmind-ai/okr-manager-skill

# Use in your AI agent
npx openskills read agent-manager

For the on-chain protocol:

npm install @anthropic-ai/fractalmind-sdk
import { FractalMindSDK } from '@anthropic-ai/fractalmind-sdk';

const sdk = new FractalMindSDK({
  packageId: '0x685d...df24',
  registryId: '0xfb86...47e3',
  client: suiClient,
});

// Create an organization
const tx = sdk.organization.createOrganization({
  name: 'MyAIOrg',
  description: 'An AI organization on SUI',
});

Roadmap

Phase Timeline Focus
Phase 1: Validation 2026 Q1 Core components live, SuLabs instance on SUI Testnet
Phase 2: Capability 2026 Q2 Security model, shared memory, MCP bridge, telemetry
Phase 3: Distribution 2026 Q3 fractalmind-envd, Gateway, on-chain integration, fractalctl
Phase 4: Emergence 2026 Q4+ DAO governance loop, fractal autonomy, inter-org federation

SUI Testnet Deployment

Resource Address
Package 0x685d...df24
Registry 0xfb86...47e3
SuLabs Org 0x66f0...f0cb

Contributing

We welcome contributions across all repositories. Each repo has its own CI pipeline — ensure tests pass before submitting PRs.

  • Issues: File bugs or feature requests on the relevant repo
  • PRs: Fork, branch, test, submit — we review within 24h
  • Skills: Build your own with npx openskills read skill-creator

License

All repositories are MIT licensed unless otherwise noted.

Pinned Loading

  1. agent-manager-skill agent-manager-skill Public

    tmux + Python agent lifecycle manager (start/stop/monitor/assign) with cron-friendly scheduling; no server required

    Python 15

  2. fractalbot fractalbot Public

    Pure CLI + HTTP messaging gateway for routing channel messages to external agents.

    Go 11 1

  3. okr-manager-skill okr-manager-skill Public

    OKR lifecycle management skill for AI agents. Create, track, and report on Objectives and Key Results.

    8

  4. team-manager-skill team-manager-skill Public

    Team orchestration system for managing multi-agent teams with lead-based coordination

    Python

  5. team-chat-skill team-chat-skill Public

    File-backed team collaboration with append-only inboxes and acknowledgements

    Python

  6. fractalmind-protocol fractalmind-protocol Public

    Permissionless on-chain protocol for fractal AI organizations on SUI

    Move 1 1

Repositories

Showing 10 of 16 repositories
  • explorer Public

    FractalMind AI On-Chain Organization Explorer — Interactive visualization of SUI blockchain AI org structure

    fractalmind-ai/explorer’s past year of commit activity
    TypeScript 0 1 0 0 Updated Mar 7, 2026
  • fractalmind-envd Public

    Lightweight daemon for remote AI Agent management. SUI blockchain identity + WebSocket reverse tunnel.

    fractalmind-ai/fractalmind-envd’s past year of commit activity
    Go 0 0 0 0 Updated Mar 7, 2026
  • fractalbot Public

    Pure CLI + HTTP messaging gateway for routing channel messages to external agents.

    fractalmind-ai/fractalbot’s past year of commit activity
    Go 11 MIT 1 5 1 Updated Mar 7, 2026
  • fractalmind-ai.github.io Public

    FractalMind AI Documentation — Vision, Architecture, Components, and Roadmap

    fractalmind-ai/fractalmind-ai.github.io’s past year of commit activity
    0 1 0 0 Updated Mar 7, 2026
  • openclaw-gateway-app Public

    OpenClaw gateway application

    fractalmind-ai/openclaw-gateway-app’s past year of commit activity
    Shell 0 1 0 0 Updated Mar 7, 2026
  • use-fractalbot-skill Public

    Send messages with fractalbot CLI — skill for AI agents

    fractalmind-ai/use-fractalbot-skill’s past year of commit activity
    0 MIT 1 0 0 Updated Mar 7, 2026
  • use-phone-skill Public

    Use Android phone via ADB — skill for AI agents

    fractalmind-ai/use-phone-skill’s past year of commit activity
    Python 0 1 0 0 Updated Mar 7, 2026
  • fractalmind-protocol Public

    Permissionless on-chain protocol for fractal AI organizations on SUI

    fractalmind-ai/fractalmind-protocol’s past year of commit activity
    Move 1 1 0 0 Updated Mar 7, 2026
  • .github Public

    FractalMind AI organization profile

    fractalmind-ai/.github’s past year of commit activity
    0 0 0 0 Updated Mar 7, 2026
  • agent-browser-skill Public

    AI agent skill for headless browser automation via agent-browser CLI. Token-efficient web browsing, screenshots, form filling, and UI auditing for AI agents.

    fractalmind-ai/agent-browser-skill’s past year of commit activity
    0 MIT 0 0 0 Updated Mar 5, 2026

People

This organization has no public members. You must be a member to see who’s a part of this organization.