Skip to main content

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
AdapterRuntimeUse Case
better-sqlite3Node.jsProduction default
pgNode.jsCloud PostgreSQL
sql.jsBrowserWASM client-side
capacitorMobileiOS/Android
electronDesktopIPC bridge
indexeddbBrowserFallback
memoryAnyTesting

@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
CategoryExtensions
Researchweb-search, web-browser, news-search, deep-research, content-extraction
Mediagiphy, image-search, voice-synthesis
Systemcli-executor, browser-automation, credential-vault
Channels37 platform adapters (Discord, Telegram, Slack, Twitter, etc.)
ProductivityGoogle Calendar, Gmail
ProvenanceSolana 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.


ResourceLink
Docsdocs.agentos.sh
npm@framers/agentos
DiscordJoin Community
GitHubframersai/agentos