mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-14 17:41:22 +08:00
feat: Add role specifications for 三省六部 architecture
- Introduced role specifications for 尚书省 (shangshu), 刑部 (xingbu), and 中书省 (zhongshu) to facilitate task management and execution flow. - Implemented quality gates for each phase of the process to ensure compliance and quality assurance. - Established a coordinator role to manage the overall workflow and task distribution among the departments. - Created a team configuration file to define roles, responsibilities, and routing rules for task execution. - Added localization support for DeepWiki in both English and Chinese, enhancing accessibility for users.
This commit is contained in:
47
ccw/frontend/src/locales/en/deepwiki.json
Normal file
47
ccw/frontend/src/locales/en/deepwiki.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"title": "DeepWiki",
|
||||
"description": "Code documentation with deep-linking to source symbols",
|
||||
"tabs": {
|
||||
"documents": "Documents",
|
||||
"index": "Symbol Index",
|
||||
"stats": "Statistics"
|
||||
},
|
||||
"files": {
|
||||
"title": "Documented Files",
|
||||
"search": "Search files...",
|
||||
"noResults": "No files match your search",
|
||||
"empty": "No documented files yet"
|
||||
},
|
||||
"viewer": {
|
||||
"toc": "Symbols",
|
||||
"empty": {
|
||||
"title": "Select a File",
|
||||
"message": "Choose a file from the list to view its documentation"
|
||||
},
|
||||
"error": {
|
||||
"title": "Error Loading Document"
|
||||
},
|
||||
"copyLink": "Copy deep link to {name}",
|
||||
"linkCopied": "Link copied"
|
||||
},
|
||||
"index": {
|
||||
"search": "Search symbols...",
|
||||
"noResults": "No symbols found",
|
||||
"placeholder": "Enter a search query to find symbols"
|
||||
},
|
||||
"stats": {
|
||||
"available": "Database Connected",
|
||||
"unavailable": "Database Not Available",
|
||||
"files": "Files",
|
||||
"symbols": "Symbols",
|
||||
"docs": "Documents",
|
||||
"needingDocs": "Need Docs",
|
||||
"howTo": {
|
||||
"title": "Documentation Index",
|
||||
"description": "DeepWiki automatically indexes symbols and documentation from code. Currently in read-only mode."
|
||||
}
|
||||
},
|
||||
"actions": {
|
||||
"refresh": "Refresh"
|
||||
}
|
||||
}
|
||||
@@ -43,6 +43,7 @@ import terminalDashboard from './terminal-dashboard.json';
|
||||
import skillHub from './skill-hub.json';
|
||||
import nativeSession from './native-session.json';
|
||||
import specs from './specs.json';
|
||||
import deepwiki from './deepwiki.json';
|
||||
|
||||
/**
|
||||
* Flattens nested JSON object to dot-separated keys
|
||||
@@ -109,4 +110,5 @@ export default {
|
||||
...flattenMessages(skillHub, 'skillHub'),
|
||||
...flattenMessages(nativeSession, 'nativeSession'),
|
||||
...flattenMessages(specs, 'specs'),
|
||||
...flattenMessages(deepwiki, 'deepwiki'),
|
||||
} as Record<string, string>;
|
||||
|
||||
@@ -102,7 +102,8 @@
|
||||
"toolbar": {
|
||||
"a2ui": {
|
||||
"button": "A2UI",
|
||||
"quickAction": "A2UI Quick Action"
|
||||
"quickAction": "A2UI Quick Action",
|
||||
"unavailable": "No A2UI action available"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user