finch-multi-agent 0.2.0 → 0.2.1

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/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -126,7 +126,7 @@ default" to go back.
126
126
  nothing leaves your machine, and no network access is requested.
127
127
  - Workers run with automatic permission handling so an unattended run does not stall; a
128
128
  genuinely dangerous operation still waits for you.
129
- - Requires Finch 1.6.4 or newer.
129
+ - Requires Finch 1.7.0 or newer.
130
130
 
131
131
  ---
132
132
 
@@ -232,4 +232,4 @@ Finch 会一直盯到出结果,而不是把活退回给你看着。
232
232
 
233
233
  - 任务状态保存在小程序自己存储目录下的本地 SQLite 数据库里——数据不出本机,也不申请网络权限。
234
234
  - worker 采用自动权限处理,避免无人值守时卡住;真正危险的操作仍然会等你确认。
235
- - 需要 Finch 1.6.4 或更高版本。
235
+ - 需要 Finch 1.7.0 或更高版本。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "finch-multi-agent",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Spin up a team of sub-agents from one natural-language goal: Fan out a plan into parallel worker Sessions that share immutable Artifacts, versioned Documents and structured Handoffs.",
5
5
  "author": {
6
6
  "name": "PuterJam",
@@ -35,10 +35,10 @@
35
35
  "finch": {
36
36
  "manifestVersion": 1,
37
37
  "id": "multi-agent",
38
- "minVersion": "1.6.4",
38
+ "minVersion": "1.7.0",
39
39
  "name": "Multi-Agent",
40
40
  "description": "Turn one goal into a team of sub-agents: parallel worker sessions that hand off immutable artifacts instead of chat messages.",
41
- "systemPrompt": "Use multi_agent_run when a request is genuinely decomposable into independent, low-bandwidth subtasks — research fan-out, multi-module review, batch processing, parallel drafting. Do not use it for small tasks, tightly coupled work, or anything needing low-latency back-and-forth. From the user's side there are only two steps — ask, then get the answer — so keep dispatching, executing and waiting inside one continuous chain of calls, and never narrate the mechanics or ask whether to keep waiting. Name every subtask as \"<role> · <what it is doing>\" (e.g. \"Competitor research · price the top three\") — that string becomes the worker's session title. To wait for a result, call wait (repeatedly if needed); never sleep and never poll with status. When the user changes direction mid-run, use revise to stop the affected tasks and queue replacements in the same run do not start a new one.",
41
+ "systemPrompt": "Use multi_agent_run when a request is genuinely decomposable into independent, low-bandwidth subtasks — research fan-out, multi-module review, batch processing, parallel drafting. Do not use it for small tasks, tightly coupled work, or anything needing low-latency back-and-forth. From the user's side there are only two steps — ask, then get the answer — so keep dispatching, executing and waiting inside one continuous chain of calls, and never narrate the mechanics or ask whether to keep waiting. Name every subtask as \"<role> · <what it is doing>\" (e.g. \"Competitor research · price the top three\") — that string becomes the worker's session title. To wait for a result, call wait (repeatedly if needed); never sleep and never poll with status. You do not have to plan the whole thing up front: use add to queue or replace tasks, drop to stop them and start to release held roles never a second run.",
42
42
  "main": "dist/index.js",
43
43
  "activationEvents": [
44
44
  "onStartup"