Start Issue Workflow
Procedure
- •
If no issue number provided, list open issues:
codemcp__github__list_issues(owner: "intellidoctor", repo: "medgemma-triage", state: "open")
Present available issues and ask which one to work on.
- •
Read the issue to understand the full task:
codemcp__github__get_issue(owner: "intellidoctor", repo: "medgemma-triage", issue_number: N)
Display the issue title and body.
- •
Assign the issue if unassigned:
codemcp__github__update_issue(owner: "intellidoctor", repo: "medgemma-triage", issue_number: N, assignees: ["username"])
- •
Create the feature branch from
main:bashgit fetch origin git checkout -b feat/N-short-description origin/main
Derive
short-descriptionfrom issue title: lowercase, hyphens, max 4 words. Example: Issue #3 "Image analysis agent" →feat/3-image-analysis-agent - •
Worktree — ask if doing parallel work:
- •Yes:
git worktree add ../worktree-issue-N feat/N-short-description - •No: continue in current directory
- •Yes:
- •
Confirm — print summary:
codeReady to work on Issue #N: <title> Branch: feat/N-short-description
Then begin working on the task.