@ahkohd/yagami 0.1.8 → 0.1.10

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/dist/daemon.js CHANGED
@@ -466,7 +466,7 @@ async function handleMcpHttp(req, res) {
466
466
  }, {
467
467
  sessionId: session.sessionId,
468
468
  protocolVersion,
469
- statusCode: 404,
469
+ statusCode: 200,
470
470
  });
471
471
  }
472
472
  const server = http.createServer(async (req, res) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahkohd/yagami",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -48,10 +48,10 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@lightpanda/browser": "^1.2.0",
51
- "@mariozechner/pi-agent-core": "^0.65.0",
52
- "@mariozechner/pi-ai": "^0.65.0",
51
+ "@mariozechner/pi-agent-core": "^0.66.0",
52
+ "@mariozechner/pi-ai": "^0.66.0",
53
53
  "markdansi": "^0.2.1",
54
- "defuddle": "^0.15.0",
54
+ "defuddle": "^0.16.0",
55
55
  "linkedom": "^0.18.12",
56
56
  "playwright-core": "^1.58.2"
57
57
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahkohd/pi-yagami-search",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
package/src/daemon.ts CHANGED
@@ -636,7 +636,7 @@ async function handleMcpHttp(req: http.IncomingMessage, res: http.ServerResponse
636
636
  {
637
637
  sessionId: session.sessionId,
638
638
  protocolVersion,
639
- statusCode: 404,
639
+ statusCode: 200,
640
640
  },
641
641
  );
642
642
  }