You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR enhances the `skills-generate` command to allow it generate
skills that relies on npx for tool invocation, without the need of
having a toolbox binary.
More specifically, a new --invocation-mode flag (defaulting to npx,
with support for binary) and a --toolbox-version flag to pin the
@toolbox-sdk/server package version (defaulting to the current numerical
version in version.txt).
-`--output-dir`: (Optional) Directory to output generated skills (default: "skills").
40
40
-`--license-header`: (Optional) Optional license header to prepend to generated node scripts.
41
41
-`--additional-notes`: (Optional) Additional notes to add under the Usage section of the generated SKILL.md.
42
+
-`--invocation-mode`: (Optional) Invocation mode for the generated scripts: 'binary' or 'npx' (default: "npx").
43
+
-`--toolbox-version`: (Optional) Version of @toolbox-sdk/server to use for npx approach (defaults to current toolbox version).
42
44
43
45
{{< notice note >}}
44
46
**Note:** The `<skill-name>` must follow the Agent Skill [naming convention](https://agentskills.io/specification): it must contain only lowercase alphanumeric characters and hyphens, cannot start or end with a hyphen, and cannot contain consecutive hyphens (e.g., `my-skill`, `data-processing`).
0 commit comments