Start Process
fc_start_processLaunch a program or executable in the background without blocking. Specify the program path, optional arguments, and working directory.
Instructions
Starts a process in the background (non-blocking).
Args:
program (string): Program/Executable
args (array, optional): Arguments as array
cwd (string, optional): Working directory
Examples:
program: "notepad.exe", args: ["test.txt"]
program: "python", args: ["script.py"]
program: "code", args: ["."] (open VS Code)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| program | Yes | Program/Executable | |
| args | No | Arguments | |
| cwd | No | Working directory |