@nine-lab/nine-mu 0.1.313 → 0.1.314

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.313",
3
+ "version": "0.1.314",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -13,19 +13,11 @@ export class NotificationHandler {
13
13
  * MCP로부터 수신된 날것의 노티파이 데이터를 정석대로 라우팅하는 메인 메서드
14
14
  */
15
15
  handle(notification) {
16
- try {
17
- const { method, params } = notification;
16
+ const { method, params } = notification;
18
17
 
19
- // 로깅 및 진행 상황 메시지 노티인 경우
20
- if (method === "notifications/logging/message") {
21
- this.#handleLoggingMessage(params);
22
- }
23
-
24
- // 추후 다른 프로토콜 메서드가 추가되면 여기에 깔끔하게 분기 확장 가능
25
- // else if (method === "notifications/다른거") { ... }
26
-
27
- } catch (error) {
28
- trace.error("🔥 노티파이 핸들러 내부 처리 실패:", error);
18
+ // 로깅 및 진행 상황 메시지 노티인 경우
19
+ if (method === "notifications/logging/message") {
20
+ this.#handleLoggingMessage(params);
29
21
  }
30
22
  }
31
23