start_coding_session
Initiate a new coding session with change tracking, enabling focused development on a specified Git branch and task description.
Instructions
Start a new coding session for change tracking
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | Git branch for this session | |
description | Yes | Description of what will be worked on |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"description": "Git branch for this session",
"type": "string"
},
"description": {
"description": "Description of what will be worked on",
"type": "string"
}
},
"required": [
"description"
],
"type": "object"
}