create-window
Create a new named window within a specified tmux session to organize and manage terminal tasks efficiently.
Instructions
Create a new window in a tmux session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name for the new window | |
sessionId | Yes | ID of the tmux session |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name for the new window",
"type": "string"
},
"sessionId": {
"description": "ID of the tmux session",
"type": "string"
}
},
"required": [
"sessionId",
"name"
],
"type": "object"
}