feat: Add phases for document consolidation, assembly, and compliance refinement

- Introduced Phase 2.5: Consolidation Agent to summarize analysis outputs and generate design overviews.
- Added Phase 4: Document Assembly to create index-style documents linking chapter files.
- Implemented Phase 5: Compliance Review & Iterative Refinement for CPCC compliance checks and updates.
- Established CPCC Compliance Requirements document outlining mandatory sections and validation functions.
- Created a base template for analysis agents to ensure consistency and efficiency in execution.
This commit is contained in:
catlog22
2026-01-28 19:57:24 +08:00
parent 4c78f53bcc
commit 0cc5101c0e
34 changed files with 888 additions and 466 deletions

View File

@@ -1603,6 +1603,46 @@ const i18n = {
// Rules
'nav.rules': 'Rules',
'nav.commands': 'Commands',
'title.commandsManager': 'Commands Manager',
'commands.title': 'Commands Manager',
'commands.description': 'Manage Claude Code commands - enable, disable, and organize by group',
'commands.totalCommands': 'Total Commands',
'commands.enabledCommands': 'Enabled Commands',
'commands.disabledCommands': 'Disabled Commands',
'commands.showDisabled': 'Show Disabled',
'commands.hideDisabled': 'Hide Disabled',
'commands.noDescription': 'No description',
'commands.disabledAt': 'Disabled at',
'commands.enableConfirm': 'Enable command "{name}"?',
'commands.disableConfirm': 'Disable command "{name}"?',
'commands.enableSuccess': 'Command "{name}" enabled successfully',
'commands.disableSuccess': 'Command "{name}" disabled successfully',
'commands.toggleError': 'Failed to toggle command status',
'commands.enabled': 'enabled',
'commands.disabled': 'disabled',
'commands.name': 'Name',
'commands.description': 'Description',
'commands.scope': 'Scope',
'commands.status': 'Status',
'commands.group.cli': 'CLI',
'commands.group.workflow': 'Workflow',
'commands.group.memory': 'Memory',
'commands.group.task': 'Task',
'commands.group.issue': 'Issue',
'commands.group.other': 'Other',
'commands.enableAll': 'Enable All',
'commands.disableAll': 'Disable All',
'commands.enableGroupConfirm': 'Enable all commands in "{group}" group?',
'commands.disableGroupConfirm': 'Disable all commands in "{group}" group?',
'commands.enableGroupSuccess': 'Group "{group}" enabled successfully',
'commands.disableGroupSuccess': 'Group "{group}" disabled successfully',
'commands.locationProject': 'Project',
'commands.locationUser': 'Global',
'commands.clickToEnableAll': 'Click to enable all commands in this group',
'commands.clickToDisableAll': 'Click to disable all commands in this group',
// Rules
'title.rulesManager': 'Rules Manager',
'rules.title': 'Rules Manager',
'rules.description': 'Manage project and user rules for Claude Code',
@@ -4239,6 +4279,46 @@ const i18n = {
// Rules
'nav.rules': '规则',
'nav.commands': '命令',
'title.commandsManager': '命令管理',
'commands.title': '命令管理',
'commands.description': '管理 Claude Code 命令 - 启用、禁用和按组织分组',
'commands.totalCommands': '总命令数',
'commands.enabledCommands': '已启用命令',
'commands.disabledCommands': '已禁用命令',
'commands.showDisabled': '显示已禁用',
'commands.hideDisabled': '隐藏已禁用',
'commands.noDescription': '无描述',
'commands.disabledAt': '禁用于',
'commands.enableConfirm': '启用命令 "{name}"',
'commands.disableConfirm': '禁用命令 "{name}"',
'commands.enableSuccess': '命令 "{name}" 已成功启用',
'commands.disableSuccess': '命令 "{name}" 已成功禁用',
'commands.toggleError': '切换命令状态失败',
'commands.enabled': '已启用',
'commands.disabled': '已禁用',
'commands.name': '名称',
'commands.description': '描述',
'commands.scope': '作用域',
'commands.status': '状态',
'commands.group.cli': 'CLI',
'commands.group.workflow': '工作流',
'commands.group.memory': '记忆',
'commands.group.task': '任务',
'commands.group.issue': '问题',
'commands.group.other': '其他',
'commands.enableAll': '全部启用',
'commands.disableAll': '全部禁用',
'commands.enableGroupConfirm': '启用 "{group}" 分组中的所有命令?',
'commands.disableGroupConfirm': '禁用 "{group}" 分组中的所有命令?',
'commands.enableGroupSuccess': '分组 "{group}" 已全部启用',
'commands.disableGroupSuccess': '分组 "{group}" 已全部禁用',
'commands.locationProject': '项目',
'commands.locationUser': '全局',
'commands.clickToEnableAll': '点击启用该分组所有命令',
'commands.clickToDisableAll': '点击禁用该分组所有命令',
// Rules
'title.rulesManager': '规则管理',
'rules.title': '规则管理',
'rules.description': '管理 Claude Code 的项目和用户规则',