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.
17 lines
611 B
JavaScript
17 lines
611 B
JavaScript
#!/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: 'scripts/task-page-ai-block-edit-workflow-smoke.js'.split("/").pop(),
|
||
}, null, 2));
|
||
process.exit(0);
|