create_session
Spawn an interactive terminal session (REPL, shell, database client, SSH) and get a session ID for subsequent commands.
Instructions
Spawn an interactive terminal session (REPL, shell, database client, SSH, etc.). Returns a session_id for subsequent commands.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | The command to spawn (e.g., 'python3', 'bash', 'psql') | |
| args | No | Arguments to pass to the command | |
| name | No | Human-readable session name | |
| cwd | No | Working directory for the session | |
| env | No | Additional environment variables | |
| cols | No | Terminal width in columns | |
| rows | No | Terminal height in rows |