@truenine/memory-sync-cli 0.0.1 → 0.0.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.
- package/README.md +59 -42
- package/dist/index.mjs +152 -20
- package/package.json +6 -6
- package/dist/chunk-YV1pC1vC.mjs +0 -1
- package/dist/dist-Dmqu6eEt.mjs +0 -99
- package/dist/frontMatter-Xmvgjkyh.mjs +0 -6
- package/dist/log-ck-k4XJ5.mjs +0 -1
- package/dist/logger-CST5WaQ3.mjs +0 -1
- package/dist/picocolors-cXP5_ufZ.mjs +0 -1
- package/dist/plugins.config-BWHDEGjS.mjs +0 -1
package/README.md
CHANGED
|
@@ -1,42 +1,59 @@
|
|
|
1
|
-
# TrueNine Life CLI
|
|
2
|
-
|
|
3
|
-
跨 AI 编程工具的提示词同步工具。一套规则,多端适配。
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
1
|
+
# TrueNine Life CLI
|
|
2
|
+
|
|
3
|
+
跨 AI 编程工具的提示词同步工具。一套规则,多端适配。
|
|
4
|
+
|
|
5
|
+
## 快速开始
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @truenine/memory-sync-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## 全局安装
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pnpm add -g @truenine/memory-sync-cli
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
安装后可直接使用命令:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
tnmsc
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## 支持的 AI 工具
|
|
24
|
+
|
|
25
|
+
**IDE**
|
|
26
|
+
- Cursor IDE
|
|
27
|
+
- Kiro IDE
|
|
28
|
+
- Windsurf IDE
|
|
29
|
+
- Qoder IDE
|
|
30
|
+
- CodeBuddy IDE
|
|
31
|
+
- Antigravity IDE
|
|
32
|
+
|
|
33
|
+
**CLI 工具**
|
|
34
|
+
- Claude Code CLI
|
|
35
|
+
- Codex CLI
|
|
36
|
+
- Gemini CLI
|
|
37
|
+
- FactoryDroid CLI
|
|
38
|
+
|
|
39
|
+
**配置文件**
|
|
40
|
+
- JetBrains IDE
|
|
41
|
+
- VSCode IDE
|
|
42
|
+
|
|
43
|
+
## 插件体系
|
|
44
|
+
|
|
45
|
+
采用 input → transform → output 管道架构:
|
|
46
|
+
|
|
47
|
+
- **Input 插件**: 读取源文件(Aindex、Ref、WorkspaceGroup)
|
|
48
|
+
- **Transform 插件**: 处理内容
|
|
49
|
+
- **Output 插件**: 写入目标格式(各 IDE/CLI 适配器)
|
|
50
|
+
|
|
51
|
+
## 配置
|
|
52
|
+
|
|
53
|
+
配置文件优先级:`cwd()/.memorysync.json` > `~/.aindex/configs.json`
|
|
54
|
+
|
|
55
|
+
首次运行会自动创建 `~/.aindex/config.json`。
|
|
56
|
+
|
|
57
|
+
## License
|
|
58
|
+
|
|
59
|
+
UNLICENSED
|