Files
memind/scenarios/wechat-poem-page-modify.json
T
john 7eedda092d
Memind CI / Test, build, and release guards (push) Successful in 2m37s
fix: broaden WeChat session page continuation phrasing
Recognize retry, HTML page, page edits, and poem content edits as session continuations so delivery skips fresh-thumbnail forcing and retains agent context for multi-turn page work.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-28 16:54:42 +08:00

57 lines
1.4 KiB
JSON

{
"id": "wechat-poem-page-modify",
"name": "写诗→做页面→修改页面(H5 多轮)",
"description": "模拟服务号常见三回合:写诗、做成页面、修改页面内容",
"account": {
"username": "john",
"password": "888888"
},
"steps": [
{
"action": "login",
"label": "登录"
},
{
"action": "chat",
"label": "请求写诗",
"message": "帮我写一首关于七月午后的短诗,四段即可",
"expect": {
"assistantMinChars": 40,
"timeoutMs": 180000,
"replyKeywords": ["七月", "午"]
}
},
{
"action": "chat",
"label": "做成精美 HTML 页面",
"message": "生成一个精美的 HTML 页面",
"expect": {
"assistantMinChars": 20,
"timeoutMs": 300000,
"replyKeywords": ["七月", "午"],
"page": {
"keywords": ["七月", "午"],
"requirePublicLink": true,
"requireHttp200": true,
"requireMindspaceCover": true
}
}
},
{
"action": "chat",
"label": "修改页面标题",
"message": "把页面标题改成《七月的午后》",
"expect": {
"assistantMinChars": 10,
"timeoutMs": 300000,
"replyKeywords": ["七月"],
"page": {
"keywords": ["七月的午后", "七月"],
"requirePublicLink": true,
"requireHttp200": true
}
}
}
]
}