feat: Enhance role functionality and task management across coordinator, explorer, implementer, planner, reviewer, and workflow phases

This commit is contained in:
catlog22
2026-02-15 13:57:00 +08:00
parent 80b7dfc817
commit 8985894c22
9 changed files with 68 additions and 21 deletions

View File

@@ -72,6 +72,9 @@ TaskUpdate({ taskId: task.id, status: 'in_progress' })
### Phase 2: Issue Loading & Context Setup
```javascript
// Resolve project root from working directory
const projectRoot = Bash('pwd').trim()
// Extract issue ID from task description
const issueIdMatch = task.description.match(/(?:GH-\d+|ISS-\d{8}-\d{6})/)
const issueId = issueIdMatch ? issueIdMatch[0] : null