@yeaft/webchat-agent 0.0.231 → 0.0.233
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.
- package/crew-i18n.js +46 -0
- package/package.json +1 -1
package/crew-i18n.js
CHANGED
|
@@ -95,8 +95,17 @@ ${isDevTeam ? '3' : '2'}. **任务完成** - 所有任务已完成,给出完
|
|
|
95
95
|
系统还维护以下文件(自动更新,无需手动管理):
|
|
96
96
|
- \`context/features/index.md\`:所有 feature 的索引(进行中/已完成分类),快速查看项目状态
|
|
97
97
|
- \`context/changelog.md\`:已完成任务的变更记录,每个任务完成时自动追加摘要
|
|
98
|
+
- \`context/kanban.md\`:工作看板,记录每个 feature 的负责人、当前状态和最新进展
|
|
99
|
+
你收到的消息中还会包含 <kanban> 标签,里面是工作看板的实时快照。
|
|
98
100
|
你不需要手动创建或更新这些文件,专注于你的本职工作即可。`,
|
|
99
101
|
|
|
102
|
+
contextRestartTitle: '# Context 超限自动重启',
|
|
103
|
+
contextRestartContent: `当你的对话 context 使用率超过 85% 时,系统会自动保存你的工作进展到 feature 文件,然后清空对话重新开始。
|
|
104
|
+
重启后你会收到:
|
|
105
|
+
- <task-context> 标签:你之前的工作记录(包括自动保存的进展摘要)
|
|
106
|
+
- <kanban> 标签:当前工作看板(所有任务的负责人、状态、最新进展)
|
|
107
|
+
请根据这些上下文继续你的工作,不需要从头开始。`,
|
|
108
|
+
|
|
100
109
|
devGroupBinding: '# 开发组绑定',
|
|
101
110
|
devGroupBindingContent: (gi, revLabel, revName, testLabel, testName) =>
|
|
102
111
|
`你属于开发组 ${gi}。你的搭档:
|
|
@@ -144,6 +153,7 @@ ${isDevTeam ? '3' : '2'}. **任务完成** - 所有任务已完成,给出完
|
|
|
144
153
|
- PM 通过 ROUTE 分配任务(带 task + taskTitle 字段)时自动创建
|
|
145
154
|
- 每次角色 ROUTE 传递时自动追加工作记录
|
|
146
155
|
- 角色收到消息时自动注入对应 task 文件内容作为上下文
|
|
156
|
+
- \`context/kanban.md\`:工作看板,记录所有任务的负责人、状态和最新进展
|
|
147
157
|
角色不需要手动创建或更新这些文件。`,
|
|
148
158
|
sharedMemoryTitle: '# 共享记忆',
|
|
149
159
|
sharedMemoryDefault: '_团队共同维护,记录重要的共识、决策和信息。_',
|
|
@@ -177,6 +187,19 @@ ${isDevTeam ? '3' : '2'}. **任务完成** - 所有任务已完成,给出完
|
|
|
177
187
|
completedAt: '完成时间',
|
|
178
188
|
summaryLabel: '摘要',
|
|
179
189
|
noSummary: '(无详细摘要)',
|
|
190
|
+
|
|
191
|
+
// kanban
|
|
192
|
+
kanbanTitle: '# 工作看板',
|
|
193
|
+
kanbanActive: '进行中',
|
|
194
|
+
kanbanCompleted: '已完成',
|
|
195
|
+
kanbanColAssignee: '负责人',
|
|
196
|
+
kanbanColStatus: '状态',
|
|
197
|
+
kanbanColSummary: '最新进展',
|
|
198
|
+
kanbanStatusDev: '🔨 开发中',
|
|
199
|
+
kanbanStatusReview: '📝 审查中',
|
|
200
|
+
kanbanStatusTest: '🧪 测试中',
|
|
201
|
+
kanbanStatusDecision: '⏳ 待决策',
|
|
202
|
+
kanbanAutoSave: '自动保存 - context 超限前',
|
|
180
203
|
},
|
|
181
204
|
|
|
182
205
|
'en': {
|
|
@@ -268,8 +291,17 @@ Important: Do not loop endlessly between roles. When work is substantively compl
|
|
|
268
291
|
The system also maintains these files (auto-updated, no manual management needed):
|
|
269
292
|
- \`context/features/index.md\`: Index of all features (categorized as in-progress/completed) for quick project status overview
|
|
270
293
|
- \`context/changelog.md\`: Change log of completed tasks, with summary appended when each task completes
|
|
294
|
+
- \`context/kanban.md\`: Work kanban board recording each feature's assignee, current status, and latest progress
|
|
295
|
+
Your received messages will also include <kanban> tags with a real-time snapshot of the work kanban.
|
|
271
296
|
You don't need to manually create or update these files — focus on your core work.`,
|
|
272
297
|
|
|
298
|
+
contextRestartTitle: '# Context Limit Auto-Restart',
|
|
299
|
+
contextRestartContent: `When your conversation context usage exceeds 85%, the system will automatically save your work progress to the feature file, then clear the conversation and restart.
|
|
300
|
+
After restart you will receive:
|
|
301
|
+
- <task-context> tag: Your previous work records (including auto-saved progress summary)
|
|
302
|
+
- <kanban> tag: Current work kanban (all tasks' assignees, statuses, latest progress)
|
|
303
|
+
Please continue your work based on this context — no need to start from scratch.`,
|
|
304
|
+
|
|
273
305
|
devGroupBinding: '# Dev Group Binding',
|
|
274
306
|
devGroupBindingContent: (gi, revLabel, revName, testLabel, testName) =>
|
|
275
307
|
`You belong to dev group ${gi}. Your partners:
|
|
@@ -317,6 +349,7 @@ The system automatically manages \`context/features/{task-id}.md\` work record f
|
|
|
317
349
|
- Automatically created when PM assigns tasks via ROUTE (with task + taskTitle fields)
|
|
318
350
|
- Work records are appended on each role ROUTE handoff
|
|
319
351
|
- Task file content is auto-injected as context when a role receives a message
|
|
352
|
+
- \`context/kanban.md\`: Work kanban board recording all tasks' assignees, statuses, and latest progress
|
|
320
353
|
Roles don't need to manually create or update these files.`,
|
|
321
354
|
sharedMemoryTitle: '# Shared Memory',
|
|
322
355
|
sharedMemoryDefault: '_Team-maintained shared knowledge, decisions, and information._',
|
|
@@ -350,6 +383,19 @@ Roles don't need to manually create or update these files.`,
|
|
|
350
383
|
completedAt: 'Completed',
|
|
351
384
|
summaryLabel: 'Summary',
|
|
352
385
|
noSummary: '(No detailed summary)',
|
|
386
|
+
|
|
387
|
+
// kanban
|
|
388
|
+
kanbanTitle: '# Work Kanban',
|
|
389
|
+
kanbanActive: 'In Progress',
|
|
390
|
+
kanbanCompleted: 'Completed',
|
|
391
|
+
kanbanColAssignee: 'Assignee',
|
|
392
|
+
kanbanColStatus: 'Status',
|
|
393
|
+
kanbanColSummary: 'Latest Progress',
|
|
394
|
+
kanbanStatusDev: '🔨 Developing',
|
|
395
|
+
kanbanStatusReview: '📝 Reviewing',
|
|
396
|
+
kanbanStatusTest: '🧪 Testing',
|
|
397
|
+
kanbanStatusDecision: '⏳ Pending Decision',
|
|
398
|
+
kanbanAutoSave: 'Auto-save — before context limit',
|
|
353
399
|
}
|
|
354
400
|
};
|
|
355
401
|
|