Organize AI Agents into Fractal Structures. Emerge Superintelligence.
Open-source, permissionless infrastructure for building self-similar, recursive AI organizations.
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.
┌─────────────────────────┐
│ 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
└───────────────────────────────┘
| 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 |
| 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 |
| 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 |
| 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 |
| 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 |
| Repo | Description |
|---|---|
| oh-my-code | Reference implementation — complete example of an AI agent workspace using FractalMind |
| typemind-android | Android AI keyboard with agent integration |
# 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-managerFor the on-chain protocol:
npm install @anthropic-ai/fractalmind-sdkimport { 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',
});| 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 |
| Resource | Address |
|---|---|
| Package | 0x685d...df24 |
| Registry | 0xfb86...47e3 |
| SuLabs Org | 0x66f0...f0cb |
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
All repositories are MIT licensed unless otherwise noted.