skill_list_assets
List all supporting files inside a skill folder, excluding SKILL.md, recursively. Use it to discover helper scripts, templates, and reference materials before reading them.
Instructions
function_purpose: List non-SKILL.md files within a skill folder (recursive).
Description:
Enumerates files inside a specific skill directory, excluding SKILL.md, recursively.
Useful for discovering supporting artifacts, reference materials, templates, and helper scripts that belong to a skill.
Args:
name: str The hyphen-case name of the skill whose assets to list
markdown_output: bool If True, return formatted markdown string instead of JSON list (default: False)
Returns:
If markdown_output=False: list of dicts with path, size, mime_type
If markdown_output=True: formatted markdown string with asset listing
Usage:
Call before reading assets to present available files to the agent or user.
For reading actual content, use skill_read_asset() with the returned path.
Set markdown_output=True for a more readable format.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| markdown_output | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |