@genesis-agent/cli 0.1.1 → 0.1.2
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 +50 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/deadraid/genesis/main/docs/mascot-dark.svg">
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/deadraid/genesis/main/docs/mascot-light.svg">
|
|
6
|
+
<img alt="Genesis" src="https://raw.githubusercontent.com/deadraid/genesis/main/docs/mascot-dark.svg" width="600">
|
|
7
|
+
</picture>
|
|
8
|
+
|
|
9
|
+
# Genesis
|
|
10
|
+
|
|
11
|
+
**Universal autonomous AI agent built in Zig**
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
Genesis runs in the terminal, in the browser, and inside messaging platforms — with multi-agent swarm execution when a single agent isn't enough.
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install -g @genesis-agent/cli
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
genesis # interactive TUI
|
|
27
|
+
genesis --provider anthropic --model claude-sonnet-4-6 # specific provider
|
|
28
|
+
genesis --task "Build a REST API" # swarm mode
|
|
29
|
+
genesis --server --transport ws --listen 0.0.0.0:7700 # server mode
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Highlights
|
|
33
|
+
|
|
34
|
+
- **Interactive TUI** — streaming chat, markdown rendering, 6 themes (dark/light)
|
|
35
|
+
- **Web UI** — React-based browser interface with full feature parity
|
|
36
|
+
- **Channel adapters** — Telegram, Discord, Slack, X; custom channels via JSON-RPC stdio
|
|
37
|
+
- **Multi-provider** — Anthropic, z.ai, OpenAI, Google, OpenRouter, Chutes, Moonshot, MiniMax
|
|
38
|
+
- **Swarm engine** — parallel multi-agent execution with role differentiation
|
|
39
|
+
- **Subagents** — lightweight parallel tasks with workspace isolation
|
|
40
|
+
- **MCP support** — external tools through Model Context Protocol
|
|
41
|
+
- **Built-in tools** — file editing, shell, glob, web search/fetch, scheduler, vault
|
|
42
|
+
- **Permission system** — safe/normal/auto/yolo modes
|
|
43
|
+
|
|
44
|
+
## Documentation
|
|
45
|
+
|
|
46
|
+
Full documentation: [github.com/deadraid/genesis](https://github.com/deadraid/genesis#readme)
|
|
47
|
+
|
|
48
|
+
## License
|
|
49
|
+
|
|
50
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesis-agent/cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Genesis — AI agent
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Genesis — universal autonomous AI agent with multi-agent swarm execution",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|