|
| 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 | +[](https://www.npmjs.com/package/@framers/agentos) |
| 17 | +[](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 | +[](https://www.npmjs.com/package/@framers/sql-storage-adapter) |
| 29 | +[](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 | +[](https://www.npmjs.com/package/@framers/agentos-extensions) |
| 47 | +[](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> |
0 commit comments