skill_store_note
Append a new note to a skill to record learnings, corrections, and example scripts. Safely stores additive notes without editing existing files, enabling iterative refinement of skill documentation.
Instructions
function_purpose: Append a new note to a skill capturing learnings, improvements, and scripts.
Description:
Safely stores additive notes related to a skill (no edits to existing files). Use this to record observations, corrections, suggested improvements, and example scripts discovered while using the skill.
Encourages iterative refinement: if documentation turns out inaccurate or incomplete, add a note that clarifies, extends, or proposes better approaches. Over time, these notes can guide maintainers to improve the canonical SKILL.md.
Constraints:
Additions only. This tool never edits existing files; it only creates new note files.
Notes are stored under a dedicated '_notes' directory within the skill folder.
Args:
name: str The hyphen-case skill name (must match skill directory)
title: str A short, descriptive title for the note
content: str The body of the note (Markdown supported)
Returns:
dict[str, Any] with:
path: str Relative path to the created note within the skill directory
created: bool True on success
message: str Status message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| title | Yes | ||
| content | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||