mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-12 17:21:19 +08:00
feat: add templates for epics, product brief, and requirements PRD
- Created a new directory structure for epics and stories with templates for individual epics and an index file. - Added a product brief template for generating product brief documents in Phase 2. - Introduced a requirements PRD template for generating a Product Requirements Document as a directory of individual requirement files in Phase 3. feat: implement V2PipelineTab component for Memory V2 management - Developed the V2PipelineTab component to manage extraction and consolidation processes. - Included ExtractionCard and ConsolidationCard components to handle respective functionalities. - Added JobsList component to display job statuses and allow filtering by job kind. feat: create hooks for Memory V2 pipeline - Implemented custom hooks for managing extraction and consolidation statuses, as well as job listings. - Added mutation hooks to trigger extraction and consolidation processes with automatic query invalidation on success.
This commit is contained in:
@@ -158,6 +158,50 @@
|
||||
"session-state-watch": {
|
||||
"name": "会话状态监控",
|
||||
"description": "监控会话元数据文件变更 (workflow-session.json)"
|
||||
},
|
||||
"stop-notify": {
|
||||
"name": "停止通知",
|
||||
"description": "当 Claude 完成响应时通知仪表盘"
|
||||
},
|
||||
"auto-format-on-write": {
|
||||
"name": "写入自动格式化",
|
||||
"description": "在 Claude 写入或编辑文件后自动格式化"
|
||||
},
|
||||
"auto-lint-on-write": {
|
||||
"name": "写入自动检查",
|
||||
"description": "在 Claude 写入或编辑文件后自动进行 Lint 检查"
|
||||
},
|
||||
"block-sensitive-files": {
|
||||
"name": "阻止敏感文件修改",
|
||||
"description": "阻止对敏感文件 (.env、密钥、凭据) 的修改"
|
||||
},
|
||||
"git-auto-stage": {
|
||||
"name": "Git 自动暂存",
|
||||
"description": "当 Claude 完成响应时自动暂存所有修改的文件"
|
||||
},
|
||||
"post-edit-index": {
|
||||
"name": "编辑后索引",
|
||||
"description": "文件修改时通知索引服务"
|
||||
},
|
||||
"session-end-summary": {
|
||||
"name": "会话结束摘要",
|
||||
"description": "会话结束时向仪表盘发送会话摘要"
|
||||
},
|
||||
"project-state-inject": {
|
||||
"name": "项目状态注入",
|
||||
"description": "会话开始时注入项目指南和最近开发历史"
|
||||
},
|
||||
"memory-v2-extract": {
|
||||
"name": "Memory V2 提取",
|
||||
"description": "会话结束时触发 Phase 1 提取(空闲期后)"
|
||||
},
|
||||
"memory-v2-auto-consolidate": {
|
||||
"name": "Memory V2 自动合并",
|
||||
"description": "提取作业完成后触发 Phase 2 合并"
|
||||
},
|
||||
"memory-sync-dashboard": {
|
||||
"name": "Memory 同步仪表盘",
|
||||
"description": "变更时将 Memory V2 状态同步到仪表盘"
|
||||
}
|
||||
},
|
||||
"actions": {
|
||||
|
||||
@@ -109,5 +109,50 @@
|
||||
"vectorRank": "向量 #{rank}",
|
||||
"ftsRank": "全文 #{rank}",
|
||||
"heatScore": "热度: {score}"
|
||||
},
|
||||
"v2": {
|
||||
"title": "Memory V2 Pipeline",
|
||||
"extraction": {
|
||||
"title": "提取",
|
||||
"description": "从 CLI 会话中提取结构化记忆",
|
||||
"trigger": "触发提取",
|
||||
"extracting": "提取中...",
|
||||
"extracted": "已提取",
|
||||
"recentJobs": "最近作业",
|
||||
"triggered": "提取已触发",
|
||||
"triggerError": "触发提取失败"
|
||||
},
|
||||
"consolidation": {
|
||||
"title": "合并",
|
||||
"description": "合并提取结果生成 MEMORY.md",
|
||||
"trigger": "触发合并",
|
||||
"consolidating": "合并中...",
|
||||
"preview": "预览",
|
||||
"memoryMd": "MEMORY.md",
|
||||
"exists": "存在",
|
||||
"notExists": "不存在",
|
||||
"inputs": "输入",
|
||||
"triggered": "合并已触发",
|
||||
"triggerError": "触发合并失败"
|
||||
},
|
||||
"jobs": {
|
||||
"title": "作业列表",
|
||||
"kind": "类型",
|
||||
"key": "Key",
|
||||
"status": "状态",
|
||||
"error": "错误",
|
||||
"noJobs": "暂无作业记录",
|
||||
"allKinds": "所有类型",
|
||||
"extraction": "提取",
|
||||
"consolidation": "合并"
|
||||
},
|
||||
"status": {
|
||||
"idle": "空闲",
|
||||
"running": "运行中",
|
||||
"completed": "已完成",
|
||||
"done": "完成",
|
||||
"error": "错误",
|
||||
"pending": "等待"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -214,6 +214,9 @@
|
||||
"normal": "正常",
|
||||
"characters": "字符",
|
||||
"chars": "字符",
|
||||
"lines": "行",
|
||||
"maxLimit": "最大",
|
||||
"quickPresets": "快速预设:",
|
||||
"statsInfo": "统计信息",
|
||||
"requiredLength": "必读规范长度:",
|
||||
"matchedLength": "关键词匹配长度:",
|
||||
@@ -222,7 +225,34 @@
|
||||
"saveSuccess": "设置已保存",
|
||||
"saveError": "保存设置失败",
|
||||
"filesList": "注入文件列表",
|
||||
"files": "个文件"
|
||||
"files": "个文件",
|
||||
"noFiles": "没有匹配此命令的文件",
|
||||
"loadingPreview": "加载预览中...",
|
||||
"commandPreview": "命令注入预览",
|
||||
"commandPreviewDesc": "预览不同 CLI 命令将注入的内容"
|
||||
},
|
||||
|
||||
"commandPreview": {
|
||||
"default": {
|
||||
"label": "全部类别",
|
||||
"description": "加载所有必读规范,不进行类别过滤"
|
||||
},
|
||||
"exploration": {
|
||||
"label": "探索",
|
||||
"description": "代码探索、分析、调试相关规范"
|
||||
},
|
||||
"planning": {
|
||||
"label": "规划",
|
||||
"description": "任务规划、需求相关规范"
|
||||
},
|
||||
"execution": {
|
||||
"label": "执行",
|
||||
"description": "实现、测试、部署相关规范"
|
||||
},
|
||||
"general": {
|
||||
"label": "通用",
|
||||
"description": "适用于所有阶段的规范"
|
||||
}
|
||||
},
|
||||
|
||||
"priority": {
|
||||
@@ -241,9 +271,27 @@
|
||||
"defaultReadModeHelp": "新创建的个人规范的默认读取模式",
|
||||
"selectReadMode": "选择读取模式",
|
||||
"autoEnable": "自动启用新规范",
|
||||
"autoEnableDescription": "自动启用新创建的个人规范",
|
||||
"autoEnableDescription": "新创建的个人规范默认设置为必读(readMode=required),自动加入注入上下文",
|
||||
"specStatistics": "规范统计",
|
||||
"totalSpecs": "总计:{count} 个规范文件"
|
||||
"totalSpecs": "总计:{count} 个规范文件",
|
||||
"devProgressInjection": "开发进度注入",
|
||||
"devProgressInjectionDesc": "控制如何将 project-tech.json 中的开发进度注入到 AI 上下文中",
|
||||
"enableDevProgress": "启用注入",
|
||||
"enableDevProgressDesc": "在 AI 上下文中包含开发历史记录",
|
||||
"maxEntries": "每类最大条目数",
|
||||
"maxEntriesDesc": "每个类别包含的最大条目数 (1-50)",
|
||||
"includeCategories": "包含的类别",
|
||||
"categoriesDesc": "点击切换类别包含状态",
|
||||
"devProgressStats": "共 {total} 条记录,来自 {sessions} 个会话,最后更新:{date}",
|
||||
"devProgressStatsNoDate": "共 {total} 条记录,来自 {sessions} 个会话"
|
||||
},
|
||||
|
||||
"devCategory": {
|
||||
"feature": "新功能",
|
||||
"enhancement": "增强",
|
||||
"bugfix": "修复",
|
||||
"refactor": "重构",
|
||||
"docs": "文档"
|
||||
},
|
||||
|
||||
"dialog": {
|
||||
|
||||
Reference in New Issue
Block a user