nori-ai-cli 0.0.10 → 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
  [![CI](https://github.com/tilework-tech/nori-cli/actions/workflows/rust-ci.yml/badge.svg?branch=dev)](https://github.com/tilework-tech/nori-cli/actions/workflows/rust-ci.yml)
4
4
  [![npm version](https://img.shields.io/npm/v/nori-ai-cli)](https://www.npmjs.com/package/nori-ai-cli)
5
- [![npm downloads](https://img.shields.io/npm/dm/nori-ai-cli)](https://www.npmjs.com/package/nori-ai-cli)
6
5
  [![License](https://img.shields.io/npm/l/nori-ai-cli)](https://github.com/tilework-tech/nori-cli/blob/dev/LICENSE)
7
- [![GitHub Release](https://img.shields.io/github/v/release/tilework-tech/nori-cli)](https://github.com/tilework-tech/nori-cli/releases/latest)
8
6
 
9
- A multi-provider AI coding agent that runs locally on your computer.
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
- ```bash
12
- npm install -g nori-ai-cli
13
- ```
14
-
15
- ---
16
-
17
- ## Overview
9
+ <!-- TODO: Add TUI screenshot here -->
10
+ <!-- ![Nori TUI Screenshot](assets/screenshot.png) -->
18
11
 
19
- Nori CLI is a fork of [OpenAI Codex CLI](https://github.com/openai/codex) with support for multiple AI providers. Switch between Claude, Gemini, and OpenAI seamlessly.
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
- For pre-release versions:
18
+ Or download binaries from [GitHub Releases](https://github.com/tilework-tech/nori-cli/releases/latest).
32
19
 
33
- ```bash
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
- ## Supported Providers
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
- ## Key Features
28
+ ## Providers
63
29
 
64
- - **Multi-Provider Support**: Switch between Claude, Gemini, and OpenAI via ACP
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
- ## Configuration
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
- Configuration is stored in `~/.codex/`:
38
+ ## Features
72
39
 
73
- - `config.toml` - Main configuration file
74
- - `auth.json` - Authentication tokens
75
- - `sessions/` - Saved conversations
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 a fork of [OpenAI Codex CLI](https://github.com/openai/codex), extended for multi-provider AI assistance.
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
- This repository is licensed under the [Apache-2.0 License](LICENSE).
53
+ [Apache-2.0](LICENSE)
package/bin/nori.js CHANGED
@@ -18,10 +18,10 @@ switch (platform) {
18
18
  case "android":
19
19
  switch (arch) {
20
20
  case "x64":
21
- targetTriple = "x86_64-unknown-linux-gnu";
21
+ targetTriple = "x86_64-unknown-linux-musl";
22
22
  break;
23
23
  case "arm64":
24
- targetTriple = "aarch64-unknown-linux-gnu";
24
+ targetTriple = "aarch64-unknown-linux-musl";
25
25
  break;
26
26
  default:
27
27
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nori-ai-cli",
3
- "version": "0.0.10",
3
+ "version": "0.0.15",
4
4
  "description": "Nori AI CLI - An AI-powered coding assistant",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {