Files
memind/scripts/print-tang-page-refine-message.mjs
T
john 8f88eec2bd
Memind CI / Test, build, and release guards (push) Successful in 4m40s
Separate WeChat chat, page refine, and task flows with explicit routing.
Add channel prefixes, pin edit targets in Cursor prompts, and force fresh sessions for page refine URLs so DeepSeek/Goose chat history does not pollute page tasks.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-31 14:10:02 +08:00

18 lines
717 B
JavaScript
Raw 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
/** Print Tang copy-paste WeChat page-refine message. */
import { buildWechatPageRefineUserMessageTemplate } from '../wechat/page-refine-target.mjs';
const TANG_USER_ID = 'a70ff537-8908-486e-9b6c-042e07cc25db';
const PAGE = 'public/shengsi-3day-guide.html';
const BASE = 'https://m.tkmind.cn';
console.log(buildWechatPageRefineUserMessageTemplate({
publicHtmlPath: PAGE,
requirements: [
'按 Day1 / Day2 / Day3 列出具体时间节点(出发、交通、景点、用餐、住宿)',
'在原有内容基础上补充,不要删掉已有有效信息',
'直接 edit 原文件,不要新建页面',
].join(''),
publicUrl: `${BASE}/MindSpace/${TANG_USER_ID}/${PAGE}`,
}));