exomind 0.13.0 → 0.14.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 +4 -4
- package/dist/cli.js +18 -17
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
- package/skill/claude/SKILL.md +5 -5
- package/skill/codex/SKILL.md +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exomind",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "ExoMind 跨平台命令行客户端 — 通过 REST 与 ExoMind
|
|
3
|
+
"version": "0.14.0",
|
|
4
|
+
"description": "ExoMind 跨平台命令行客户端 — 通过 REST 与 ExoMind 知识飞轮交互(ingest/query/search/review),替代 Windows 不可用的 MCP 客户端。",
|
|
5
5
|
"bin": {
|
|
6
6
|
"exomind": "dist/cli.js"
|
|
7
7
|
},
|
package/skill/claude/SKILL.md
CHANGED
|
@@ -20,12 +20,12 @@ If a command fails with "未登录", run `exomind login` first.
|
|
|
20
20
|
|
|
21
21
|
## 数据位置(重要 — 勿误报)
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
**所有知识飞轮数据都在服务器(youhuale.cn),不在本地。** CLI 通过 REST 上传/查询,**绝不写本地 wiki 目录**(不存在 `~/my-wiki` 之类)。本地仅以下状态文件:
|
|
24
24
|
- `~/.exomind/config.json` — 凭证
|
|
25
25
|
- `~/.exomind/cache/` — hook 的关键词/实体缓存(从服务器拉的副本)
|
|
26
|
-
- `~/.exomind/manifest.json` — 目录增量摄入的内容哈希清单(
|
|
26
|
+
- `~/.exomind/manifest.json` — 目录增量摄入的内容哈希清单(去重用,非知识飞轮本身)
|
|
27
27
|
|
|
28
|
-
摄入成功后输出 `✓
|
|
28
|
+
摄入成功后输出 `✓ 已导入服务器知识飞轮`。若要确认数据落地,用 `exomind search <关键词>` 复查。**不要向用户报告"已保存到 ~/my-wiki/entities/X.md"等本地路径——那是错的。**
|
|
29
29
|
|
|
30
30
|
## 性能注意(ingest / query / synthesize 较慢)
|
|
31
31
|
|
|
@@ -73,7 +73,7 @@ exomind search "关键词" --hybrid # +向量语义:同义/跨语言/概念
|
|
|
73
73
|
exomind search "关键词" --rerank # +LLM 精排(最高准、慢;候选不多时)
|
|
74
74
|
exomind entity "Redis" # 实体详情 + 关系
|
|
75
75
|
exomind relations "Redis" --depth 2 # 关联实体
|
|
76
|
-
exomind stats #
|
|
76
|
+
exomind stats # 知识飞轮统计
|
|
77
77
|
exomind topics # 选题推荐
|
|
78
78
|
exomind gaps # 知识缺口(驱动摄入)
|
|
79
79
|
exomind daily # 每日摘要
|
|
@@ -86,7 +86,7 @@ exomind topics # 选题推荐(基于图谱密度)
|
|
|
86
86
|
exomind draft new "选题" [--account <号>] # 生成草稿 + 保存(LLM,1-3min;替代 gen_article.py)
|
|
87
87
|
exomind draft list [--status <状态>] # 草稿列表
|
|
88
88
|
exomind draft show <id> # 看正文
|
|
89
|
-
exomind draft publish <id> #
|
|
89
|
+
exomind draft publish <id> # 发布到知识飞轮(入库,走 ingest)
|
|
90
90
|
exomind draft wechat <id> --account <号> # 投递公众号草稿箱(真发,返回 media_id;后台仍需群发)
|
|
91
91
|
```
|
|
92
92
|
链路:`topics` 选题 → `draft new` 生成 → `list/show` 审 → `publish` 入库 / `wechat` 发公众号。
|
package/skill/codex/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: exomind
|
|
3
|
-
description: Use ExoMind to save, ingest, import, search, query, and retrieve knowledge. Trigger when the user asks to remember, archive, save, ingest, import, search, query, or review knowledge, including shorthand commands such as "jdit", "存档", "记住这个", "保存到 ExoMind", "导入", and "查询知识库". Also use it when durable lessons, architectural decisions, investigation results, or root causes should be persisted. Treat these explicit save/import commands as authorization for that write. Do not silently write ordinary conversation to ExoMind. For a directory or multiple files, use one directory ingest command instead of reading or ingesting files individually.
|
|
3
|
+
description: Use ExoMind to save, ingest, import, search, query, and retrieve knowledge. Trigger when the user asks to remember, archive, save, ingest, import, search, query, or review knowledge, including shorthand commands such as "jdit", "存档", "记住这个", "保存到 ExoMind", "导入", and "查询知识库"/"查询知识飞轮". Also use it when durable lessons, architectural decisions, investigation results, or root causes should be persisted. Treat these explicit save/import commands as authorization for that write. Do not silently write ordinary conversation to ExoMind. For a directory or multiple files, use one directory ingest command instead of reading or ingesting files individually.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# ExoMind (Codex)
|
|
@@ -9,7 +9,7 @@ ExoMind is a remote knowledge base. Use it to persist durable knowledge and to r
|
|
|
9
9
|
|
|
10
10
|
## Authorization (important)
|
|
11
11
|
|
|
12
|
-
- Explicit requests — `jdit`, `存档`, `记住这个`, `保存到 ExoMind`, `导入`,
|
|
12
|
+
- Explicit requests — `jdit`, `存档`, `记住这个`, `保存到 ExoMind`, `导入`, `写入知识库`/`写入知识飞轮` — authorize THAT write. Proceed.
|
|
13
13
|
- Do NOT call a write/ingest for ordinary Q&A with no save intent. You may suggest saving if something is durable.
|
|
14
14
|
- Preserve all Codex tool approvals, sandbox, and host security checks. A user's "jdit" is business authorization, not a reason to bypass host-level confirmations.
|
|
15
15
|
- Read-only retrieval (query / search / entity / relations / stats) may be used whenever the user asks to recall, search, review, or check prior knowledge.
|