8f88eec2bd
Memind CI / Test, build, and release guards (push) Successful in 4m40s
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>
18 lines
717 B
JavaScript
18 lines
717 B
JavaScript
#!/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}`,
|
||
}));
|