@geminilight/mindos 0.5.56 → 0.5.58

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.
@@ -2,6 +2,8 @@
2
2
  name: mindos
3
3
  description: >
4
4
  MindOS knowledge base operation guide, only for agent tasks on files inside the MindOS knowledge base.
5
+ Explains core concepts: Space (partitions by how you think), Instruction (agent-wide rules, often in INSTRUCTION.md),
6
+ Skill (how agents read/write/organize the KB via SKILL.md packages). Notes can embody Instructions and Skills.
5
7
  Trigger only when the target files are inside the MindOS knowledge base directory.
6
8
  Typical requests: "update notes", "search knowledge base", "organize files", "execute SOP",
7
9
  "review with our standards", "handoff to another agent", "sync decisions", "append CSV",
@@ -20,9 +22,19 @@ context automatically when present. User rules override default rules on conflic
20
22
 
21
23
  ---
22
24
 
23
- <!-- version: 1.1.0 -->
25
+ <!-- version: 1.2.0 -->
24
26
  # MindOS Operating Rules
25
27
 
28
+ ## MindOS concepts
29
+
30
+ Shared vocabulary for the knowledge base and connected agents:
31
+
32
+ - **Space** — Knowledge partitions organized the way you think. You decide the structure, and AI agents follow it to read, write, and manage automatically.
33
+ - **Instruction** — A rules file that all AI agents obey. You write the boundaries once, and every agent connected to your knowledge base follows them.
34
+ - **Skill** — Teaches agents how to operate your knowledge base — reading, writing, organizing. Agents don't guess; they follow the skills you've installed.
35
+
36
+ **Notes as Instruction and Skill** — Instructions and Skills are usually expressed as Markdown in your tree (e.g. root or directory `INSTRUCTION.md`, `SKILL.md` under a skill folder). A note is not only free-form text: it can be the governance layer agents must follow (Instruction) or a procedure package agents load to execute (Skill).
37
+
26
38
  ## Core Principles
27
39
 
28
40
  - Treat repository state as source of truth.
@@ -93,6 +105,8 @@ Before any non-trivial write, confirm all checks:
93
105
  - `mindos_read_file`: Read file content.
94
106
  - `mindos_write_file`: Use only for true full replacement.
95
107
  - `mindos_create_file`: Create `.md`/`.csv` files.
108
+ - `mindos_create_space`: Create a Mind Space (directory + README + INSTRUCTION scaffold). Prefer over `create_file` when adding a new cognitive zone.
109
+ - `mindos_rename_space`: Rename a Space folder (directory). Do not use `rename_file` for folders.
96
110
  - `mindos_delete_file`: Delete only with explicit user intent.
97
111
  - `mindos_rename_file`, `mindos_move_file`: Structural edits with follow-up reference checks.
98
112
 
@@ -2,6 +2,8 @@
2
2
  name: mindos-zh
3
3
  description: >
4
4
  MindOS 知识库中文操作指南,仅用于 MindOS 知识库内的 Agent 任务。
5
+ 说明核心概念:空间(按思维方式划分的知识分区)、指令(全 Agent 遵守的规则,常见为 INSTRUCTION.md)、
6
+ 技能(通过 SKILL.md 等教 Agent 如何读写整理知识库)。笔记可以承载指令与技能。
5
7
  仅当操作目标是 MindOS 知识库目录下的文件时触发,典型请求包括"更新笔记""搜索知识库"
6
8
  "整理文件""执行 SOP""按团队标准 review""把任务交接给另一个 Agent""同步决策"
7
9
  "追加 CSV""复盘这段对话""提炼关键经验""把复盘结果自适应更新到对应文档"
@@ -18,9 +20,19 @@ description: >
18
20
 
19
21
  ---
20
22
 
21
- <!-- version: 1.1.0 -->
23
+ <!-- version: 1.2.0 -->
22
24
  # MindOS 操作规则
23
25
 
26
+ ## MindOS 核心概念
27
+
28
+ 与知识库和接入 Agent 共用的术语说明:
29
+
30
+ - **空间(Space)** — 按你的思维方式组织的知识分区。你怎么想,就怎么分,AI Agent 遵循同样的结构来自动读写和管理。
31
+ - **指令(Instruction)** — 一份所有 AI Agent 都遵守的规则文件。你写一次边界,每个连接到知识库的 Agent 都会照做。
32
+ - **技能(Skill)** — 教 Agent 如何操作你的知识库——读取、写入、整理。Agent 不是瞎猜,而是按你安装的 Skill 来执行。
33
+
34
+ **笔记即指令 / 技能** — 指令与技能在知识库里通常体现为 Markdown 文件(例如根或目录下的 `INSTRUCTION.md`、技能目录中的 `SKILL.md`)。笔记不只是随笔:可以是 Agent 必须遵守的治理层(指令),也可以是 Agent 加载后按步骤执行的程序包(技能)。
35
+
24
36
  ## 核心原则
25
37
 
26
38
  - 以仓库当前状态为唯一依据。
@@ -91,6 +103,8 @@ description: >
91
103
  - `mindos_read_file`:读取文件内容。
92
104
  - `mindos_write_file`:仅在确需整文件替换时使用。
93
105
  - `mindos_create_file`:创建 `.md`/`.csv` 文件。
106
+ - `mindos_create_space`:新建心智空间(目录 + README + INSTRUCTION 脚手架)。新增整块分区时优先于只建 `某空间/README.md`。
107
+ - `mindos_rename_space`:重命名空间目录(文件夹)。不能用 `rename_file` 重命名目录。
94
108
  - `mindos_delete_file`:仅在用户明确意图下删除。
95
109
  - `mindos_rename_file`、`mindos_move_file`:结构变更后补做引用检查。
96
110