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:
| Category | Extensions |
|---|---|
| Research | web-search, web-browser, news-search |
| Media | giphy, image-search, voice-synthesis |
| System | cli-executor, auth |
| Integrations | telegram, telegram-bot |
| Provenance | anchor-providers, tip-ingestion |
| Channels | telegram, 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)
Quick Links
| Resource | Link |
|---|---|
| Documentation | agentos.sh/docs |
| API Reference | agentos-live-docs branch |
| npm | @framers/agentos |
| Discord | Join Community |
| @framersai |
Contributing
We welcome contributions to any repository in the ecosystem:
- Bug reports — Open an issue
- Feature requests — Start a discussion
- Extensions — Submit to agentos-extensions
- 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.) │
└─────────────────┘ └─────────────────┘ └─────────────────┘