ccjk 9.3.11 → 9.3.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- const version = "9.3.11";
1
+ const version = "9.3.13";
2
2
  const homepage = "https://github.com/miounet11/ccjk";
3
3
 
4
4
  export { homepage, version };
@@ -0,0 +1,92 @@
1
+ {
2
+ "memory": {
3
+ "title": "Memory Management",
4
+ "subtitle": "Cross-Session AI Memory System",
5
+ "menu": {
6
+ "list": "📋 List all memories",
7
+ "search": "🔍 Search memories",
8
+ "add": "➕ Add memory",
9
+ "delete": "🗑️ Delete memory",
10
+ "stats": "📊 View statistics",
11
+ "export": "📤 Export memories",
12
+ "import": "📥 Import memories",
13
+ "clear": "🗑️ Clear memories",
14
+ "back": "🔙 Back"
15
+ },
16
+ "prompts": {
17
+ "selectAction": "Select action:",
18
+ "searchQuery": "Enter search query:",
19
+ "memoryContent": "Memory content:",
20
+ "memoryType": "Type:",
21
+ "importance": "Importance:",
22
+ "scope": "Scope:",
23
+ "tags": "Tags (comma-separated):",
24
+ "project": "Project name (optional):",
25
+ "deleteId": "Enter memory ID to delete:",
26
+ "confirmDelete": "Confirm deletion?",
27
+ "exportFile": "Export filename:",
28
+ "importFile": "Import filename:",
29
+ "mergeMemories": "Merge with existing memories?",
30
+ "confirmClear": "Confirm clearing all memories? This cannot be undone!"
31
+ },
32
+ "types": {
33
+ "decision": "Decision",
34
+ "pattern": "Pattern",
35
+ "preference": "Preference",
36
+ "context": "Context",
37
+ "learning": "Learning",
38
+ "error": "Error",
39
+ "workflow": "Workflow"
40
+ },
41
+ "importance": {
42
+ "critical": "Critical",
43
+ "high": "High",
44
+ "medium": "Medium",
45
+ "low": "Low"
46
+ },
47
+ "scope": {
48
+ "global": "Global",
49
+ "project": "Project",
50
+ "session": "Session"
51
+ },
52
+ "messages": {
53
+ "noMemories": "No memories found",
54
+ "noMatches": "No matching memories found",
55
+ "memoryAdded": "Memory added",
56
+ "memoryDeleted": "Memory deleted",
57
+ "memoryNotFound": "Memory not found",
58
+ "aboutToDelete": "About to delete:",
59
+ "exported": "Memories exported to",
60
+ "imported": "Memories imported",
61
+ "importFailed": "Import failed",
62
+ "cleared": "All memories cleared",
63
+ "cancelled": "Operation cancelled",
64
+ "searchCancelled": "Search cancelled",
65
+ "deleteCancelled": "Deletion cancelled",
66
+ "exportCancelled": "Export cancelled",
67
+ "importCancelled": "Import cancelled",
68
+ "contentRequired": "Content cannot be empty",
69
+ "unknownAction": "Unknown action"
70
+ },
71
+ "stats": {
72
+ "title": "Memory Statistics",
73
+ "total": "Total",
74
+ "archived": "Archived",
75
+ "storageSize": "Storage size",
76
+ "byType": "By Type",
77
+ "byScope": "By Scope",
78
+ "byImportance": "By Importance"
79
+ },
80
+ "display": {
81
+ "memoryList": "Memory List",
82
+ "searchResults": "Search Results",
83
+ "relevant": "relevant",
84
+ "moreMemories": "and",
85
+ "memories": "more memories",
86
+ "exported": "Exported",
87
+ "imported": "Imported",
88
+ "accessCount": "Access count",
89
+ "lastAccessed": "Last accessed"
90
+ }
91
+ }
92
+ }
@@ -0,0 +1,92 @@
1
+ {
2
+ "memory": {
3
+ "title": "记忆管理",
4
+ "subtitle": "跨会话 AI 记忆系统",
5
+ "menu": {
6
+ "list": "📋 列出所有记忆",
7
+ "search": "🔍 搜索记忆",
8
+ "add": "➕ 添加记忆",
9
+ "delete": "🗑️ 删除记忆",
10
+ "stats": "📊 查看统计",
11
+ "export": "📤 导出记忆",
12
+ "import": "📥 导入记忆",
13
+ "clear": "🗑️ 清空记忆",
14
+ "back": "🔙 返回"
15
+ },
16
+ "prompts": {
17
+ "selectAction": "选择操作:",
18
+ "searchQuery": "输入搜索关键词:",
19
+ "memoryContent": "记忆内容:",
20
+ "memoryType": "类型:",
21
+ "importance": "重要性:",
22
+ "scope": "作用域:",
23
+ "tags": "标签 (逗号分隔):",
24
+ "project": "项目名称 (可选):",
25
+ "deleteId": "输入要删除的记忆ID:",
26
+ "confirmDelete": "确认删除?",
27
+ "exportFile": "导出文件名:",
28
+ "importFile": "导入文件名:",
29
+ "mergeMemories": "合并到现有记忆?",
30
+ "confirmClear": "确认清空所有记忆? 此操作不可撤销!"
31
+ },
32
+ "types": {
33
+ "decision": "决策",
34
+ "pattern": "模式",
35
+ "preference": "偏好",
36
+ "context": "上下文",
37
+ "learning": "学习",
38
+ "error": "错误",
39
+ "workflow": "工作流"
40
+ },
41
+ "importance": {
42
+ "critical": "关键",
43
+ "high": "高",
44
+ "medium": "中",
45
+ "low": "低"
46
+ },
47
+ "scope": {
48
+ "global": "全局",
49
+ "project": "项目",
50
+ "session": "会话"
51
+ },
52
+ "messages": {
53
+ "noMemories": "没有找到记忆",
54
+ "noMatches": "没有找到匹配的记忆",
55
+ "memoryAdded": "记忆已添加",
56
+ "memoryDeleted": "记忆已删除",
57
+ "memoryNotFound": "记忆未找到",
58
+ "aboutToDelete": "将要删除:",
59
+ "exported": "记忆已导出到",
60
+ "imported": "记忆已导入",
61
+ "importFailed": "导入失败",
62
+ "cleared": "所有记忆已清空",
63
+ "cancelled": "操作已取消",
64
+ "searchCancelled": "搜索已取消",
65
+ "deleteCancelled": "删除已取消",
66
+ "exportCancelled": "导出已取消",
67
+ "importCancelled": "导入已取消",
68
+ "contentRequired": "内容不能为空",
69
+ "unknownAction": "未知操作"
70
+ },
71
+ "stats": {
72
+ "title": "记忆统计",
73
+ "total": "总计",
74
+ "archived": "已归档",
75
+ "storageSize": "存储大小",
76
+ "byType": "按类型",
77
+ "byScope": "按作用域",
78
+ "byImportance": "按重要性"
79
+ },
80
+ "display": {
81
+ "memoryList": "记忆列表",
82
+ "searchResults": "搜索结果",
83
+ "relevant": "相关",
84
+ "moreMemories": "还有",
85
+ "memories": "条记忆",
86
+ "exported": "导出了",
87
+ "imported": "导入了",
88
+ "accessCount": "访问次数",
89
+ "lastAccessed": "最后访问"
90
+ }
91
+ }
92
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ccjk",
3
3
  "type": "module",
4
- "version": "9.3.11",
4
+ "version": "9.3.13",
5
5
  "packageManager": "pnpm@10.17.1",
6
6
  "description": "CCJK v9.0.0 - Revolutionary AI Development Platform with Enterprise Security, Streaming Cloud Sync, CRDT Conflict Resolution, and Unified V3 Architecture",
7
7
  "author": {