Ecosystem
Related repositories, packages, and resources for building with AgentOS.
Architecture Overview
Legend: Gold = core runtime · Violet = storage/LLM · Green = extension source · Cyan = extension catalog · Red = skills engine · Amber = skills catalog
Core Packages
@framers/agentos
Runtime — Core orchestration for adaptive AI agents: GMI cognitive substrate, tool system, guardrails, planning, memory, channels.
npm install @framers/agentos
@framers/sql-storage-adapter
Persistence — Unified SQL interface with automatic runtime detection across 7 backends. Powers SqlVectorStore, conversation persistence, and memory archival.
npm install @framers/sql-storage-adapter
| Adapter | Runtime | Use Case |
|---|---|---|
better-sqlite3 | Node.js | Production default |
pg | Node.js | Cloud PostgreSQL |
sql.js | Browser | WASM client-side |
capacitor | Mobile | iOS/Android |
electron | Desktop | IPC bridge |
indexeddb | Browser | Fallback |
memory | Any | Testing |
@framers/agentos-extensions-registry
Extension Catalog — Channel, tool, and provider metadata with createCuratedManifest() factory. Dynamically loads installed extensions.
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! },
});
@framers/agentos-extensions
Extension Source — Implementations, templates, and manifests for tools, channel adapters, and integrations. The registry catalogs these.
npm install @framers/agentos-extensions
| Category | Extensions |
|---|---|
| Research | web-search, web-browser, news-search, deep-research, content-extraction |
| Media | giphy, image-search, voice-synthesis |
| System | cli-executor, browser-automation, credential-vault |
| Channels | 37 platform adapters (Discord, Telegram, Slack, Twitter, etc.) |
| Productivity | Google Calendar, Gmail |
| Provenance | Solana anchoring, tip ingestion |
@framers/agentos-skills-registry
Skills Catalog — 40+ curated SKILL.md prompt modules with query helpers and lazy-loading factories.
npm install @framers/agentos-skills-registry
// Lightweight catalog queries (zero peer deps)
import { searchSkills, getSkillsByCategory } from '@framers/agentos-skills-registry/catalog';
// Full registry with lazy-loaded @framers/agentos
import { createCuratedSkillSnapshot } from '@framers/agentos-skills-registry';
const snapshot = await createCuratedSkillSnapshot({ skills: ['github', 'weather'] });
@framers/agentos-skills
Skills Engine — Parser, loader, and SkillRegistry runtime for SKILL.md prompt modules. The skills catalog depends on this.
npm install @framers/agentos-skills
import { SkillRegistry, resolveDefaultSkillsDirs } from '@framers/agentos-skills';
const registry = new SkillRegistry();
await registry.loadFromDirs(resolveDefaultSkillsDirs());
const snapshot = registry.buildSnapshot({ platform: process.platform, strict: true });
Applications
Wunderland
Agent Platform SDK — TypeScript SDK built on AgentOS with CLI, presets, social network layer, and Solana anchoring.
npm install wunderland
Docs: docs.wunderland.sh · Dashboard: rabbithole.inc
agentos.sh
Marketing Site — Official AgentOS landing page.
agentos-workbench
Dev Workbench — Visual agent playground with tool testing, conversation viewer, and streaming visualization.
Quick Links
| Resource | Link |
|---|---|
| Docs | docs.agentos.sh |
| npm | @framers/agentos |
| Discord | Join Community |
| GitHub | framersai/agentos |