/** * AI 助手欢迎界面快捷提示配置 * * 根据不同页面场景显示相关的快捷提示,帮助用户快速开始对话 * 提示内容基于 DooTask MCP 工具的实际能力设计 */ import {languageName} from "../../language"; // SVG 图标定义 const SVG_ICONS = { // 任务/待办 task: '', // 列表/概览 list: '', // 搜索 search: '', // 日历/时间 calendar: '', // 文档/报告 document: '', // 添加/新建 plus: '', // 消息/对话 message: '', // 分析/图表 chart: '', // 警告/逾期 alert: '', // 文件夹 folder: '', // 编辑/优化 edit: '', // 用户/团队 user: '', // 发送 send: '', // 时钟/截止 clock: '', // 完成/勾选 check: '', // 重点/推进/优先级 flag: '', // 清单/行动项/纪要 clipboard: '', // 链接/关联 link: '', }; /** * 根据当前语言获取文本 */ function getText(textObj) { if (typeof textObj === 'string') { return textObj; } const isZh = languageName && languageName.includes('zh'); return isZh ? textObj.zh : textObj.en; } // 提示类型:用于随机抽样时控制多样性(查询/推进/同步/复盘) const PROMPT_TYPES = { QUERY: 'query', ACTION: 'action', SYNC: 'sync', REVIEW: 'review', }; /** * 洗牌(Fisher-Yates) */ function shuffleArray(arr) { const shuffled = [...arr]; for (let i = shuffled.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [shuffled[i], shuffled[j]] = [shuffled[j], shuffled[i]]; } return shuffled; } /** * 从数组中随机选择指定数量的元素 * @param {Array} arr - 源数组 * @param {number} count - 选择数量 * @returns {Array} 随机选择的元素 */ function getRandomItems(arr, count) { if (arr.length <= count) { return arr; } const shuffled = [...arr]; // Fisher-Yates 洗牌算法(只洗前 count 个) for (let i = 0; i < count; i++) { const j = i + Math.floor(Math.random() * (shuffled.length - i)); [shuffled[i], shuffled[j]] = [shuffled[j], shuffled[i]]; } return shuffled.slice(0, count); } /** * 格式化提示词:选择随机数量并转换为当前语言 * @param {Array} rawPrompts - 原始提示词列表 * @returns {Array} 格式化后的提示词列表 [{ text, svg }] */ function formatPrompts(rawPrompts) { const displayCount = Math.floor(Math.random() * 4) + 3; // 3, 4, 5, 或 6 const selectedPrompts = selectPrompts(rawPrompts, displayCount); return selectedPrompts.map(item => ({ text: getText(item.text), svg: item.svg, })); } /** * 随机选择提示词:优先展示 pin 提示,并尽量避免重复类型 * @param {Array} rawPrompts - 提示词列表 * @param {number} count - 选择数量 * @returns {Array} 选择后的提示词 */ function selectPrompts(rawPrompts, count) { const prompts = Array.isArray(rawPrompts) ? rawPrompts.filter(Boolean) : []; if (prompts.length <= count) { return shuffleArray(prompts); } const selected = []; const selectedSet = new Set(); // 1) 优先加入 pin 的提示(通常是“当前就很重要”的提示) const pinned = prompts.filter(p => p && p.pin); const nonPinned = prompts.filter(p => !p?.pin); const pinnedPickCount = Math.min(pinned.length, count); const pinnedSelected = getRandomItems(shuffleArray(pinned), pinnedPickCount); pinnedSelected.forEach(p => { selected.push(p); selectedSet.add(p); }); let remaining = count - selected.length; if (remaining <= 0) { return selected; } const selectedTypes = new Set(selected.map(p => p.type).filter(Boolean)); // 2) 尽量从“未出现过的类型”里各抽一个,保证多样性 const remainingPrompts = nonPinned.filter(p => !selectedSet.has(p)); const groups = new Map(); remainingPrompts.forEach(p => { const type = p.type || PROMPT_TYPES.QUERY; if (!groups.has(type)) { groups.set(type, []); } groups.get(type).push(p); }); const unusedTypes = shuffleArray(Array.from(groups.keys()).filter(t => !selectedTypes.has(t))); unusedTypes.forEach(type => { if (remaining <= 0) { return; } const list = groups.get(type) || []; if (list.length === 0) { return; } const item = list[Math.floor(Math.random() * list.length)]; selected.push(item); selectedSet.add(item); selectedTypes.add(type); remaining--; }); if (remaining <= 0) { return selected; } // 3) 还不够就从剩余里随机补齐 const leftover = remainingPrompts.filter(p => !selectedSet.has(p)); const fill = getRandomItems(shuffleArray(leftover), remaining); return selected.concat(fill); } /** * 获取当前场景的快捷提示列表 * @param {Object} store - Vuex store 实例 * @param {Object} routeParams - 路由参数 * @returns {Array} 快捷提示列表 [{ text, svg }],随机显示 3-6 个 */ export function getWelcomePrompts(store, routeParams = {}) { // 优先检测弹窗场景 const taskId = store.state.taskId; if (taskId > 0) { return formatPrompts(getSingleTaskPrompts()); } const dialogModalShow = store.state.dialogModalShow; const dialogId = store.state.dialogId; if (dialogModalShow && dialogId > 0) { return formatPrompts(getSingleDialogPrompts()); } const routeName = store.state.routeName; const promptsMap = { // 主要管理页面 'manage-dashboard': getDashboardPrompts, 'manage-project': getProjectPrompts, 'manage-messenger': getMessengerPrompts, 'manage-calendar': getCalendarPrompts, 'manage-file': getFilePrompts, // 独立页面 'single-task': getSingleTaskPrompts, 'single-task-content': getSingleTaskPrompts, 'single-dialog': getSingleDialogPrompts, 'single-file': getSingleFilePrompts, 'single-file-task': getSingleFileTaskPrompts, 'single-report-edit': getSingleReportEditPrompts, 'single-report-detail': getSingleReportDetailPrompts, }; const getPrompts = promptsMap[routeName]; const rawPrompts = getPrompts ? getPrompts(store, routeParams) : getDefaultPrompts(store); return formatPrompts(rawPrompts); } /** * 仪表盘提示 - 聚焦任务管理和工作安排 */ function getDashboardPrompts(store) { const dashboardTask = store.getters.dashboardTask || {}; const prompts = []; const overdueCount = dashboardTask.overdue_count || 0; const todayCount = dashboardTask.today_count || 0; const todayTasks = (dashboardTask.today || []).filter(t => t.name); const taskName = todayTasks.length > 0 ? todayTasks[Math.floor(Math.random() * todayTasks.length)].name : null; // 根据实际数据动态调整提示 if (overdueCount > 0) { prompts.push({ text: { zh: `列出我的 ${overdueCount} 个逾期任务`, en: `List my ${overdueCount} overdue tasks` }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.QUERY, pin: true, }); } if (todayCount > 0) { prompts.push({ text: { zh: '今天到期任务有哪些?', en: 'What tasks are due today?' }, svg: SVG_ICONS.calendar, type: PROMPT_TYPES.QUERY, pin: true, }); } // 补充通用提示(项目管理视角:现状 -> 风险 -> 推进 -> 同步) prompts.push( { text: { zh: '按优先级排今天任务', en: 'Prioritize my tasks for today' }, svg: SVG_ICONS.flag, type: PROMPT_TYPES.ACTION, }, { text: { zh: '汇总逾期任务并给方案', en: 'Summarize overdue tasks with actions' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '本周到期任务有哪些?', en: 'What tasks are due this week?' }, svg: SVG_ICONS.list, type: PROMPT_TYPES.QUERY, }, { text: { zh: '找出最近停滞的任务', en: 'Find recently stalled tasks' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '哪些任务缺负责人或截止?', en: 'Which tasks lack owner or due date?' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '我需要协助的任务清单', en: 'Tasks that need my assistance' }, svg: SVG_ICONS.user, type: PROMPT_TYPES.QUERY, }, { text: { zh: '生成今日工作同步文案', en: 'Draft today status update' }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, { text: { zh: '生成本周周报草稿', en: 'Generate weekly report draft' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, { text: { zh: '按项目汇总未完成任务', en: 'Summarize my pending tasks by project' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: { zh: '未来7天到期任务清单', en: 'Tasks due in the next 7 days' }, svg: SVG_ICONS.calendar, type: PROMPT_TYPES.QUERY, }, { text: { zh: '本周已完成任务回顾', en: 'Review tasks completed this week' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '找出无描述的任务', en: 'Find tasks missing descriptions' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '子任务未完成的主任务', en: 'Parent tasks with incomplete subtasks' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '搜索“风险/延期/阻塞”', en: 'Search “risk/delay/blocker”' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '帮我列出今天3个目标', en: 'List my 3 key goals for today' }, svg: SVG_ICONS.flag, type: PROMPT_TYPES.ACTION, }, taskName ? { text: { zh: `总结「${taskName}」的进展`, en: `Summarize progress of "${taskName}"` }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, } : null, { text: { zh: '生成给老板的简短进度', en: 'Draft a short status update for my manager' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, ); return prompts.filter(Boolean); } /** * 项目页提示 - 聚焦项目任务管理 */ function getProjectPrompts(store) { const project = store.getters.projectData || {}; if (!project.id) { // 项目列表页 return [ { text: { zh: '我参与的项目有哪些?', en: 'Which projects am I involved in?' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: { zh: '按关键词搜索项目', en: 'Search projects by keyword' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '哪些项目逾期最严重?', en: 'Which projects have the most overdue tasks?' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '对比项目健康度', en: 'Compare project health' }, svg: SVG_ICONS.chart, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '生成项目概览简报', en: 'Generate a project overview brief' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, { text: { zh: '帮我创建一个新项目', en: 'Help me create a new project' }, svg: SVG_ICONS.plus, type: PROMPT_TYPES.ACTION, }, { text: { zh: '查看我负责的项目', en: 'List projects I own' }, svg: SVG_ICONS.user, type: PROMPT_TYPES.QUERY, }, { text: { zh: '查看已归档项目', en: 'View archived projects' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: { zh: '创建个人项目(个人待办)', en: 'Create a personal project (personal to-dos)' }, svg: SVG_ICONS.plus, type: PROMPT_TYPES.ACTION, }, { text: { zh: '新建项目并设置看板列', en: 'Create a project with default columns' }, svg: SVG_ICONS.plus, type: PROMPT_TYPES.ACTION, }, { text: { zh: '生成本周项目周会提纲', en: 'Generate weekly project meeting outline' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.SYNC, }, { text: { zh: '找出最久未更新项目', en: 'Find least recently updated projects' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, ]; } // 项目详情页 - 提供具体操作 return [ { text: { zh: '项目未完成任务清单', en: 'List incomplete tasks in this project', }, svg: SVG_ICONS.list, type: PROMPT_TYPES.QUERY, }, { text: { zh: '项目逾期任务与原因概览', en: 'Overdue tasks & reasons overview', }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '查看项目看板列配置', en: 'View board columns configuration', }, svg: SVG_ICONS.list, type: PROMPT_TYPES.QUERY, }, { text: { zh: '成员负载与分配建议', en: 'Member workload & assignment suggestions', }, svg: SVG_ICONS.chart, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '创建任务并指派负责人', en: 'Create a task and assign an owner', }, svg: SVG_ICONS.plus, type: PROMPT_TYPES.ACTION, }, { text: { zh: '把需求拆成可执行任务', en: 'Break a requirement into tasks', }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.ACTION, }, { text: { zh: '汇总项目风险与阻塞项', en: 'Summarize risks and blockers', }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '生成本周项目推进简报', en: 'Generate this week project update', }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, { text: { zh: '搜索项目相关资料', en: 'Search project related docs', }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '查看项目成员列表与角色', en: 'View project members and roles' }, svg: SVG_ICONS.user, type: PROMPT_TYPES.QUERY, }, { text: { zh: '本项目本周到期任务', en: 'Tasks due this week in this project' }, svg: SVG_ICONS.calendar, type: PROMPT_TYPES.QUERY, }, { text: { zh: '本项目缺负责人任务', en: 'Tasks missing an owner in this project' }, svg: SVG_ICONS.user, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '本项目无截止任务', en: 'Tasks without due date in this project' }, svg: SVG_ICONS.clock, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '按看板列统计任务量', en: 'Task counts by board column' }, svg: SVG_ICONS.chart, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '按成员统计任务负载', en: 'Task workload by member' }, svg: SVG_ICONS.chart, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '优化项目描述与目标', en: 'Improve project description and goals' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.ACTION, }, { text: { zh: '生成项目风险提醒文案', en: 'Draft a project risk reminder' }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, { text: { zh: '把逾期任务整理成跟进清单', en: 'Turn overdue tasks into a follow-up checklist' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.ACTION, }, { text: { zh: '生成项目周会同步稿', en: 'Draft a weekly project meeting update' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.SYNC, }, ]; } /** * 消息页提示 - 聚焦沟通和消息查找 */ function getMessengerPrompts(store) { const dialogId = store.state.dialogId; const dialogs = store.state.cacheDialogs || []; const dialog = dialogs.find(d => d.id === dialogId); // 从私聊列表中随机获取一个用户名(用于个性化提示) const userDialogs = dialogs.filter(d => d.type === 'user' && d.name && !d.bot); const userName = userDialogs.length > 0 ? userDialogs[Math.floor(Math.random() * userDialogs.length)].name : null; const groupDialogs = dialogs.filter(d => d.type === 'group' && d.name); const groupName = groupDialogs.length > 0 ? groupDialogs[Math.floor(Math.random() * groupDialogs.length)].name : null; if (!dialog) { // 消息列表页 return [ { text: { zh: '按名称找对话', en: 'Find a chat by name' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '按名字/邮箱找人', en: 'Find a person by name/email' }, svg: SVG_ICONS.user, type: PROMPT_TYPES.QUERY, }, { text: userName ? { zh: `给 ${userName} 发送一条消息`, en: `Send a message to ${userName}` } : { zh: '给某人发送一条消息', en: 'Send a message to someone' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.ACTION, }, { text: { zh: '搜索关键词消息', en: 'Search messages by keyword' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '生成礼貌催办话术', en: 'Draft a polite follow-up message' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.SYNC, }, { text: { zh: '生成进度同步文案', en: 'Draft a progress update message' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, userName ? { text: { zh: `回顾与 ${userName} 最近对话要点`, en: `Review highlights with ${userName}` }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, } : null, userName ? { text: { zh: `把与 ${userName} 聊天整理成待办`, en: `Turn chat with ${userName} into to-dos` }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.ACTION, } : null, userName ? { text: { zh: `给 ${userName} 写确认口径`, en: `Draft a confirmation message to ${userName}` }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, } : null, userName ? { text: { zh: `给 ${userName} 写催办消息(委婉版)`, en: `Draft a gentle follow-up to ${userName}` }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.SYNC, } : null, groupName ? { text: { zh: `给「${groupName}」发进度同步`, en: `Send a progress update to "${groupName}"` }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, } : null, { text: { zh: '搜索会议纪要消息', en: 'Search meeting notes messages' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '搜索待办相关消息', en: 'Search to-do related messages' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '整理最近沟通待办', en: 'Summarize my recent communication to-dos' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, ].filter(Boolean); } // 对话详情页 return [ { text: { zh: '总结近期对话要点与结论', en: 'Summarize recent chat highlights', }, svg: SVG_ICONS.document, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '提取对话待办并建任务', en: 'Extract to-dos and create tasks', }, svg: SVG_ICONS.task, type: PROMPT_TYPES.ACTION, }, { text: { zh: '列出对话里的文件与链接', en: 'List files and links in this chat', }, svg: SVG_ICONS.link, type: PROMPT_TYPES.QUERY, }, { text: { zh: '搜索对话关键词并摘要', en: 'Search chat keyword with context', }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '给我三种推进回复版本', en: 'Give 3 reply options to move forward', }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, { text: { zh: '生成会议纪要(可直接发)', en: 'Generate meeting notes to send', }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.SYNC, }, { text: { zh: '列出本对话待办(TODO)', en: 'List to-dos in this chat' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.QUERY, }, { text: { zh: '列出本对话文件(File)', en: 'List files in this chat' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: { zh: '列出本对话会议纪要', en: 'List meeting notes in this chat' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '把行动清单发到对话', en: 'Send action list to this chat' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, { text: { zh: '生成待确认问题清单', en: 'Generate questions to confirm' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.SYNC, }, { text: { zh: '识别未决问题并给推进话术', en: 'Find open issues and draft follow-ups' }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, { text: { zh: '把待办建任务并建议负责人', en: 'Create tasks from to-dos with owner suggestions' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.ACTION, }, { text: { zh: '回顾本对话关键决定', en: 'Review key decisions in this chat' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, ]; } /** * 日历页提示 - 聚焦时间维度的任务查看 */ function getCalendarPrompts() { return [ { text: { zh: '今天到期任务清单', en: 'Tasks due today' }, svg: SVG_ICONS.calendar, type: PROMPT_TYPES.QUERY, }, { text: { zh: '本周到期任务清单', en: 'Tasks due this week' }, svg: SVG_ICONS.list, type: PROMPT_TYPES.QUERY, }, { text: { zh: '下周任务安排建议', en: 'Suggestions for next week plan' }, svg: SVG_ICONS.clock, type: PROMPT_TYPES.ACTION, }, { text: { zh: '截止日期冲突排查', en: 'Check due-date conflicts' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '逾期任务怎么重排期', en: 'Reschedule overdue tasks' }, svg: SVG_ICONS.calendar, type: PROMPT_TYPES.ACTION, }, { text: { zh: '未来两周风险预警点', en: 'Risks in the next two weeks' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '生成下周工作计划草案', en: 'Draft next week work plan' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, { text: { zh: '本月任务概览(到期/完成)', en: 'Monthly task overview (due/completed)' }, svg: SVG_ICONS.chart, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '未来30天到期任务', en: 'Tasks due in the next 30 days' }, svg: SVG_ICONS.calendar, type: PROMPT_TYPES.QUERY, }, { text: { zh: '本周每天该做什么(时间块)', en: 'Daily plan suggestion for this week' }, svg: SVG_ICONS.clock, type: PROMPT_TYPES.ACTION, }, { text: { zh: '找出同一天任务过多的日期', en: 'Find days with too many tasks' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '生成周计划同步给团队', en: 'Draft weekly plan update to the team' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, { text: { zh: '搜索“下周”相关任务消息', en: 'Search “next week” in tasks/messages' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, ]; } /** * 文件页提示 - 聚焦文件查找 */ function getFilePrompts(store) { // 从今日任务中随机获取一个任务名称(用于个性化提示) const dashboardTask = store.getters.dashboardTask || {}; const todayTasks = (dashboardTask.today || []).filter(t => t.name); const taskName = todayTasks.length > 0 ? todayTasks[Math.floor(Math.random() * todayTasks.length)].name : null; return [ { text: { zh: '搜索文件(名称/关键词)', en: 'Search files by name/keyword' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '查看共享文件列表', en: 'View shared files' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: taskName ? { zh: `查找「${taskName}」的附件`, en: `Find attachments of "${taskName}"` } : { zh: '查找某个任务的附件', en: 'Find attachments of a task' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.QUERY, }, { text: { zh: '阅读文件并总结要点', en: 'Read a file and summarize' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '从文件提取行动项清单', en: 'Extract action items from files' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.ACTION, }, { text: { zh: '生成文件转发说明文案', en: 'Draft a file sharing note' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, { text: { zh: '搜索项目相关资料', en: 'Search project related docs' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '搜索“需求/PRD/方案”文件', en: 'Search “PRD/spec/design” files' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '搜索“会议纪要/复盘”文件', en: 'Search meeting notes/retrospective files' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '对比两份相似文件差异', en: 'Compare differences between similar files' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '把文件要点写成任务描述', en: 'Turn file highlights into a task description' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.ACTION, }, { text: { zh: '从文件提取风险与待确认点', en: 'Extract risks and questions to confirm' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, taskName ? { text: { zh: `找与「${taskName}」相关的文件`, en: `Find files related to "${taskName}"` }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, } : null, ].filter(Boolean); } /** * 任务详情提示 - 聚焦当前任务的操作 */ function getSingleTaskPrompts() { return [ { text: { zh: '补全任务信息与验收标准', en: 'Fill task details and acceptance criteria' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.ACTION, }, { text: { zh: '把任务拆成子任务清单', en: 'Break down into subtasks' }, svg: SVG_ICONS.list, type: PROMPT_TYPES.ACTION, }, { text: { zh: '立刻添加一个子任务', en: 'Add a subtask now' }, svg: SVG_ICONS.plus, type: PROMPT_TYPES.ACTION, }, { text: { zh: '调整负责人/协助人', en: 'Adjust owner/assignees' }, svg: SVG_ICONS.user, type: PROMPT_TYPES.ACTION, }, { text: { zh: '修改开始与截止时间', en: 'Change start and due dates' }, svg: SVG_ICONS.clock, type: PROMPT_TYPES.ACTION, }, { text: { zh: '把任务移动到看板列', en: 'Move task to a board column' }, svg: SVG_ICONS.list, type: PROMPT_TYPES.ACTION, }, { text: { zh: '将任务标记为完成', en: 'Mark this task as complete' }, svg: SVG_ICONS.check, type: PROMPT_TYPES.ACTION, }, { text: { zh: '生成任务进展同步文案', en: 'Draft a task progress update' }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, { text: { zh: '查看这个任务的附件列表', en: 'View task attachments' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: { zh: '查看子任务进度与完成率', en: 'View subtask progress and completion rate' }, svg: SVG_ICONS.chart, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '撤销已完成状态', en: 'Undo completion status' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.ACTION, }, { text: { zh: '整理任务描述为要点版', en: 'Rewrite task description into key points' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '生成验收检查清单', en: 'Generate acceptance checklist' }, svg: SVG_ICONS.check, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '基于任务写一条催办消息', en: 'Draft a follow-up message for this task' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, { text: { zh: '搜索与该任务相关资料', en: 'Search docs/messages related to this task' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, ]; } /** * 对话页提示 */ function getSingleDialogPrompts() { return [ { text: { zh: '总结对话重点与待办', en: 'Summarize highlights and to-dos' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '提取待办并创建任务', en: 'Extract to-dos and create tasks' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.ACTION, }, { text: { zh: '列出对话中的文件', en: 'List files in this chat' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: { zh: '帮我写推进回复', en: 'Draft a reply to move forward' }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, { text: { zh: '生成对话纪要摘要', en: 'Generate chat summary notes' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.SYNC, }, { text: { zh: '搜索对话关键词并结论', en: 'Search keyword and summarize findings' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '列出本对话待办(TODO)', en: 'List to-dos in this chat' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.QUERY, }, { text: { zh: '列出本对话会议纪要', en: 'List meeting notes in this chat' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '把行动清单发到对话', en: 'Send action list to this chat' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, { text: { zh: '生成待确认问题清单', en: 'Generate questions to confirm' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.SYNC, }, { text: { zh: '把待办建任务并建议负责人', en: 'Create tasks from to-dos with owner suggestions' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.ACTION, }, ]; } /** * 文件预览提示 */ function getSingleFilePrompts() { return [ { text: { zh: '总结文件要点与结论', en: 'Summarize key points and conclusions' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '从文件提取任务清单', en: 'Extract tasks from this file' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.ACTION, }, { text: { zh: '生成文件分享说明', en: 'Draft a file sharing note' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, { text: { zh: '搜索相似文件并对比', en: 'Find similar files and compare' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '查找关联的任务/项目', en: 'Find related tasks/projects' }, svg: SVG_ICONS.list, type: PROMPT_TYPES.QUERY, }, { text: { zh: '列出需要确认的问题', en: 'List questions to clarify' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '查看文件详情(大小/来源)', en: 'View file details (size/source)' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.QUERY, }, { text: { zh: '提取关键段落摘要', en: 'Extract key paragraphs summary' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '从文件提取风险与待确认点', en: 'Extract risks and questions to confirm' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '把文件内容写成汇报素材', en: 'Turn file content into report material' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, { text: { zh: '搜索与该文件相关的消息', en: 'Search messages related to this file' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, ]; } /** * 任务附件提示 */ function getSingleFileTaskPrompts() { return [ { text: { zh: '查看该任务全部附件', en: 'View all attachments' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: { zh: '总结附件要点与风险', en: 'Summarize attachment highlights and risks' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '从附件提取行动项', en: 'Extract action items from attachments' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.ACTION, }, { text: { zh: '用附件内容完善任务描述', en: 'Improve task description from attachments' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.ACTION, }, { text: { zh: '生成验收检查清单', en: 'Generate acceptance checklist' }, svg: SVG_ICONS.check, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '基于附件拆分子任务', en: 'Create subtasks based on attachments' }, svg: SVG_ICONS.plus, type: PROMPT_TYPES.ACTION, }, { text: { zh: '把附件摘要写入任务描述', en: 'Write attachment summary into task description' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.ACTION, }, { text: { zh: '附件内容生成子任务并排序', en: 'Generate and prioritize subtasks from attachments' }, svg: SVG_ICONS.list, type: PROMPT_TYPES.ACTION, }, { text: { zh: '从附件生成验收标准草稿', en: 'Draft acceptance criteria from attachments' }, svg: SVG_ICONS.check, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '基于附件列出疑问清单', en: 'List questions based on attachments' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '把附件要点写成同步文案', en: 'Draft an update message from attachment highlights' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, ]; } /** * 汇报编辑提示 - 聚焦汇报生成 */ function getSingleReportEditPrompts() { return [ { text: { zh: '基于本周任务生成周报', en: 'Generate weekly report from tasks' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, { text: { zh: '基于今天任务生成日报', en: 'Generate daily report from tasks' }, svg: SVG_ICONS.calendar, type: PROMPT_TYPES.SYNC, }, { text: { zh: '查看我上周的汇报', en: 'View my last week\'s report' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '汇总本周已完成事项', en: 'Summarize completed items this week' }, svg: SVG_ICONS.check, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '汇总本周未完成与原因', en: 'Summarize unfinished items and reasons' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '补充风险与需要支持', en: 'Add risks and needed support' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.SYNC, }, { text: { zh: '生成下周计划与重点', en: 'Generate next week plan and focus' }, svg: SVG_ICONS.list, type: PROMPT_TYPES.SYNC, }, { text: { zh: '润色为更专业表达', en: 'Polish for more professional tone' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.ACTION, }, { text: { zh: '提交汇报给指定同事', en: 'Submit report to specified people' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.ACTION, }, { text: { zh: '查看我最近的周报列表', en: 'View my recent weekly reports' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '查看我最近的日报列表', en: 'View my recent daily reports' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '生成管理层版本周报', en: 'Generate an executive version weekly report' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, { text: { zh: '提炼本周亮点成果(可量化)', en: 'Extract highlights this week (quantifiable)' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '本周最大风险与应对动作', en: 'Top risks this week and mitigation actions' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '把周报改写成群发版本', en: 'Rewrite weekly report for group sharing' }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, { text: { zh: '提交前检查结构与重点', en: 'Check structure and key points before submitting' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '自动补未完成原因与计划', en: 'Auto-fill unfinished reasons and next steps' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.SYNC, }, { text: { zh: '生成需要协助事项清单', en: 'Generate a list of help needed' }, svg: SVG_ICONS.user, type: PROMPT_TYPES.SYNC, }, ]; } /** * 汇报详情提示 */ function getSingleReportDetailPrompts() { return [ { text: { zh: '总结这份汇报关键点', en: 'Summarize key points of this report' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '提取汇报里的待办事项', en: 'Extract action items from this report' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.ACTION, }, { text: { zh: '找出汇报提到的任务', en: 'Find tasks mentioned in this report' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.QUERY, }, { text: { zh: '生成一条回复评论文案', en: 'Draft a reply/comment' }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, { text: { zh: '标记为已读', en: 'Mark as read' }, svg: SVG_ICONS.check, type: PROMPT_TYPES.ACTION, }, { text: { zh: '标记为未读', en: 'Mark as unread' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.ACTION, }, { text: { zh: '查看TA的其他汇报', en: 'View other reports from this person' }, svg: SVG_ICONS.list, type: PROMPT_TYPES.QUERY, }, { text: { zh: '把汇报整理成跟进清单', en: 'Turn this report into a follow-up checklist' }, svg: SVG_ICONS.clipboard, type: PROMPT_TYPES.ACTION, }, { text: { zh: '生成需要追问的5个问题', en: 'Generate 5 follow-up questions' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.SYNC, }, { text: { zh: '把待办转成任务并建议负责人', en: 'Convert action items to tasks with owner suggestions' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.ACTION, }, { text: { zh: '总结风险点并给出建议', en: 'Summarize risks and give suggestions' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.REVIEW, }, { text: { zh: '查看对方本周/上周汇报', en: 'View this person’s reports this/last week' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '查找汇报相关任务详情', en: 'Find details of related tasks' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, ]; } /** * 默认提示 - 通用场景 */ function getDefaultPrompts(store) { // 从私聊列表中随机获取一个用户名(用于个性化提示) const dialogs = store?.state?.cacheDialogs || []; const userDialogs = dialogs.filter(d => d.type === 'user' && d.name && !d.bot); const userName = userDialogs.length > 0 ? userDialogs[Math.floor(Math.random() * userDialogs.length)].name : null; return [ { text: { zh: '我有哪些未完成任务?', en: 'What tasks do I have pending?' }, svg: SVG_ICONS.task, type: PROMPT_TYPES.QUERY, }, { text: { zh: '全局智能搜索(任务/项目/文件)', en: 'Global smart search (tasks/projects/files)' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '帮我创建一个任务', en: 'Help me create a task' }, svg: SVG_ICONS.plus, type: PROMPT_TYPES.ACTION, }, { text: { zh: '查看我的项目列表', en: 'View my projects' }, svg: SVG_ICONS.folder, type: PROMPT_TYPES.QUERY, }, { text: { zh: '帮我写一份工作汇报', en: 'Help me write a work report' }, svg: SVG_ICONS.document, type: PROMPT_TYPES.SYNC, }, { text: userName ? { zh: `给 ${userName} 发消息并说明背景`, en: `Send a message to ${userName} with context` } : { zh: '给某人发消息并说明背景', en: 'Send a message with context' }, svg: SVG_ICONS.send, type: PROMPT_TYPES.SYNC, }, { text: { zh: '查看未读的工作汇报', en: 'View unread work reports' }, svg: SVG_ICONS.alert, type: PROMPT_TYPES.QUERY, }, { text: { zh: '一键标记未读为已读', en: 'Mark all unread reports as read' }, svg: SVG_ICONS.check, type: PROMPT_TYPES.ACTION, }, { text: { zh: '搜索"风险/延期/阻塞"内容', en: 'Search "risk/delay/blocker" content' }, svg: SVG_ICONS.search, type: PROMPT_TYPES.QUERY, }, { text: { zh: '创建项目并设置看板列', en: 'Create a project with board columns' }, svg: SVG_ICONS.plus, type: PROMPT_TYPES.ACTION, }, { text: { zh: '把一个想法拆成任务计划', en: 'Turn an idea into a task plan' }, svg: SVG_ICONS.edit, type: PROMPT_TYPES.ACTION, }, { text: { zh: '找出我最该先做的3件事', en: 'Find the top 3 things I should do first' }, svg: SVG_ICONS.flag, type: PROMPT_TYPES.REVIEW, }, { text: userName ? { zh: `给 ${userName} 写3个消息版本`, en: `Draft 3 message options to ${userName}` } : { zh: '给某人写3个消息版本', en: 'Draft 3 message options to someone' }, svg: SVG_ICONS.message, type: PROMPT_TYPES.SYNC, }, ]; }