@evomap/evolver-mcp 2.0.16 → 2.0.19

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 (2) hide show
  1. package/dist/tools.js +2 -1
  2. package/package.json +2 -2
package/dist/tools.js CHANGED
@@ -274,7 +274,7 @@ export function buildEvolverTools(deps) {
274
274
  },
275
275
  {
276
276
  name: 'evolver_distill_conversation',
277
- description: '从当前 agent 对话中蒸馏可复用 Gene/Capsule. 需要具体 summary、strategy/evidence、artifacts、validation; core quality gate 会拒绝弱信号.',
277
+ description: '从当前对话蒸馏可复用能力. 本地仍落 Gene/Capsule, 但 Hub 默认优先发布成 Recipe, 不再优先上 Skill Store. 需要具体 summary、strategy/evidence、artifacts、validation; quality gate 会拒绝弱信号. publish=true 时默认 compose_recipe, 可用 publish_recipe=false 关掉.',
278
278
  inputSchema: {
279
279
  type: 'object',
280
280
  required: ['summary'],
@@ -292,6 +292,7 @@ export function buildEvolverTools(deps) {
292
292
  validation: { type: 'array', items: { type: 'string' } },
293
293
  persist: { type: 'boolean' },
294
294
  publish: { type: 'boolean' },
295
+ publish_recipe: { type: 'boolean', description: 'When publish=true, also compose and publish a Recipe. Defaults to true.' },
295
296
  min_score: { type: 'integer', minimum: 1, maximum: 10 },
296
297
  },
297
298
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evomap/evolver-mcp",
3
- "version": "2.0.16",
3
+ "version": "2.0.19",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "engines": {
@@ -23,7 +23,7 @@
23
23
  }
24
24
  },
25
25
  "dependencies": {
26
- "@evomap/evolver-core": "2.0.16",
26
+ "@evomap/evolver-core": "2.0.19",
27
27
  "smol-toml": "^1.6.1"
28
28
  },
29
29
  "repository": {