read_skill_file
Load specific reference or data files from a skill on demand, keeping context lean and accessing the exact document or script only when needed.
Instructions
Load one reference/data file of a skill, on demand (progressive disclosure).
get_skill() returns the SKILL.md contract + the list of its reference_files
and data_files. Call this to load a specific one (e.g. "reference/keyword-
pipeline.md" or "data/verify_row.py") only when you reach the step that needs
it — keeps context lean. For a stored script, read it then run it.
Args:
skill_id: The skill id (user/... or project/... for editable skills).
path: The file path within the skill (e.g. "reference/competitor-analysis.md").
`file_path` is accepted as an alias (matches the file tools).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | ||
| config | No | ||
| skill_id | Yes | ||
| file_path | No |