osagent 0.1.51 → 0.1.52
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/README.md +24 -0
- package/{cli.js → dist/cli.js} +8362 -1695
- package/package.json +139 -16
- package/locales/en.js +0 -1129
- package/locales/zh.js +0 -1052
- /package/{sandbox-macos-permissive-closed.sb → dist/sandbox-macos-permissive-closed.sb} +0 -0
- /package/{sandbox-macos-permissive-open.sb → dist/sandbox-macos-permissive-open.sb} +0 -0
- /package/{sandbox-macos-permissive-proxied.sb → dist/sandbox-macos-permissive-proxied.sb} +0 -0
- /package/{sandbox-macos-restrictive-closed.sb → dist/sandbox-macos-restrictive-closed.sb} +0 -0
- /package/{sandbox-macos-restrictive-open.sb → dist/sandbox-macos-restrictive-open.sb} +0 -0
- /package/{sandbox-macos-restrictive-proxied.sb → dist/sandbox-macos-restrictive-proxied.sb} +0 -0
- /package/{vendor → dist/vendor}/ripgrep/COPYING +0 -0
- /package/{vendor → dist/vendor}/ripgrep/arm64-darwin/rg +0 -0
- /package/{vendor → dist/vendor}/ripgrep/arm64-linux/rg +0 -0
- /package/{vendor → dist/vendor}/ripgrep/x64-darwin/rg +0 -0
- /package/{vendor → dist/vendor}/ripgrep/x64-linux/rg +0 -0
- /package/{vendor → dist/vendor}/ripgrep/x64-win32/rg.exe +0 -0
package/README.md
CHANGED
|
@@ -18,6 +18,8 @@ An AI-powered autonomous coding assistant CLI that runs locally with Ollama or c
|
|
|
18
18
|
- **Custom agents**: Define your own specialized agents in `~/.osagent/agents/`
|
|
19
19
|
- **Custom commands**: Create custom slash commands in `~/.osagent/commands/`
|
|
20
20
|
- **Custom skills**: Create skill plugins for multi-step workflows
|
|
21
|
+
- **Multi-agent orchestration**: Automatic skill detection and agent dispatch
|
|
22
|
+
- **Episodic memory**: Session tracking and learning from past interactions
|
|
21
23
|
- **Vector memory**: Semantic search over session history with ChromaDB
|
|
22
24
|
- **Embeddings**: Ollama embeddings with OpenRouter fallback
|
|
23
25
|
- **Advanced hooks**: 12 subagent hooks for lifecycle, memory, and skill events
|
|
@@ -184,6 +186,28 @@ docker compose -f docker/docker-compose.yml up -d
|
|
|
184
186
|
ollama pull nomic-embed-text
|
|
185
187
|
```
|
|
186
188
|
|
|
189
|
+
### Multi-Agent Orchestration
|
|
190
|
+
|
|
191
|
+
OS Agent features an intelligent orchestration system that automatically:
|
|
192
|
+
|
|
193
|
+
- **Detects skills** in your prompts (debugging, testing, refactoring, etc.)
|
|
194
|
+
- **Selects the best agent** for each task based on capabilities
|
|
195
|
+
- **Dispatches execution** to specialized subagents
|
|
196
|
+
- **Tracks progress** with real-time status updates
|
|
197
|
+
|
|
198
|
+
The orchestrator runs transparently - just describe what you want and OS Agent handles the rest.
|
|
199
|
+
|
|
200
|
+
### Episodic Memory
|
|
201
|
+
|
|
202
|
+
OS Agent learns from your sessions:
|
|
203
|
+
|
|
204
|
+
- **Records episodes** of your interactions automatically
|
|
205
|
+
- **Tracks actions** including tools used and files modified
|
|
206
|
+
- **Saves outcomes** for future reference
|
|
207
|
+
- **Enables recall** of past patterns and solutions
|
|
208
|
+
|
|
209
|
+
Episodes are stored locally in `~/.osagent/episodes/`.
|
|
210
|
+
|
|
187
211
|
### Configuration
|
|
188
212
|
|
|
189
213
|
OS Agent stores its configuration in `~/.osagent/`:
|