fluffos_validate
Validate LPC code files by checking for compilation errors using the FluffOS driver's symbol tool to ensure code correctness before deployment.
Instructions
Validate an LPC file using the FluffOS driver's symbol tool. Returns success/failure and any compilation errors.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Absolute path to the LPC file to validate |
Input Schema (JSON Schema)
{
"properties": {
"file": {
"description": "Absolute path to the LPC file to validate",
"type": "string"
}
},
"required": [
"file"
],
"type": "object"
}