Files
mnote/scripts/task454-shared-read-page-ai-browser-smoke.js
Agent Board 262e66b02e feat: purge legacy agent hosts and land vault Chrome extension path
Retire ACP/Hermes/OpenCode surfaces and rename hermes_tools to
mnote_agent_tools so Page AI stays on Pi Lab only. Add Chrome vault
extension + extension token route, pre-release purge design, and soft-retire
legacy smokes for the small-group production cut.
2026-07-25 14:25:37 +08:00

17 lines
584 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env node
"use strict";
/**
* RETIRED (Wave 10 / pre-release legacy purge)
* 依赖已删除的 /api/hermes/client/* 或 OpenCode Page AI host。
* 产品 Page AI 仅 Pi Lab/api/page-ai/pi/*);agent tools 为 /api/mnote/tools/*。
* 本文件保留作历史对照,直接 exit 0,不再执行浏览器/静态断言。
*/
console.log(JSON.stringify({
ok: true,
retired: true,
reason: "legacy hermes client / opencode page-ai path deleted; use Pi Lab + /api/mnote/tools",
script: require("node:path").basename(__filename),
}, null, 2));
process.exit(0);