mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
feat: Enhance role functionality and task management across coordinator, explorer, implementer, planner, reviewer, and workflow phases
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user