skill_list_notes
List notes in a skill's _notes directory to access learnings, improvements, and scripts. Browse available notes and pick one to read with skill_read_asset.
Instructions
function_purpose: List notes created under a skill's _notes directory.
Description:
Enumerates note files stored under a skill's '_notes' and 'notes' directories. Notes are additive records of learnings, improvements, and scripts created via store_skill_note() or manually, intended to refine or clarify skills over time without editing existing files.
Args:
name: str The hyphen-case skill name (must match the skill directory)
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, title, created_at, kind
If markdown_output=True: formatted markdown string with note listing
Usage:
Use this to browse available notes and select one to read with skill_read_asset().
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 |