Skip to content

Commit f6ebb02

Browse files
jddunnclaude
andcommitted
docs: add ecosystem page with related repos
- Add docs/ECOSYSTEM.md with links to: - @framers/agentos (main SDK) - @framers/sql-storage-adapter (SQL storage) - @framers/agentos-extensions (extensions registry) - agentos.sh (website) - agentos-workbench (dev tools) - Update docs/README.md index with ecosystem section 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent cced945 commit f6ebb02

2 files changed

Lines changed: 132 additions & 0 deletions

File tree

docs/ECOSYSTEM.md

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
# AgentOS Ecosystem
2+
3+
> Related repositories, packages, and resources for building with AgentOS.
4+
5+
---
6+
7+
## Core Packages
8+
9+
### [@framers/agentos](https://github.com/framersai/agentos)
10+
**Main SDK** — The core orchestration runtime for building adaptive AI agents.
11+
12+
```bash
13+
npm install @framers/agentos
14+
```
15+
16+
[![npm](https://img.shields.io/npm/v/@framers/agentos?logo=npm&color=cb3837)](https://www.npmjs.com/package/@framers/agentos)
17+
[![GitHub](https://img.shields.io/github/stars/framersai/agentos?style=social)](https://github.com/framersai/agentos)
18+
19+
---
20+
21+
### [@framers/sql-storage-adapter](https://github.com/framersai/sql-storage-adapter)
22+
**SQL Storage** — Cross-platform SQL storage abstraction with automatic fallbacks. Supports SQLite, PostgreSQL, and in-memory storage.
23+
24+
```bash
25+
npm install @framers/sql-storage-adapter
26+
```
27+
28+
[![npm](https://img.shields.io/npm/v/@framers/sql-storage-adapter?logo=npm&color=cb3837)](https://www.npmjs.com/package/@framers/sql-storage-adapter)
29+
[![GitHub](https://img.shields.io/github/stars/framersai/sql-storage-adapter?style=social)](https://github.com/framersai/sql-storage-adapter)
30+
31+
**Features:**
32+
- SQLite (better-sqlite3, sql.js for browser)
33+
- PostgreSQL (pg)
34+
- Automatic runtime detection
35+
- Vector storage support for RAG
36+
37+
---
38+
39+
### [@framers/agentos-extensions](https://github.com/framersai/agentos-extensions)
40+
**Extensions Registry** — Community registry of tools, workflows, guardrails, and integrations.
41+
42+
```bash
43+
npm install @framers/agentos-extensions
44+
```
45+
46+
[![npm](https://img.shields.io/npm/v/@framers/agentos-extensions?logo=npm&color=cb3837)](https://www.npmjs.com/package/@framers/agentos-extensions)
47+
[![GitHub](https://img.shields.io/github/stars/framersai/agentos-extensions?style=social)](https://github.com/framersai/agentos-extensions)
48+
49+
**Extension Types:**
50+
- **Tools** — Custom agent capabilities
51+
- **Guardrails** — Safety and validation rules
52+
- **Workflows** — Multi-step process definitions
53+
- **Personas** — Agent personality templates
54+
- **Memory Providers** — Custom storage backends
55+
56+
---
57+
58+
## Applications
59+
60+
### [agentos.sh](https://github.com/framersai/agentos.sh)
61+
**Documentation Website** — Official documentation and marketing site.
62+
63+
🌐 **Live:** [agentos.sh](https://agentos.sh)
64+
65+
---
66+
67+
### [agentos-workbench](https://github.com/framersai/agentos-workbench)
68+
**Development Workbench** — Visual development environment for building and testing AgentOS agents.
69+
70+
**Features:**
71+
- Interactive agent playground
72+
- Tool testing interface
73+
- Conversation history viewer
74+
- Real-time streaming visualization
75+
76+
---
77+
78+
## Quick Links
79+
80+
| Resource | Link |
81+
|----------|------|
82+
| Documentation | [agentos.sh/docs](https://agentos.sh/docs) |
83+
| API Reference | [agentos-live-docs branch](https://github.com/framersai/agentos/tree/agentos-live-docs) |
84+
| npm | [@framers/agentos](https://www.npmjs.com/package/@framers/agentos) |
85+
| Discord | [Join Community](https://discord.gg/agentos) |
86+
| Twitter | [@framersai](https://twitter.com/framersai) |
87+
88+
---
89+
90+
## Contributing
91+
92+
We welcome contributions to any repository in the ecosystem:
93+
94+
1. **Bug reports**[Open an issue](https://github.com/framersai/agentos/issues)
95+
2. **Feature requests**[Start a discussion](https://github.com/framersai/agentos/discussions)
96+
3. **Extensions** — Submit to [agentos-extensions](https://github.com/framersai/agentos-extensions)
97+
4. **Documentation** — PRs welcome on any repo
98+
99+
---
100+
101+
## Architecture Overview
102+
103+
```
104+
┌─────────────────────────────────────────────────────────────┐
105+
│ Your Application │
106+
└─────────────────────────────────────────────────────────────┘
107+
108+
109+
┌─────────────────────────────────────────────────────────────┐
110+
│ @framers/agentos │
111+
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────┐ │
112+
│ │ AgentOS │ │ GMI │ │ Tool Orchestrator │ │
113+
│ │ Runtime │ │ Manager │ │ │ │
114+
│ └─────────────┘ └─────────────┘ └─────────────────────┘ │
115+
└─────────────────────────────────────────────────────────────┘
116+
│ │ │
117+
▼ ▼ ▼
118+
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
119+
│ sql-storage- │ │ agentos- │ │ LLM Providers │
120+
│ adapter │ │ extensions │ │ (OpenAI, etc.) │
121+
└─────────────────┘ └─────────────────┘ └─────────────────┘
122+
```
123+
124+
---
125+
126+
<p align="center">
127+
<sub>Part of the <a href="https://agentos.sh">AgentOS</a> ecosystem by <a href="https://frame.dev">Frame.dev</a></sub>
128+
</p>

docs/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
### Platform & Infrastructure
5252
- [**Platform Support**](./PLATFORM_SUPPORT.md) — Supported environments and requirements
5353

54+
### Ecosystem
55+
- [**Ecosystem**](./ECOSYSTEM.md) — Related packages, extensions, and resources
56+
- [**Releasing**](./RELEASING.md) — Automated release process
57+
5458
### API Reference
5559
- [**TypeDoc API**](./api/index.html) — Auto-generated API documentation
5660

0 commit comments

Comments
 (0)