nori-ai-cli 0.0.11 → 0.0.15
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
CHANGED
|
@@ -2,82 +2,52 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/tilework-tech/nori-cli/actions/workflows/rust-ci.yml)
|
|
4
4
|
[](https://www.npmjs.com/package/nori-ai-cli)
|
|
5
|
-
[](https://www.npmjs.com/package/nori-ai-cli)
|
|
6
5
|
[](https://github.com/tilework-tech/nori-cli/blob/dev/LICENSE)
|
|
7
|
-
[](https://github.com/tilework-tech/nori-cli/releases/latest)
|
|
8
6
|
|
|
9
|
-
|
|
7
|
+
**One CLI, multiple AI providers.** Nori is a local AI coding agent that lets you switch between Claude, Gemini, and Codex. All from the same native CLI.
|
|
10
8
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
## Overview
|
|
9
|
+
<!-- TODO: Add TUI screenshot here -->
|
|
10
|
+
<!--  -->
|
|
18
11
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
## Quickstart
|
|
22
|
-
|
|
23
|
-
### Installation
|
|
24
|
-
|
|
25
|
-
Install globally via npm:
|
|
12
|
+
## Install
|
|
26
13
|
|
|
27
14
|
```bash
|
|
28
15
|
npm install -g nori-ai-cli
|
|
29
16
|
```
|
|
30
17
|
|
|
31
|
-
|
|
18
|
+
Or download binaries from [GitHub Releases](https://github.com/tilework-tech/nori-cli/releases/latest).
|
|
32
19
|
|
|
33
|
-
|
|
34
|
-
npm install -g nori-ai-cli@next
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
You can also download platform-specific binaries from the [GitHub Releases](https://github.com/tilework-tech/nori-cli/releases/latest) page:
|
|
38
|
-
|
|
39
|
-
- **macOS**: `nori-*-darwin-arm64.tar.gz` (Apple Silicon) or `nori-*-darwin-x86_64.tar.gz` (Intel)
|
|
40
|
-
- **Linux**: `nori-*-linux-arm64.tar.gz` (ARM64) or `nori-*-linux-x86_64.tar.gz` (x86_64)
|
|
41
|
-
|
|
42
|
-
### Running Nori
|
|
43
|
-
|
|
44
|
-
Simply run `nori` to get started:
|
|
20
|
+
## Quick Start
|
|
45
21
|
|
|
46
22
|
```bash
|
|
47
23
|
nori
|
|
48
24
|
```
|
|
49
25
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
Nori supports multiple AI providers via the Agent Context Protocol:
|
|
53
|
-
|
|
54
|
-
| Provider | Model | Setup |
|
|
55
|
-
| -------- | ---------------- | ----------------------------------------------- |
|
|
56
|
-
| Claude | Anthropic Claude | `npx @zed-industries/claude-code-acp` (default) |
|
|
57
|
-
| Gemini | Google Gemini | `npx @google/gemini-cli --experimental-acp` |
|
|
58
|
-
| Codex | OpenAI | `npx @zed-industries/codex-acp` |
|
|
59
|
-
|
|
60
|
-
Switch providers during a session with the `/agent` command.
|
|
26
|
+
That's it. Nori launches an interactive TUI where you can chat, run commands, and let the AI assist with your codebase.
|
|
61
27
|
|
|
62
|
-
##
|
|
28
|
+
## Providers
|
|
63
29
|
|
|
64
|
-
|
|
65
|
-
- **MCP Integration**: Connect to Model Context Protocol servers for extended capabilities
|
|
66
|
-
- **Sandboxed Execution**: Commands run in a security sandbox (Seatbelt on macOS, Landlock on Linux)
|
|
67
|
-
- **Session Management**: Save and resume conversations
|
|
30
|
+
Switch between AI providers with the `/agent` command:
|
|
68
31
|
|
|
69
|
-
|
|
32
|
+
| Provider | Command |
|
|
33
|
+
|----------|---------|
|
|
34
|
+
| Claude | `npx @zed-industries/claude-code-acp` (default) |
|
|
35
|
+
| Gemini | `npx @google/gemini-cli --experimental-acp` |
|
|
36
|
+
| OpenAI | `npx @zed-industries/codex-acp` |
|
|
70
37
|
|
|
71
|
-
|
|
38
|
+
## Features
|
|
72
39
|
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
40
|
+
- **Multi-provider**: Anthropic's Claude Code, Google DeepMind's Gemini, and OpenAI's Codex
|
|
41
|
+
- **Sandboxed execution**: Commands run in OS-level security sandboxes
|
|
42
|
+
- **Coming Soon!**
|
|
43
|
+
- **MCP integration**: Connect to Model Context Protocol servers for extended tools
|
|
44
|
+
- **Session persistence**: Save and resume conversations with `nori resume`
|
|
45
|
+
- **Multi-agent orchestration**: Alternate between multiple agent sessions
|
|
76
46
|
|
|
77
47
|
## Attribution
|
|
78
48
|
|
|
79
|
-
Nori CLI is
|
|
49
|
+
Nori CLI is built on the great work within [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
80
50
|
|
|
81
51
|
## License
|
|
82
52
|
|
|
83
|
-
|
|
53
|
+
[Apache-2.0](LICENSE)
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|