knowl_skill_create
Turn a requested reusable workflow into a file-backed, indexed skill by naming it, stating its purpose, and adding optional scripts, triggers, and entrypoints.
Instructions
Create and index a learned file-backed skill only when the user explicitly requested a reusable workflow to be codified.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Path-safe skill name using lowercase letters, numbers, underscores, and hyphens. | |
| files | No | Optional files to create inside the skill package, such as `run.ps1`, `run.js` or `run.sh`. Batch scripts (`.cmd`, `.bat`) are refused. | |
| purpose | Yes | One-sentence purpose for the skill. | |
| markdown | No | Content for `SKILL.md`. | |
| triggers | No | Optional trigger phrases for discovery. | |
| entrypoints | No | Entrypoints keyed by name, for example `default` or `fallback`. Each is either a script or a shell command, and each must opt in to being runnable. |