name: read_skill_artifact emoji: "📂" description: Lazily read a file from a skill's Virtual File System (SKILL.md, scripts/, artifacts/). Use this to load skill instructions or scripts on demand without polluting the system context. skill_type: local is_enabled: true features:
skill_name: type: string description: The unique name of the skill whose file to read (e.g. 'browser_automation_agent'). file_path: type: string description: "The relative path of the file to read within the skill folder (e.g. 'SKILL.md', 'scripts/run.py', 'artifacts/data.json'). Defaults to 'SKILL.md'."required:
Use this tool to lazily load instructions, scripts, or reference data from a skill's virtual folder. This avoids polluting the initial system prompt with megabytes of context that might never be needed.
When to use:
scripts/ folder before executing it.artifacts/ for a task.Workflow:
read_skill_artifact with the skill_name and file_path.