dory-to-dory-watcher 0.2.0 → 0.3.0
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/README.md +16 -11
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
dory-to-dory Core의 SSE wake-up 신호를 기다렸다가, 실제 처리할 work가 있을 때만 로컬 Agent CLI를 실행하는 크로스 플랫폼 Watcher입니다. SSE에는 작업 본문이 포함되지 않으며, 연결 또는 재연결 때 `/v2/watcher/status`로 실제 상태를 다시 확인합니다.
|
|
4
4
|
|
|
5
|
-
0.
|
|
5
|
+
0.3.0은 검색 증빙을 지원하는 Core v2를 사용하며, MCP 0.3.0을 정확한 런타임 의존성으로 함께 설치합니다. 새 coordination 생성에는 정상 검색으로 발급받은 `skill_search_id`가 필수입니다. Core에도 검색 증빙 API와 migration이 적용되어 있어야 합니다. 기존 v1 작업은 자동 이전하지 않으며, 완료 또는 취소까지 기존 0.1.x MCP와 Watcher를 유지해야 합니다.
|
|
6
6
|
|
|
7
7
|
Watcher는 Agent를 새로 구현하지 않습니다. 사용자가 이미 로그인하고 도구를 설정한 Codex CLI, Claude Code, Gemini CLI를 headless 모드로 실행합니다. 비대화식 실행이 사람의 승인 창에서 멈추지 않도록 Agent별 안전 모드를 명시적으로 적용하며, 위험한 sandbox·권한 우회 인자는 거부합니다. dory-to-dory MCP는 Watcher의 정확한 런타임 의존성으로 함께 설치됩니다. `custom` Adapter를 통해 다른 Agent 개발자가 실행 방식을 교체할 수 있습니다.
|
|
8
8
|
|
|
@@ -35,7 +35,7 @@ Watcher는 Agent를 새로 구현하지 않습니다. 사용자가 이미 로그
|
|
|
35
35
|
일반 사용자는 Watcher를 전역 설치한 뒤 대화형 설정을 한 번 실행합니다.
|
|
36
36
|
|
|
37
37
|
```sh
|
|
38
|
-
npm install --global dory-to-dory-watcher@0.
|
|
38
|
+
npm install --global dory-to-dory-watcher@0.3.0
|
|
39
39
|
dory-watcher setup
|
|
40
40
|
```
|
|
41
41
|
|
|
@@ -79,7 +79,7 @@ Windows setup이 `Could not restrict the Windows credential ACL`로 중단되고
|
|
|
79
79
|
같은 Node 설치와 npm 전역 prefix를 유지하는 일반적인 Watcher 업데이트는 다음 순서로 진행합니다. 두 번째 명령은 새 설치 경로를 확인하고 서비스 정의를 안전하게 교체한 뒤 실행 중인 Watcher를 새 버전으로 재시작합니다.
|
|
80
80
|
|
|
81
81
|
```sh
|
|
82
|
-
npm install --global dory-to-dory-watcher@0.
|
|
82
|
+
npm install --global dory-to-dory-watcher@0.3.0
|
|
83
83
|
dory-watcher service install --replace
|
|
84
84
|
dory-watcher status
|
|
85
85
|
```
|
|
@@ -123,7 +123,7 @@ node dist/cli.js run
|
|
|
123
123
|
npm 패키지는 다음과 같이 전역 설치할 수 있습니다.
|
|
124
124
|
|
|
125
125
|
```sh
|
|
126
|
-
npm install --global dory-to-dory-watcher@0.
|
|
126
|
+
npm install --global dory-to-dory-watcher@0.3.0
|
|
127
127
|
dory-watcher doctor
|
|
128
128
|
dory-watcher run
|
|
129
129
|
```
|
|
@@ -279,8 +279,12 @@ pnpm run check
|
|
|
279
279
|
|
|
280
280
|
## v2 and the desktop Agent
|
|
281
281
|
|
|
282
|
-
Version `0.
|
|
283
|
-
the exact
|
|
282
|
+
Version `0.3.0` requires the Core `/v2/watcher/status` and skill-search proof
|
|
283
|
+
contracts, and installs the exact MCP `0.3.0` dependency. Core must also have the
|
|
284
|
+
skill-search API and migration deployed. MCP requires a successful search proof
|
|
285
|
+
before each new coordination and stops creation after an initial search plus at
|
|
286
|
+
most three retries.
|
|
287
|
+
The Watcher adapter protocol and processing behavior are unchanged in this release.
|
|
284
288
|
Existing Codex, Claude and Gemini execution boundaries remain in force. The
|
|
285
289
|
headless prompt now routes host decisions to `d2d_update_host_card` and client
|
|
286
290
|
responses to `d2d_submit_item_result`. It never treats a client answer as overall
|
|
@@ -317,8 +321,9 @@ change in count. An unrelated event or a claim alone does not prove execution.
|
|
|
317
321
|
|
|
318
322
|
### Local development across the two repositories
|
|
319
323
|
|
|
320
|
-
`package.json` and the lockfile use the
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
before packing a Watcher release.
|
|
324
|
+
`package.json` and the lockfile use the registry package `dory-to-dory-mcp@0.3.0`.
|
|
325
|
+
There is no local sibling-repository override. If you temporarily link an MCP
|
|
326
|
+
checkout while developing a coordinated change, remove that override, regenerate
|
|
327
|
+
the lockfile against the exact published dependency, and verify an isolated
|
|
328
|
+
production install before packing a Watcher release. Existing Watcher 0.2.0
|
|
329
|
+
installations do not automatically acquire the new MCP.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dory-to-dory-watcher",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Cross-platform SSE watcher that wakes a configured local Agent CLI for dory-to-dory work",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"dory-to-dory-mcp": "0.
|
|
37
|
+
"dory-to-dory-mcp": "0.3.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^24.0.0",
|