@codehourra/llm-iwiki 0.1.3 → 0.2.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.
- package/README.md +2 -8
- package/dist/index.js +189 -190
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -6,27 +6,21 @@
|
|
|
6
6
|
|
|
7
7
|
## 安装
|
|
8
8
|
|
|
9
|
-
>
|
|
9
|
+
> 运行时只需 [Node.js](https://nodejs.org) ≥ 20(无需 Bun)。SQLite 通过原生模块 `better-sqlite3` 提供,`npm install` 时自动下载预编译二进制。
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
12
|
# 全局安装
|
|
13
13
|
npm install -g @codehourra/llm-iwiki
|
|
14
|
-
# 或使用 bun
|
|
15
|
-
bun add -g @codehourra/llm-iwiki
|
|
16
14
|
|
|
17
15
|
llm-iwiki init # 初始化配置与状态库
|
|
18
16
|
llm-iwiki doctor # 自检
|
|
19
17
|
```
|
|
20
18
|
|
|
21
|
-
也可以免安装、用 `npx`
|
|
19
|
+
也可以免安装、用 `npx` 直接运行:
|
|
22
20
|
|
|
23
21
|
```bash
|
|
24
|
-
# 一次性运行(不全局安装)
|
|
25
22
|
npx @codehourra/llm-iwiki init
|
|
26
23
|
npx @codehourra/llm-iwiki sync
|
|
27
|
-
|
|
28
|
-
# 或使用 bunx
|
|
29
|
-
bunx @codehourra/llm-iwiki doctor
|
|
30
24
|
```
|
|
31
25
|
|
|
32
26
|
## 当前状态
|