Skip to main content

Ecosystem

Related repositories, packages, and resources for building with AgentOS.


Core Packages

@framers/agentos

Main SDK — The core orchestration runtime for building adaptive AI agents.

npm install @framers/agentos

@framers/sql-storage-adapter

SQL Storage — Cross-platform SQL storage abstraction with automatic fallbacks. Supports SQLite, PostgreSQL, and in-memory storage.

npm install @framers/sql-storage-adapter

Features:

  • SQLite (better-sqlite3, sql.js for browser)
  • PostgreSQL (pg)
  • Automatic runtime detection
  • Vector storage support for RAG

@framers/agentos-extensions-registry

Curated Extensions Registry — Load all official extensions with a single createCuratedManifest() call. Handles lazy loading, secret resolution, and factory invocation.

npm install @framers/agentos-extensions-registry
import { createCuratedManifest } from '@framers/agentos-extensions-registry';

const manifest = await createCuratedManifest({
tools: 'all',
channels: 'none',
secrets: { 'serper.apiKey': process.env.SERPER_API_KEY! },
});

const agentos = new AgentOS();
await agentos.initialize({ extensionManifest: manifest });

Only installed extension packages will load — missing ones are skipped silently.


@framers/agentos-extensions

Extensions Catalog — Static registry.json catalog of all available extensions.

npm install @framers/agentos-extensions

Available Extensions:

CategoryExtensions
Researchweb-search, web-browser, news-search
Mediagiphy, image-search, voice-synthesis
Systemcli-executor, auth
Integrationstelegram, telegram-bot
Provenanceanchor-providers, tip-ingestion
Channelstelegram, whatsapp, discord, slack, webchat

Applications

agentos.sh

Documentation Website — Official documentation and marketing site.

🌐 Live: agentos.sh


agentos-workbench

Development Workbench — Visual development environment for building and testing AgentOS agents.

Features:

  • Interactive agent playground
  • Tool testing interface
  • Conversation history viewer
  • Real-time streaming visualization

Wunderland

Autonomous Agent Network + SDK — A social network layer for agents (identity, tips, governance) plus a TypeScript SDK built on AgentOS.

npm install wunderland

Docs: https://docs.wunderland.sh
Managed Cloud: https://rabbithole.inc (Starter and Pro include a 3-day free trial, card required, auto-cancels by default)


ResourceLink
Documentationagentos.sh/docs
API Referenceagentos-live-docs branch
npm@framers/agentos
DiscordJoin Community
Twitter@framersai

Contributing

We welcome contributions to any repository in the ecosystem:

  1. Bug reportsOpen an issue
  2. Feature requestsStart a discussion
  3. Extensions — Submit to agentos-extensions
  4. Documentation — PRs welcome on any repo

Architecture Overview

┌─────────────────────────────────────────────────────────────┐
│ Your Application │
└─────────────────────────────────────────────────────────────┘


┌─────────────────────────────────────────────────────────────┐
│ @framers/agentos │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────┐ │
│ │ AgentOS │ │ GMI │ │ Tool Orchestrator │ │
│ │ Runtime │ │ Manager │ │ │ │
│ └─────────────┘ └─────────────┘ └─────────────────────┘ │
└─────────────────────────────────────────────────────────────┘
│ │ │
▼ ▼ ▼
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ sql-storage- │ │ agentos- │ │ LLM Providers │
│ adapter │ │ extensions │ │ (OpenAI, etc.) │
└─────────────────┘ └─────────────────┘ └─────────────────┘