exomind 0.3.13 → 0.3.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exomind",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "description": "ExoMind 跨平台命令行客户端 — 通过 REST 与 ExoMind 知识库交互(ingest/query/search/review),替代 Windows 不可用的 MCP 客户端。",
5
5
  "bin": {
6
6
  "exomind": "dist/cli.js"
package/skill/SKILL.md CHANGED
@@ -60,7 +60,9 @@ exomind ingest --file ./notes.md -t "标题"
60
60
  ### Retrieve
61
61
  ```bash
62
62
  exomind query "如何做 X?" # LLM 问答,引用 KB 页面
63
- exomind search "关键词" --limit 10 # 全文搜索; --rerank / --hybrid 更准
63
+ exomind search "关键词" # BM25 全文(精确关键词匹配)
64
+ exomind search "关键词" --hybrid # +向量语义:同义/跨语言/概念关联、字面搜不到时(如「层归一化」→Layer Normalization、「反向传播」→梯度下降)
65
+ exomind search "关键词" --rerank # +LLM 精排(最高准、慢;候选不多时)
64
66
  exomind entity "Redis" # 实体详情 + 关系
65
67
  exomind relations "Redis" --depth 2 # 关联实体
66
68
  exomind stats # 知识库统计
@@ -70,6 +72,17 @@ exomind daily # 每日摘要
70
72
  exomind synthesize "主题" --depth 2 # 主题综合报告
71
73
  ```
72
74
 
75
+ ### Draft (构思 → 草稿 → 发布)
76
+ ```bash
77
+ exomind topics # 选题推荐(基于图谱密度)
78
+ exomind draft new "选题" [--account <号>] # 生成草稿 + 保存(LLM,1-3min;替代 gen_article.py)
79
+ exomind draft list [--status <状态>] # 草稿列表
80
+ exomind draft show <id> # 看正文
81
+ exomind draft publish <id> # 发布到知识库(入库,走 ingest)
82
+ exomind draft wechat <id> --account <号> # 投递公众号草稿箱(真发,返回 media_id;后台仍需群发)
83
+ ```
84
+ 链路:`topics` 选题 → `draft new` 生成 → `list/show` 审 → `publish` 入库 / `wechat` 发公众号。
85
+
73
86
  ### Review (FSRS-5)
74
87
  ```bash
75
88
  exomind review # 待复习列表