@sulala/agent-os 0.1.29 → 0.1.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Sulala
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  Lightweight **Bun-based Agent Operating System** — micro-agents, installable skills, workflows, and a web dashboard.
4
4
 
5
+ ## Showcase
6
+
7
+ | Agents | Skills | Schedules |
8
+ | ------ | ------ | --------- |
9
+ | ![Agents](docs/media/agents.png) | ![Skills](docs/media/skill.png) | ![Schedules](docs/media/schedule.png) |
10
+ | Graphs | Graph agent | Graphs (chat) |
11
+ | ![Graphs](docs/media/graphs.png) | ![Graph agent](docs/media/graph_agent.png) | ![Graphs chat](docs/media/graphs_chat.png) |
12
+ | Agent chat | Agent (social media) | Memory |
13
+ | ![Agent chat](docs/media/agent_chat.png) | ![Agent social media](docs/media/agent_social_media.png) | ![Memory](docs/media/memory.png) |
14
+
5
15
  ## How lightweight is Sulala?
6
16
 
7
17
  Compared to typical AI agent frameworks, **Sulala is extremely small** — the core repo is only on the order of **~100 KB**, and even with dependencies it stays around **sub‑MB scale**.
@@ -148,9 +158,13 @@ curl -X POST http://127.0.0.1:3010/api/agents/run \
148
158
  | `OPENROUTER_API_KEY` | OpenRouter API key |
149
159
  | `AGENT_OS_AGENTS_DIR` | Override agents directory (default: ~/.agent-os/agents/) |
150
160
  | `AGENT_MEMORY_DB_PATH` | SQLite path for memory (default: ~/.agent-os/database.db) |
161
+ | `AGENT_OS_MAX_WORKERS` | Max concurrent task workers (default: 2× CPU). Set to `1` to serialize queue runs and reduce 429 rate limits. |
162
+ | `AGENT_OS_TASKS_DIR` | Task log directory (default: ~/.agent-os/tasks) |
151
163
 
152
164
  API keys can also be set in **Dashboard → Settings → AI Provider** and are stored in `~/.agent-os/config.json`.
153
165
 
166
+ **Request limit (429):** The runtime retries LLM calls up to 3 times with backoff on rate limit. For pipelines, you can also run graphs from **Schedules** (enqueued) and set `AGENT_OS_MAX_WORKERS=1` so only one task runs at a time.
167
+
154
168
  ## Project structure
155
169
 
156
170
  ```