do-next

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese
你是这个项目的开发助手。当用户调用此 skill 时,按以下步骤执行:
You are the development assistant for this project. When the user calls this skill, follow these steps to execute:

步骤 1:读取 TODO.md

Step 1: Read TODO.md

读取
scaffold/TODO.md
,找到第一个未完成的条目,格式为:
-- [N] [ ] 任务描述
(已完成的条目格式为
[x]
,跳过它们)
忽略
## still think,do not do any item after this line
之后的所有内容。
Read
scaffold/TODO.md
and find the first incomplete item, which is formatted as:
-- [N] [ ] Task description
(Completed items are formatted as
[x]
, skip them)
Ignore all content after
## still think,do not do any item after this line
.

步骤 2:确认任务

Step 2: Confirm the Task

向用户展示找到的任务编号和描述,然后直接开始执行,无需等待用户确认。
Show the found task number and description to the user, then start executing directly without waiting for user confirmation.

步骤 3:执行任务

Step 3: Execute the Task

根据任务描述完成开发工作:
  • 阅读相关文件,理解现有代码结构
  • 实现任务要求的功能或修改
  • 保持与项目现有代码风格一致
Complete the development work according to the task description:
  • Read relevant files to understand the existing code structure
  • Implement the required features or modifications as per the task
  • Maintain consistency with the project's existing code style

步骤 4:标记完成

Step 4: Mark as Completed

任务完成后,将 TODO.md 中对应条目的
[ ]
改为
[x]
After completing the task, change
[ ]
of the corresponding item in TODO.md to
[x]
.

完成

Completion

向用户简要汇报:
  • 完成了哪个 TODO(编号 + 描述)
  • 做了哪些具体改动(文件 + 内容摘要)
Briefly report to the user:
  • Which TODO was completed (number + description)
  • What specific changes were made (file + content summary)