Start Interactive Session
fc_start_sessionLaunch an interactive process session such as a REPL, and obtain a session ID to send commands and read output.
Instructions
Starts an interactive process as a session (for fc_read_output and fc_send_input).
Args:
command (string): Command/Program
args (array, optional): Arguments
cwd (string, optional): Working directory
Returns:
Session ID for further interaction
Examples:
Python REPL: command="python"
Node REPL: command="node"
PowerShell: command="powershell"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Working directory | |
| args | No | Arguments | |
| command | Yes | Command/Program |