@asathinkeroops/nova-code 0.1.0-beta.3 → 0.1.0-beta.4

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 +4 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -27,12 +27,12 @@ Nova 读代码、跑命令、改文件——通过工具调用把任务推到完
27
27
 
28
28
  ## 快速开始
29
29
 
30
- 环境要求:**Node ≥ 20**,**pnpm 10.28.2**。
30
+ 环境要求:**Node ≥ 20**。
31
31
 
32
32
  ```bash
33
- pnpm install
34
- pnpm dev # 启动 REPL
35
- pnpm dev -p "解释这段代码" # headless 模式:只跑一轮,输出后退出
33
+ npm install @asathinkeroops/nova-code -g
34
+ nova # 启动 REPL
35
+ nova -p "解释这段代码" # headless 模式:只跑一轮,输出后退出
36
36
  ```
37
37
 
38
38
  首次启动进入交互式配置向导,写入 `~/.nova/nova.config.json`(API key、模型、session 目录等)。模型按 `lite` / `pro` / `max` 三档配置,各档可单独设置 thinking 等级;`/model`、`--model` 切换的是档位而非裸 provider id。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asathinkeroops/nova-code",
3
- "version": "0.1.0-beta.3",
3
+ "version": "0.1.0-beta.4",
4
4
  "description": "A terminal coding agent, deeply tuned for DeepSeek.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -60,16 +60,16 @@
60
60
  "tsup": "^8.0.2",
61
61
  "tsx": "^4.7.2",
62
62
  "@nova/agent": "0.1.0",
63
- "@nova/context": "0.1.0",
64
63
  "@nova/core": "0.1.0",
65
- "@nova/lsp": "0.1.0",
64
+ "@nova/context": "0.1.0",
66
65
  "@nova/external": "0.1.0",
67
66
  "@nova/observability": "0.1.0",
68
67
  "@nova/runtime": "0.1.0",
68
+ "@nova/subagent": "0.1.0",
69
69
  "@nova/safety": "0.1.0",
70
+ "@nova/tools": "0.1.0",
70
71
  "@nova/sandbox": "0.1.0",
71
- "@nova/subagent": "0.1.0",
72
- "@nova/tools": "0.1.0"
72
+ "@nova/lsp": "0.1.0"
73
73
  },
74
74
  "scripts": {
75
75
  "build": "tsup",