Skip to main content

任务管理

设置

启用任务管理功能:

设置工作流规则

在项目根目录 .codesouler/rules 下新增一个规则 dev_workflow.md

## Task-Driven Development Workflow Process

- Begin coding sessions with `list_tasks` to see current tasks, status, and IDs
- Determine the next task to work on using `next_task`.
- Select tasks based on dependencies (all marked 'done'), priority level, and ID order
- Clarify tasks by checking task files in tasks/ directory or asking for user input
- Implement code following task details, dependencies, and project standards
- Verify tasks according to test strategies before marking as complete
- Mark completed tasks with `set_task_status`
- Respect dependency chains and task priorities when selecting work
- Report progress regularly using `list_tasks`

任务分解

打开需求文档(例如 prd.txt),进入Agent模式进行任务分解:

任务处理