apteva 0.20.2 → 0.22.0

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.
Files changed (2) hide show
  1. package/README.md +1 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -106,7 +106,7 @@ One command (`./apteva`) starts everything. The CLI spawns the server, the serve
106
106
  | **Session Persistence** | Conversation history survives restarts. JSONL per thread, auto-compaction, never loses context. |
107
107
  | **Agent-Driven Safety** | No forced approval gates. The agent decides, learns from feedback, asks when unsure. Three modes: autonomous, cautious, learn. |
108
108
  | **263+ Integrations** | GitHub, Slack, Stripe, Shopify, and more. Each runs as its own MCP server. Credentials encrypted. |
109
- | **Browser Control** | Local Chrome or Browserbase. Navigate, click, type, screenshot. Claude gets native computer use protocol. |
109
+ | **Browser Control** | Provided by the Computer app through MCP tools and app-managed sessions. |
110
110
  | **Multi-Channel** | CLI terminal, Telegram, Discord. Agent routes responses to the right channel. |
111
111
  | **Multi-Instance** | Run multiple agents in parallel. Each has its own directive, tools, and history. Projects for isolation. |
112
112
  | **Terminal UI** | Two-panel TUI with live status, thread thoughts, streaming responses, modal commands. |
@@ -130,7 +130,6 @@ One command (`./apteva`) starts everything. The CLI spawns the server, the serve
130
130
  | `/directive [text]` | Show or set directive |
131
131
  | `/mode` | Switch mode: autonomous, cautious, learn |
132
132
  | `/threads` | List/kill threads |
133
- | `/computer` | Browser: local, browserbase, off |
134
133
  | `/integrate <app>` | Connect an integration (263+ apps) |
135
134
  | `/connect telegram` | Connect Telegram bot |
136
135
  | `/channels` | List connected channels |
@@ -167,7 +166,6 @@ Select during setup. Switch anytime with `/mode` or the API.
167
166
  | [`apteva/apteva`](https://github.com/apteva/apteva) | This repo — CLI, setup wizard, TUI, npm launcher |
168
167
  | [`apteva/core`](https://github.com/apteva/core) | The thinking engine (Go) |
169
168
  | [`apteva/server`](https://github.com/apteva/server) | Management server — auth, instances, integrations, dashboard (Go) |
170
- | [`apteva/computer`](https://github.com/apteva/computer) | Browser control — local Chrome, Browserbase (Go) |
171
169
  | [`apteva/integrations`](https://github.com/apteva/integrations) | 263 app connectors + webhook registrar (TypeScript) |
172
170
 
173
171
  ## Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apteva",
3
- "version": "0.20.2",
3
+ "version": "0.22.0",
4
4
  "description": "AI agent platform with multi-thread orchestration, MCP integrations, and dashboard",
5
5
  "bin": {
6
6
  "apteva": "./cli.js"