onyx_pkg_build
Generate an Onyx package by specifying a directory and timeout, streamlining package creation for Onyx programming projects.
Instructions
Build an Onyx package using "onyx pkg build" in a specified directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory | No | Directory containing the Onyx package (defaults to current working directory) | . |
timeout | No | Build timeout in seconds |
Input Schema (JSON Schema)
{
"properties": {
"directory": {
"default": ".",
"description": "Directory containing the Onyx package (defaults to current working directory)",
"type": "string"
},
"timeout": {
"default": 60,
"description": "Build timeout in seconds",
"type": "number"
}
},
"type": "object"
}