@josephyan/qingflow-app-user-mcp 1.1.3 → 1.1.5

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.
Files changed (113) hide show
  1. package/README.md +7 -7
  2. package/docs/local-agent-install.md +57 -6
  3. package/entry_point.py +1 -1
  4. package/npm/bin/qingflow-app-user-mcp.mjs +2 -33
  5. package/npm/bin/qingflow-skills.mjs +5 -0
  6. package/npm/lib/runtime.mjs +21 -101
  7. package/npm/scripts/postinstall.mjs +1 -10
  8. package/package.json +3 -2
  9. package/pyproject.toml +1 -1
  10. package/skills/qingflow-app-user/SKILL.md +17 -14
  11. package/skills/qingflow-app-user/references/data-gotchas.md +2 -2
  12. package/skills/qingflow-app-user/references/public-surface-sync.md +3 -3
  13. package/skills/qingflow-app-user/references/record-patterns.md +5 -5
  14. package/skills/qingflow-app-user/references/workflow-usage.md +4 -5
  15. package/skills/qingflow-mcp-setup/SKILL.md +13 -9
  16. package/skills/qingflow-mcp-setup/references/claude-desktop.md +1 -1
  17. package/skills/qingflow-mcp-setup/references/environments.md +2 -1
  18. package/skills/qingflow-mcp-setup/references/generic-stdio.md +6 -5
  19. package/skills/qingflow-record-analysis/SKILL.md +9 -8
  20. package/skills/qingflow-record-analysis/manifest.yaml +10 -0
  21. package/skills/qingflow-record-delete/SKILL.md +7 -3
  22. package/skills/qingflow-record-import/SKILL.md +35 -2
  23. package/skills/qingflow-record-insert/SKILL.md +78 -6
  24. package/skills/qingflow-record-insert/manifest.yaml +6 -0
  25. package/skills/qingflow-record-update/SKILL.md +39 -24
  26. package/skills/qingflow-task-ops/SKILL.md +30 -27
  27. package/skills/qingflow-task-ops/references/environments.md +0 -1
  28. package/skills/qingflow-task-ops/references/workflow-usage.md +4 -6
  29. package/src/qingflow_mcp/__init__.py +1 -1
  30. package/src/qingflow_mcp/__main__.py +6 -2
  31. package/src/qingflow_mcp/builder_facade/models.py +287 -25
  32. package/src/qingflow_mcp/builder_facade/service.py +4195 -856
  33. package/src/qingflow_mcp/cli/commands/builder.py +316 -247
  34. package/src/qingflow_mcp/cli/commands/chart.py +1 -1
  35. package/src/qingflow_mcp/cli/commands/common.py +12 -3
  36. package/src/qingflow_mcp/cli/commands/exports.py +2 -2
  37. package/src/qingflow_mcp/cli/commands/imports.py +3 -3
  38. package/src/qingflow_mcp/cli/commands/portal.py +2 -2
  39. package/src/qingflow_mcp/cli/commands/record.py +101 -27
  40. package/src/qingflow_mcp/cli/commands/task.py +28 -47
  41. package/src/qingflow_mcp/cli/commands/view.py +1 -1
  42. package/src/qingflow_mcp/cli/context.py +0 -3
  43. package/src/qingflow_mcp/cli/formatters.py +784 -16
  44. package/src/qingflow_mcp/cli/main.py +117 -33
  45. package/src/qingflow_mcp/errors.py +43 -2
  46. package/src/qingflow_mcp/public_surface.py +26 -17
  47. package/src/qingflow_mcp/response_trim.py +81 -17
  48. package/src/qingflow_mcp/server.py +14 -12
  49. package/src/qingflow_mcp/server_app_builder.py +65 -21
  50. package/src/qingflow_mcp/server_app_user.py +22 -16
  51. package/src/qingflow_mcp/session_store.py +11 -7
  52. package/src/qingflow_mcp/solution/compiler/__init__.py +3 -1
  53. package/src/qingflow_mcp/solution/compiler/workflow_compiler.py +173 -0
  54. package/src/qingflow_mcp/solution/executor.py +245 -18
  55. package/src/qingflow_mcp/tools/ai_builder_tools.py +1782 -399
  56. package/src/qingflow_mcp/tools/app_tools.py +184 -43
  57. package/src/qingflow_mcp/tools/approval_tools.py +197 -35
  58. package/src/qingflow_mcp/tools/auth_tools.py +92 -16
  59. package/src/qingflow_mcp/tools/code_block_tools.py +298 -40
  60. package/src/qingflow_mcp/tools/custom_button_tools.py +64 -10
  61. package/src/qingflow_mcp/tools/directory_tools.py +236 -72
  62. package/src/qingflow_mcp/tools/export_tools.py +244 -34
  63. package/src/qingflow_mcp/tools/feedback_tools.py +9 -0
  64. package/src/qingflow_mcp/tools/file_tools.py +9 -3
  65. package/src/qingflow_mcp/tools/import_tools.py +336 -49
  66. package/src/qingflow_mcp/tools/navigation_tools.py +91 -12
  67. package/src/qingflow_mcp/tools/package_tools.py +118 -6
  68. package/src/qingflow_mcp/tools/portal_tools.py +39 -3
  69. package/src/qingflow_mcp/tools/qingbi_report_tools.py +116 -7
  70. package/src/qingflow_mcp/tools/record_tools.py +1141 -356
  71. package/src/qingflow_mcp/tools/resource_read_tools.py +188 -39
  72. package/src/qingflow_mcp/tools/role_tools.py +80 -9
  73. package/src/qingflow_mcp/tools/solution_tools.py +59 -45
  74. package/src/qingflow_mcp/tools/task_context_tools.py +662 -158
  75. package/src/qingflow_mcp/tools/task_tools.py +113 -29
  76. package/src/qingflow_mcp/tools/view_tools.py +106 -3
  77. package/src/qingflow_mcp/tools/workflow_tools.py +48 -4
  78. package/src/qingflow_mcp/tools/workspace_tools.py +71 -3
  79. package/skills/qingflow-app-builder/SKILL.md +0 -277
  80. package/skills/qingflow-app-builder/agents/openai.yaml +0 -4
  81. package/skills/qingflow-app-builder/references/build-complete-system.md +0 -428
  82. package/skills/qingflow-app-builder/references/build-single-app.md +0 -530
  83. package/skills/qingflow-app-builder/references/create-app.md +0 -149
  84. package/skills/qingflow-app-builder/references/environments.md +0 -63
  85. package/skills/qingflow-app-builder/references/flow-actors-and-permissions.md +0 -123
  86. package/skills/qingflow-app-builder/references/gotchas.md +0 -108
  87. package/skills/qingflow-app-builder/references/match-rules.md +0 -114
  88. package/skills/qingflow-app-builder/references/public-surface-sync.md +0 -75
  89. package/skills/qingflow-app-builder/references/solution-playbooks.md +0 -52
  90. package/skills/qingflow-app-builder/references/tool-selection.md +0 -107
  91. package/skills/qingflow-app-builder/references/update-flow.md +0 -186
  92. package/skills/qingflow-app-builder/references/update-layout.md +0 -68
  93. package/skills/qingflow-app-builder/references/update-schema.md +0 -72
  94. package/skills/qingflow-app-builder/references/update-views.md +0 -291
  95. package/skills/qingflow-app-builder-code-integrations/SKILL.md +0 -137
  96. package/skills/qingflow-app-builder-code-integrations/agents/openai.yaml +0 -4
  97. package/skills/qingflow-app-builder-code-integrations/references/code-block.md +0 -66
  98. package/skills/qingflow-app-builder-code-integrations/references/q-linker.md +0 -77
  99. package/skills/qingflow-workflow-builder/SKILL.md +0 -96
  100. package/skills/qingflow-workflow-builder/manifest.yaml +0 -8
  101. package/skills/qingflow-workflow-builder/references/01-overview.md +0 -45
  102. package/skills/qingflow-workflow-builder/references/02-update-mode.md +0 -53
  103. package/skills/qingflow-workflow-builder/references/03-flow-patterns.md +0 -57
  104. package/skills/qingflow-workflow-builder/references/04-stage1-business-modeling.md +0 -131
  105. package/skills/qingflow-workflow-builder/references/05-stage2-members-roles.md +0 -29
  106. package/skills/qingflow-workflow-builder/references/06-stage3-build-spec.md +0 -165
  107. package/skills/qingflow-workflow-builder/references/07-stage4-validate-spec.md +0 -33
  108. package/skills/qingflow-workflow-builder/references/08-stage5-apply-verify.md +0 -51
  109. package/skills/qingflow-workflow-builder/references/09-stage6-summary.md +0 -88
  110. package/skills/qingflow-workflow-builder/references/10-node-config-reference.md +0 -93
  111. package/skills/qingflow-workflow-builder/references/11-troubleshooting.md +0 -15
  112. package/skills/qingflow-workflow-builder/scripts/diff_flow_spec.py +0 -275
  113. package/skills/qingflow-workflow-builder/scripts/validate_flow_spec.py +0 -605
package/README.md CHANGED
@@ -3,13 +3,13 @@
3
3
  Install:
4
4
 
5
5
  ```bash
6
- npm install @josephyan/qingflow-app-user-mcp@1.1.3
6
+ npm install @josephyan/qingflow-app-user-mcp@1.1.5
7
7
  ```
8
8
 
9
9
  Run:
10
10
 
11
11
  ```bash
12
- npx -y -p @josephyan/qingflow-app-user-mcp@1.1.3 qingflow-app-user-mcp
12
+ npx -y -p @josephyan/qingflow-app-user-mcp@1.1.5 qingflow-app-user-mcp
13
13
  ```
14
14
 
15
15
  Environment:
@@ -23,19 +23,19 @@ This package bootstraps a local Python runtime on first install and then starts
23
23
  Bundled skills:
24
24
 
25
25
  - `skills/qingflow-app-user`
26
+ - `skills/qingflow-mcp-setup`
26
27
  - `skills/qingflow-record-insert`
27
28
  - `skills/qingflow-record-update`
28
29
  - `skills/qingflow-record-delete`
29
30
  - `skills/qingflow-record-import`
30
31
  - `skills/qingflow-task-ops`
31
32
  - `skills/qingflow-record-analysis`
32
- - `skills/qingflow-mcp-setup`
33
- - `skills/qingflow-app-builder`
34
- - `skills/qingflow-app-builder-code-integrations`
35
- - `skills/qingflow-workflow-builder`
36
33
 
37
34
  Note:
38
35
 
39
36
  - The skill files are included in the npm package.
40
- - On install, the package copies them to `$CODEX_HOME/skills` (or `~/.codex/skills` if `CODEX_HOME` is unset).
37
+ - Installing the npm package does not overwrite agent skills automatically.
38
+ - To mount bundled skills from an installed package, run `qingflow-app-user-mcp-skills install --agent codex --scope user`.
39
+ - For one-shot `npx -p` installs, prefer `--copy` because symlinks would point into the npm execution cache.
40
+ - Use `qingflow-app-user-mcp-skills list` to inspect bundled skills. The installer defaults to symlinks for stable package installs and refuses to overwrite existing skills unless `--force` is provided.
41
41
  - If a stdio MCP client reports `Transport closed`, delete `.npm-python`, reinstall the package, and make sure CLI/user/builder packages are on the same version. The stdio entrypoints refuse runtime bootstrap so install logs never corrupt MCP stdout.
@@ -101,7 +101,51 @@ npm install /absolute/path/to/dist/npm/qingflow-tech-qingflow-app-builder-mcp-<v
101
101
  1. 创建 `.npm-python/`
102
102
  2. 在其中建立 Python 虚拟环境
103
103
  3. 执行 `pip install .`
104
- 4. 在安装位置暴露 `qingflow`、`qingflow-app-user-mcp`、`qingflow-app-builder-mcp` 命令
104
+ 4. 在安装位置暴露对应入口:CLI 包暴露 `qingflow` / `qingflow-skills`;app-user 包暴露 `qingflow-app-user-mcp` / `qingflow-app-user-mcp-skills`;app-builder 包暴露 `qingflow-app-builder-mcp` / `qingflow-app-builder-mcp-skills`
105
+ 5. 携带 `skills/<skill-name>/SKILL.md`,但不在 `postinstall` 阶段自动覆盖本机 agent skills
106
+
107
+ ## Skills 挂载
108
+
109
+ 显式查看包内 skills:
110
+
111
+ ```bash
112
+ qingflow-skills list
113
+ ```
114
+
115
+ 独立 MCP split 包使用包专属 skills 命令,避免全局安装多个包时发生 bin 覆盖:
116
+
117
+ ```bash
118
+ qingflow-app-user-mcp-skills list
119
+ qingflow-app-builder-mcp-skills list
120
+ ```
121
+
122
+ 显式挂载到 Codex 用户目录:
123
+
124
+ ```bash
125
+ qingflow-skills install --agent codex --scope user
126
+ ```
127
+
128
+ 如果通过一次性 `npx -p <package>` 执行安装,请加 `--copy`,避免 symlink 指向 npm 临时执行缓存:
129
+
130
+ ```bash
131
+ npx -y -p @qingflow-tech/qingflow-cli qingflow-skills install --agent codex --scope user --copy
132
+ ```
133
+
134
+ 也可以挂载到项目级 agent 目录:
135
+
136
+ ```bash
137
+ qingflow-skills install --agent claude-code --scope project
138
+ qingflow-skills install --agent cursor --scope project --copy
139
+ qingflow-skills install --agent all --scope project
140
+ ```
141
+
142
+ 默认行为:
143
+
144
+ - `--mode symlink`:使用 symlink,让 npm 包版本成为单一来源
145
+ - `--scope user`:安装到用户级 agent skills 目录
146
+ - `--agent codex`:目标 agent 为 Codex
147
+ - 不覆盖已有同名 skill;需要替换时显式加 `--force`
148
+ - 每次安装会在目标 skills 目录下写入 `.qingflow-skill-sources/<skill>.json`,记录 package、version、source、destination、agent、scope、mode
105
149
 
106
150
  ## 本地验证
107
151
 
@@ -110,24 +154,31 @@ npm install /absolute/path/to/dist/npm/qingflow-tech-qingflow-app-builder-mcp-<v
110
154
  ```bash
111
155
  cd qingflow-support/mcp-server
112
156
  node ./npm/bin/qingflow.mjs --help
157
+ node ./npm/bin/qingflow-skills.mjs list
113
158
  node ./npm/bin/qingflow-app-user-mcp.mjs
114
159
  node ./npm/bin/qingflow-app-builder-mcp.mjs
115
160
  ```
116
161
 
117
- 如果你是全局安装:
162
+ 如果你是全局安装对应包:
118
163
 
119
164
  ```bash
120
165
  qingflow --help
166
+ qingflow-skills list
121
167
  qingflow-app-user-mcp
168
+ qingflow-app-user-mcp-skills list
122
169
  qingflow-app-builder-mcp
170
+ qingflow-app-builder-mcp-skills list
123
171
  ```
124
172
 
125
- 如果你是把包安装到了某个本地 agent workspace,命令通常位于:
173
+ 如果你是把包安装到了某个本地 agent workspace,安装对应包后命令通常位于:
126
174
 
127
175
  ```bash
128
176
  /absolute/path/to/agent-workspace/node_modules/.bin/qingflow
177
+ /absolute/path/to/agent-workspace/node_modules/.bin/qingflow-skills
129
178
  /absolute/path/to/agent-workspace/node_modules/.bin/qingflow-app-user-mcp
179
+ /absolute/path/to/agent-workspace/node_modules/.bin/qingflow-app-user-mcp-skills
130
180
  /absolute/path/to/agent-workspace/node_modules/.bin/qingflow-app-builder-mcp
181
+ /absolute/path/to/agent-workspace/node_modules/.bin/qingflow-app-builder-mcp-skills
131
182
  ```
132
183
 
133
184
  如果你是从 tgz 安装到某个空目录,命令通常位于:
@@ -217,7 +268,7 @@ qingflow-app-builder-mcp
217
268
  "command": "npx",
218
269
  "args": [
219
270
  "-y",
220
- "@josephyan/qingflow-app-user-mcp"
271
+ "@qingflow-tech/qingflow-app-user-mcp"
221
272
  ],
222
273
  "env": {
223
274
  "QINGFLOW_MCP_DEFAULT_BASE_URL": "https://qingflow.com/api",
@@ -230,7 +281,7 @@ qingflow-app-builder-mcp
230
281
  "command": "npx",
231
282
  "args": [
232
283
  "-y",
233
- "@josephyan/qingflow-app-builder-mcp"
284
+ "@qingflow-tech/qingflow-app-builder-mcp"
234
285
  ],
235
286
  "env": {
236
287
  "QINGFLOW_MCP_DEFAULT_BASE_URL": "https://qingflow.com/api",
@@ -272,7 +323,7 @@ npm install
272
323
 
273
324
  如果 MCP 客户端一调用工具就报 `Transport closed`,优先检查这几件事:
274
325
 
275
- 1. 不要混用不同版本的 `@josephyan/qingflow-cli`、`@josephyan/qingflow-app-user-mcp`、`@josephyan/qingflow-app-builder-mcp`
326
+ 1. 不要混用不同版本的 `@qingflow-tech/qingflow-cli`、`@qingflow-tech/qingflow-app-user-mcp`、`@qingflow-tech/qingflow-app-builder-mcp`
276
327
  2. 删除安装目录下的 `.npm-python`
277
328
  3. 重新执行 `npm install` 或重新安装对应 tgz/npm 包
278
329
  4. 再启动 MCP 客户端
package/entry_point.py CHANGED
@@ -7,7 +7,7 @@ src_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "src"))
7
7
  if src_path not in sys.path:
8
8
  sys.path.insert(0, src_path)
9
9
 
10
- from qingflow_mcp.server import main
10
+ from qingflow_mcp.server_app_user import main
11
11
 
12
12
  if __name__ == "__main__":
13
13
  main()
@@ -1,38 +1,7 @@
1
1
  #!/usr/bin/env node
2
- import fs from "node:fs";
3
- import path from "node:path";
4
- import { fileURLToPath, pathToFileURL } from "node:url";
5
2
 
6
- const PKG_BY_BIN = {
7
- qingflow: "qingflow-cli",
8
- "qingflow-app-user-mcp": "qingflow-app-user-mcp",
9
- "qingflow-app-builder-mcp": "qingflow-app-builder-mcp",
10
- };
3
+ import { getPackageRoot, spawnServer } from "../lib/runtime.mjs";
11
4
 
12
- function resolvePackageModule(metaUrl, ...segments) {
13
- const scriptPath = fileURLToPath(metaUrl);
14
- const scriptDir = path.dirname(scriptPath);
15
- // bin files live in <pkg>/npm/bin/, runtime.mjs lives in the sibling <pkg>/npm/lib/,
16
- // so step up one level before joining the requested segments.
17
- const direct = path.join(scriptDir, "..", ...segments);
18
- if (fs.existsSync(direct)) {
19
- return pathToFileURL(direct).href;
20
- }
21
- if (path.basename(scriptDir) === ".bin") {
22
- const binName = path.basename(scriptPath);
23
- const pkgName = PKG_BY_BIN[binName];
24
- if (!pkgName) {
25
- throw new Error(`Unknown qingflow command: ${binName}`);
26
- }
27
- const scope = process.env.QINGFLOW_NPM_SCOPE || "@josephyan";
28
- const fromBin = path.join(scriptDir, "..", scope, pkgName, "npm", ...segments);
29
- if (fs.existsSync(fromBin)) {
30
- return pathToFileURL(fromBin).href;
31
- }
32
- }
33
- throw new Error(`Cannot locate ${segments.join("/")} from ${scriptPath}`);
34
- }
35
-
36
- const { getPackageRoot, spawnServer } = await import(resolvePackageModule(import.meta.url, "lib", "runtime.mjs"));
37
5
  const packageRoot = getPackageRoot(import.meta.url);
6
+
38
7
  spawnServer(packageRoot, process.argv.slice(2), "qingflow-app-user-mcp", { allowRuntimeBootstrap: false });
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ import { getPackageRoot, runSkillsCli } from "../lib/runtime.mjs";
3
+
4
+ const packageRoot = getPackageRoot(import.meta.url);
5
+ runSkillsCli(packageRoot, process.argv.slice(2));
@@ -5,12 +5,6 @@ import { fileURLToPath } from "node:url";
5
5
 
6
6
  const WINDOWS = process.platform === "win32";
7
7
 
8
- const PKG_BY_BIN = {
9
- qingflow: "qingflow-cli",
10
- "qingflow-app-user-mcp": "qingflow-app-user-mcp",
11
- "qingflow-app-builder-mcp": "qingflow-app-builder-mcp",
12
- };
13
-
14
8
  function runChecked(command, args, options = {}) {
15
9
  const result = spawnSync(command, args, {
16
10
  encoding: "utf8",
@@ -34,18 +28,7 @@ function commandWorks(command, args) {
34
28
  }
35
29
 
36
30
  export function getPackageRoot(metaUrl) {
37
- const scriptPath = fileURLToPath(metaUrl);
38
- const scriptDir = path.dirname(scriptPath);
39
- if (path.basename(scriptDir) === ".bin") {
40
- const binName = path.basename(scriptPath);
41
- const pkgName = PKG_BY_BIN[binName];
42
- if (!pkgName) {
43
- throw new Error(`Unknown qingflow command: ${binName}`);
44
- }
45
- const scope = process.env.QINGFLOW_NPM_SCOPE || "@josephyan";
46
- return path.join(scriptDir, "..", scope, pkgName);
47
- }
48
- return path.resolve(scriptDir, "..", "..");
31
+ return path.resolve(path.dirname(fileURLToPath(metaUrl)), "..", "..");
49
32
  }
50
33
 
51
34
  export function getCodexHome() {
@@ -154,43 +137,6 @@ function writeSkillProvenance(skillsDestRoot, skillName, payload) {
154
137
  fs.writeFileSync(path.join(provenanceRoot, `${skillName}.json`), `${JSON.stringify(payload, null, 2)}\n`);
155
138
  }
156
139
 
157
- function sleepMs(ms) {
158
- Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, ms);
159
- }
160
-
161
- function withSkillInstallLock(skillsDestRoot, callback) {
162
- const lockDir = path.join(skillsDestRoot, ".qingflow-skill-install.lock");
163
- const startedAt = Date.now();
164
- while (true) {
165
- try {
166
- fs.mkdirSync(lockDir);
167
- break;
168
- } catch (error) {
169
- if (error.code !== "EEXIST") {
170
- throw error;
171
- }
172
- try {
173
- const stat = fs.statSync(lockDir);
174
- if (Date.now() - stat.mtimeMs > 300_000) {
175
- fs.rmSync(lockDir, { recursive: true, force: true });
176
- continue;
177
- }
178
- } catch {
179
- continue;
180
- }
181
- if (Date.now() - startedAt > 30_000) {
182
- throw new Error(`Timed out waiting for skill install lock: ${lockDir}`);
183
- }
184
- sleepMs(100);
185
- }
186
- }
187
- try {
188
- return callback();
189
- } finally {
190
- fs.rmSync(lockDir, { recursive: true, force: true });
191
- }
192
- }
193
-
194
140
  export function installBundledSkills(
195
141
  packageRoot,
196
142
  {
@@ -234,29 +180,27 @@ export function installBundledSkills(
234
180
  mode,
235
181
  };
236
182
 
237
- return withSkillInstallLock(skillsDestRoot, () => {
238
- for (const skillName of wanted) {
239
- const src = path.join(skillsSrc, skillName);
240
- const dest = path.join(skillsDestRoot, skillName);
241
- const installResult = installOneSkill(src, dest, { force, mode });
242
- result[installResult.status === "conflict" ? "conflicts" : installResult.status].push(skillName);
243
- if (installResult.status !== "conflict") {
244
- writeSkillProvenance(skillsDestRoot, skillName, {
245
- package: packageJson.name ?? null,
246
- version: packageJson.version ?? null,
247
- skill: skillName,
248
- source: src,
249
- destination: dest,
250
- agent,
251
- scope,
252
- mode,
253
- installed_at: new Date().toISOString(),
254
- });
255
- }
183
+ for (const skillName of wanted) {
184
+ const src = path.join(skillsSrc, skillName);
185
+ const dest = path.join(skillsDestRoot, skillName);
186
+ const installResult = installOneSkill(src, dest, { force, mode });
187
+ result[installResult.status === "conflict" ? "conflicts" : installResult.status].push(skillName);
188
+ if (installResult.status !== "conflict") {
189
+ writeSkillProvenance(skillsDestRoot, skillName, {
190
+ package: packageJson.name ?? null,
191
+ version: packageJson.version ?? null,
192
+ skill: skillName,
193
+ source: src,
194
+ destination: dest,
195
+ agent,
196
+ scope,
197
+ mode,
198
+ installed_at: new Date().toISOString(),
199
+ });
256
200
  }
201
+ }
257
202
 
258
- return result;
259
- });
203
+ return result;
260
204
  }
261
205
 
262
206
  function parseSkillsCliArgs(args) {
@@ -536,17 +480,6 @@ function getVenvPip(packageRoot) {
536
480
  : path.join(getVenvDir(packageRoot), "bin", "pip");
537
481
  }
538
482
 
539
- function findOfflineProjectWheel(findLinksDir) {
540
- const wheels = fs
541
- .readdirSync(findLinksDir)
542
- .filter((name) => /^qingflow_mcp-.*\.whl$/i.test(name))
543
- .sort();
544
- if (wheels.length === 0) {
545
- throw new Error(`Offline install expected a qingflow_mcp wheel in ${findLinksDir}`);
546
- }
547
- return path.join(findLinksDir, wheels[wheels.length - 1]);
548
- }
549
-
550
483
  export function findPython() {
551
484
  const preferred = process.env.QINGFLOW_MCP_PYTHON?.trim();
552
485
  const candidates = preferred
@@ -595,20 +528,7 @@ export function ensurePythonEnv(packageRoot, { force = false, commandName = "qin
595
528
  }
596
529
 
597
530
  const pip = getVenvPip(packageRoot);
598
- const pipArgs = ["install", "--disable-pip-version-check"];
599
- const offlineFindLinks = process.env.QINGFLOW_MCP_PIP_FIND_LINKS?.trim();
600
- if (process.env.QINGFLOW_MCP_PIP_NO_INDEX === "1") {
601
- pipArgs.push("--no-index");
602
- }
603
- if (offlineFindLinks) {
604
- pipArgs.push("--find-links", offlineFindLinks);
605
- }
606
- if (process.env.QINGFLOW_MCP_PIP_NO_INDEX === "1" && offlineFindLinks) {
607
- pipArgs.push(findOfflineProjectWheel(offlineFindLinks));
608
- } else {
609
- pipArgs.push(".");
610
- }
611
- runChecked(pip, pipArgs, { cwd: packageRoot });
531
+ runChecked(pip, ["install", "--disable-pip-version-check", "."], { cwd: packageRoot });
612
532
 
613
533
  fs.writeFileSync(
614
534
  stampPath,
@@ -1,4 +1,4 @@
1
- import { ensurePythonEnv, getPackageRoot, installBundledSkills } from "../lib/runtime.mjs";
1
+ import { ensurePythonEnv, getPackageRoot } from "../lib/runtime.mjs";
2
2
 
3
3
  const packageRoot = getPackageRoot(import.meta.url);
4
4
 
@@ -6,15 +6,6 @@ try {
6
6
  console.log("[qingflow-mcp] Bootstrapping Python runtime...");
7
7
  ensurePythonEnv(packageRoot, { commandName: "qingflow-app-user-mcp" });
8
8
  console.log("[qingflow-mcp] Python runtime is ready.");
9
- const skills = installBundledSkills(packageRoot, { force: true });
10
- if (!skills.skipped) {
11
- const changed = [
12
- skills.installed.length ? `installed=${skills.installed.join(",")}` : "",
13
- skills.unchanged.length ? `unchanged=${skills.unchanged.join(",")}` : "",
14
- skills.conflicts.length ? `conflicts=${skills.conflicts.join(",")}` : "",
15
- ].filter(Boolean).join(" ");
16
- console.log(`[qingflow-mcp] Installed skills to ${skills.destination}: ${changed || "none"}`);
17
- }
18
9
  } catch (error) {
19
10
  console.error(`[qingflow-mcp] postinstall failed: ${error.message}`);
20
11
  process.exit(1);
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@josephyan/qingflow-app-user-mcp",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "Operational end-user MCP for Qingflow records, tasks, comments, and directory workflows.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "bin": {
8
- "qingflow-app-user-mcp": "./npm/bin/qingflow-app-user-mcp.mjs"
8
+ "qingflow-app-user-mcp": "./npm/bin/qingflow-app-user-mcp.mjs",
9
+ "qingflow-app-user-mcp-skills": "./npm/bin/qingflow-skills.mjs"
9
10
  },
10
11
  "scripts": {
11
12
  "postinstall": "node ./npm/scripts/postinstall.mjs"
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "qingflow-mcp"
7
- version = "1.1.3"
7
+ version = "1.1.5"
8
8
  description = "User-authenticated MCP server for Qingflow"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,64 +1,67 @@
1
1
  ---
2
2
  name: qingflow-app-user
3
- description: Route Qingflow end-user requests to the right specialized operational skill after the MCP is already connected and authenticated. Use when the task is operational but it is not yet clear whether it is record CRUD or final analysis.
3
+ description: Route Qingflow end-user requests to the right specialized operational skill using the current Wingent Momo runtime MCP session. Use when the task is operational but it is not yet clear whether it is record CRUD or final analysis.
4
4
  metadata:
5
5
  short-description: Router for Qingflow operational skills
6
6
  ---
7
7
 
8
8
  # Qingflow App User
9
9
 
10
+ > **Skill 版本**:`qingflow-skills-2026.06.24.2`(入口文档版本;如需确认 CLI 包版本,使用 `qingflow --version` 或 `qingflow --json version`)。
11
+
10
12
  ## Overview
11
13
 
12
14
  This skill is a lightweight router for operational Qingflow work.
13
- Assumes MCP is connected, authenticated, and on the correct workspace.
15
+ In Wingent Momo runtime, trust injected MCP credentials, workspace, and route context until a business tool explicitly reports otherwise.
14
16
  Before routing, skim the shared maintenance baseline: [public-surface-sync.md](references/public-surface-sync.md).
15
17
 
16
18
  ## Default Paths
17
19
 
18
20
  Route to exactly one of these specialized paths:
19
21
 
20
- 1. Record insert
22
+ 1. Record insert
21
23
  Switch to [$qingflow-record-insert](../qingflow-record-insert/SKILL.md)
22
24
 
23
- 2. Record update
25
+ 2. Record update
24
26
  Switch to [$qingflow-record-update](../qingflow-record-update/SKILL.md)
25
27
 
26
- 3. Record delete
28
+ 3. Record delete
27
29
  Switch to [$qingflow-record-delete](../qingflow-record-delete/SKILL.md)
28
30
 
29
- 4. Record import
31
+ 4. Record import
30
32
  Switch to [$qingflow-record-import](../qingflow-record-import/SKILL.md)
31
33
 
32
- 5. Task workflow operations
34
+ 5. Task workflow operations
33
35
  Switch to [$qingflow-task-ops](../qingflow-task-ops/SKILL.md)
34
36
 
35
- 6. Analysis
37
+ 6. Analysis
36
38
  Switch to [$qingflow-record-analysis](../qingflow-record-analysis/SKILL.md)
37
39
 
38
- 7. MCP connection / auth / workspace selection
40
+ 7. Standalone MCP setup or explicit auth/workspace recovery
39
41
  Switch to [$qingflow-mcp-setup](../qingflow-mcp-setup/SKILL.md)
40
42
 
41
43
  8. App / view / workflow / chart / portal / package configuration
42
- Switch to [$qingflow-app-builder](../qingflow-app-builder/SKILL.md)
44
+ This is outside the App User MCP tool surface. Use the separate `qingflow-app-builder` skill/MCP package when that builder surface is installed; otherwise ask the user to enable the builder MCP.
43
45
 
44
46
  ## Routing Rules
45
47
 
46
- - If the user does not know the target `app_key`, discover apps first with `app_list` or `app_search`, then route to the specialized skill
48
+ - If the user does not know the target `app_key`, discover apps first with `app_list` / `app list --query` over current-user visible apps, then route to the specialized skill; do not use the legacy app search path for ordinary members
47
49
  - If the app is known but the available data range is unclear, call `app_get` first and inspect `accessible_views`
48
50
  - If the task is about creating or new record entry, switch to `$qingflow-record-insert`
49
51
  - If the task is about editing an existing record directly, switch to `$qingflow-record-update`
50
52
  - If the task is about deleting records directly, switch to `$qingflow-record-delete`
51
53
  - If the task is about import templates, import capability discovery, import-file verification, authorized local file repair, import execution, or import status, switch to `$qingflow-record-import`
52
54
  - If the task is about todo discovery, task context, approval actions, rollback or transfer, associated report review, or workflow log review, switch to `$qingflow-task-ops`
53
- - If the task is about package, app, field, layout, workflow, view, chart, portal, visibility, icon, or app base configuration, switch to `$qingflow-app-builder`
55
+ - If the task is about package, app, field, layout, workflow, view, chart, portal, visibility, icon, or app base configuration, do not continue with App User MCP tools. Use the separate `qingflow-app-builder` skill/MCP package when available, or ask the user to enable the builder MCP.
54
56
  - If the task involves member, department, or relation fields and the user only has natural names/titles, keep the same route; direct write now supports backend-native auto resolution and may return `needs_confirmation` with candidates instead of failing blind
57
+ - For member/department field ambiguity, keep the record insert/update route and use `record_member_candidates` / `record_department_candidates`; do not switch to `directory_*`, builder member search, external-contact lookup, or contact-directory management queries. App User MCP only exposes `directory_search` for member-visible keyword search, not directory tree/list management.
55
58
  - If the task involves linked visibility, upstream/downstream field dependencies, reference-driven auto fill, or formula-driven defaulting, keep the same insert/update route and read field-level `linkage` from the schema before composing payloads
56
59
  - If the task is about subtable writes, still route to the matching insert/update skill, but shape the payload as parent subtable field -> row array; do not route users toward top-level leaf selectors
57
60
  - If the task is insert-focused and readback/detail context matters, keep the same route and prefer the single-record detail readback after the write; use normalized list readback only when batch row shape is needed
58
61
  - If the user sounds like an ordinary workflow assignee rather than a system operator, prefer `$qingflow-task-ops` over direct record mutation whenever both paths could fit
59
62
  - If the task is about task discovery by natural language query, still route to `$qingflow-task-ops`; `task_list --query` now uses backend search first and only falls back to local matching when backend returns zero rows
60
63
  - If the task is about grouped distributions, ratios, rankings, trends, insights, or any final statistical conclusion, switch to `$qingflow-record-analysis`
61
- - If the MCP is not connected, authenticated, or bound to the right workspace, switch to `$qingflow-mcp-setup`
64
+ - In Wingent Momo runtime, do not route to `$qingflow-mcp-setup` as a preflight. Switch there only when a business tool explicitly reports missing auth, invalid session, or wrong/missing workspace, or when the user asks to configure a standalone MCP client.
62
65
 
63
66
  ## Shared Preconditions
64
67
 
@@ -86,4 +89,4 @@ Route to exactly one of these specialized paths:
86
89
  - Record import: [$qingflow-record-import](../qingflow-record-import/SKILL.md)
87
90
  - Task workflow operations: [$qingflow-task-ops](../qingflow-task-ops/SKILL.md)
88
91
  - Dedicated analysis workflow: [$qingflow-record-analysis](../qingflow-record-analysis/SKILL.md)
89
- - Builder workflow: [$qingflow-app-builder](../qingflow-app-builder/SKILL.md)
92
+ - Builder workflow requires the separate `qingflow-app-builder` skill/MCP package.
@@ -9,12 +9,12 @@ For final statistics, grouped distributions, rankings, trends, or insight-style
9
9
  - `record_get` is for one exact record and downloads readable detail-page images into `media_assets.items[].local_path` plus attachments/documents/tables into `file_assets.items[].local_path`
10
10
  - Use `record_browse_schema_get` when field titles are uncertain instead of guessing ids
11
11
  - Do not present paged browse output as if it were a grouped or full-population conclusion
12
- - Use `record_export_direct` only when the user explicitly asks for export/download/Excel output
12
+ - Use `record_export_direct` only when the user explicitly asks for export/download/Excel output, and always pass an explicit `view_id` from `app_get.accessible_views` or the frontend URL
13
13
 
14
14
  ## Direct Writes
15
15
 
16
16
  - `record_insert` is schema-first through `record_insert_schema_get`; default to `items=[{"fields": {...}}]`
17
- - `record_update` is schema-first through `record_update_schema_get`
17
+ - `record_update` is detail-first: read `record_get`, compose the requested title-keyed `fields` map, then write directly; use `record_update_schema_get` only after update failure or ambiguity
18
18
  - `record_delete` does not need a schema-get step
19
19
  - For batch insert, `partial_success` means some rows were created; use `created_record_ids`, failed `row_number`, and `failed_fields` to repair only failed rows
20
20
  - If a direct-write tool returns `write_executed=false`, the write was blocked and not executed for that item
@@ -1,6 +1,6 @@
1
1
  # Qingflow Core Public Surface Sync
2
2
 
3
- Use this file as the maintenance baseline for the core Qingflow skills.
3
+ Use this file as the maintenance baseline for the core Qingflow skills.
4
4
  It is not a user-facing product spec. It exists to prevent skill drift.
5
5
 
6
6
  ## Current Public Defaults
@@ -12,9 +12,9 @@ It is not a user-facing product spec. It exists to prevent skill drift.
12
12
  - Standard flows:
13
13
  - analyze: `app_get -> record_browse_schema_get -> record_access -> Python`
14
14
  - browse detail: `app_get -> record_browse_schema_get -> record_list / record_get`
15
- - explicit export/download/Excel: `view_get -> record_export_*` or `record_export_direct`
15
+ - explicit export/download/Excel: `app_get -> choose view_id -> view_get -> record_export_*` or `record_export_direct`; export tools require explicit `view_id`
16
16
  - insert: `record_insert_schema_get -> record_insert(items)`
17
- - update: `record_update_schema_get -> record_update`
17
+ - update: `record_get -> record_update`; use `record_update_schema_get` only for failure diagnosis or ambiguous writable-field routing
18
18
 
19
19
  ### Tasks
20
20
 
@@ -41,13 +41,13 @@ Use `record_insert_schema_get -> record_insert(items)`.
41
41
 
42
42
  ## Update Pattern
43
43
 
44
- Use `record_update_schema_get -> record_update`.
44
+ Use `record_get -> record_update`.
45
45
 
46
46
  1. Confirm the target app and `record_id`
47
- 2. Read `writable_fields` and `payload_template`
48
- 3. Update only fields present in `writable_fields`
49
- 4. Let MCP auto-select the first matched accessible view that can execute the payload
50
- 5. Run `record_update`
47
+ 2. Read `record_get` in the same view/context the user is using when a `view_id` is known
48
+ 3. Build a field-title keyed `fields` map from `record_get.fields[]` and the user's requested changes
49
+ 4. Run `record_update` directly; let MCP auto-select the executable update route
50
+ 5. If `record_update` fails because fields/routes are ambiguous or unavailable, then use `record_update_schema_get` as a diagnostic tool
51
51
 
52
52
  ## Delete Pattern
53
53
 
@@ -14,13 +14,12 @@ Examples:
14
14
 
15
15
  Rules:
16
16
 
17
- - if the user starts from inbox, todo, workload, cc, or bottleneck language, use `task_*` first
18
- - use `task_summary` for headline counts
19
- - use `task_list` for flat browsing
20
- - use `task_facets` when worksheet or workflow-node buckets matter
17
+ - if the user starts from inbox, todo, workload, cc, or bottleneck language, use the public task tools first
18
+ - use `task_list` for headline counts and flat browsing; group locally by app or workflow node when buckets matter
19
+ - use `task_get`, `task_workflow_log_get`, and `task_associated_report_detail_get` only after locating the exact task
21
20
  - treat task counts as task-center counts, not record counts
22
21
  - switch to `record_*` only after locating the exact business record behind a task
23
22
  - identify the exact target first
24
- - for approve or reject, identify the exact `workflow_node_id` first; prefer task-center results or current audit info, then use `task_approve` or `task_reject`
23
+ - for approve or reject, identify the exact target first; prefer `task_id` from task-center results, then use `task_action_execute` with action `approve` or `reject`
25
24
  - avoid usage-side workflow actions on ambiguous records
26
25
  - summarize the final action and target task ids or record ids
@@ -7,6 +7,8 @@ metadata:
7
7
 
8
8
  # Qingflow MCP Setup
9
9
 
10
+ > **Skill 版本**:`qingflow-skills-2026.06.24.2`(入口文档版本;如需确认 CLI 包版本,使用 `qingflow --version` 或 `qingflow --json version`)。
11
+
10
12
  ## Overview
11
13
 
12
14
  This skill sets up the local Qingflow MCP server, connects it to a local AI client, and verifies authentication and workspace selection. Use it for installation, client configuration, token login, and connection troubleshooting.
@@ -73,24 +75,26 @@ cd <repo_root>/qingflow-support/mcp-server
73
75
 
74
76
  Prefer validating through the client after config is added.
75
77
 
76
- ### Step 5: Authenticate and select workspace
78
+ ### Step 5: Use injected session first; authenticate only for setup or recovery
79
+
80
+ For Wingent Momo runtime conversations, the session normally already carries the credential-derived token, workspace, and route context. Do not run `auth_use_credential`, `auth_login`, `workspace_list`, or `workspace_select` before ordinary business tools. Start with the smallest read-only business call that fits the task; if it succeeds, continue.
77
81
 
78
- Recommended order inside the client:
82
+ For a standalone local MCP client that has no injected session, use this setup order:
79
83
 
80
- 1. `auth_use_token` or `auth_login`
84
+ 1. `auth_use_credential` or `auth_login`
81
85
  2. `workspace_list`
82
86
  3. `workspace_select`
83
- 4. Only then use business tools
87
+ 4. Run a small read-only business tool
84
88
 
85
- If the user already knows the target workspace, prefer `auth_use_token(..., ws_id=<id>)`.
89
+ `auth_use_credential` gets the selected workspace from the credential context. If the user needs a different workspace after authentication, use `workspace_list` and then `workspace_select`.
86
90
  After auth, prefer one read-only tool call that returns `request_route` so you can confirm the live `base_url` and `qf_version` before proceeding.
87
- `auth_use_token` is a tool call, not a custom HTTP header. The runtime injects `token`, `wsId`, and when needed `Cookie: qfVersion=...` after the session is established.
88
- Do not skip `workspace_select` on production paths. If `/user` does not return a version lane, the session now falls back to the workspace `systemVersion`.
91
+ `auth_use_credential` is a tool call, not a custom HTTP header. It exchanges the createClaw credential for a Qingflow token, `wsId`, and when needed `Cookie: qfVersion=...` after the session is established.
92
+ Do not run `workspace_select` on production paths unless the user explicitly asks to switch workspace or a business tool clearly reports that no workspace is selected. If `/user` does not return a version lane, the session now falls back to the workspace `systemVersion`.
89
93
 
90
94
  ### Step 6: Troubleshoot in the right layer
91
95
 
92
96
  - If the client cannot launch the server, check path, execute permission, and `.venv`
93
- - If tools return `auth required`, re-run `auth_use_token` or `auth_login`
97
+ - If tools return `auth required`, re-run `auth_use_credential` or `auth_login`
94
98
  - If tools return `workspace not selected`, call `workspace_list` and `workspace_select`
95
99
  - If calls fail after a working session, assume token expiry and re-authenticate
96
100
  - If the browser shows data but MCP does not, compare `request_route` against the browser environment and check whether `qf_version` should be `canary`
@@ -98,7 +102,7 @@ Do not skip `workspace_select` on production paths. If `/user` does not return a
98
102
  ## Guardrails
99
103
 
100
104
  - Never write tokens into the skill files
101
- - Never assume a workspace is selected until `auth_whoami` or `workspace_select` confirms it
105
+ - In Wingent Momo runtime, trust injected workspace context until a business tool proves otherwise; for standalone clients, confirm workspace with `auth_whoami`, `workspace_select`, or a successful read-only business call.
102
106
  - When debugging, distinguish server startup issues from Qingflow auth issues
103
107
  - When the user mentions production, restate the exact `base_url`, `qf_version`, and workspace before any live validation
104
108
  - If setup is complete but the current MCP capability is still unsupported or the user's need still cannot be satisfied, summarize the gap, ask whether to submit feedback, and call `feedback_submit` only after explicit user confirmation