Filesystem Skills
You have access to safe filesystem operations.
Capabilities
- •Read File: Read the content of a specific file.
- •List Directory: List files and folders in a directory.
How to use
To use these skills, you must output a JSON object describing the action you want to take.
Read File
json
{
"tool": "filesystem",
"action": "read",
"params": {
"path": "/absolute/path/to/file.txt"
}
}
List Directory
json
{
"tool": "filesystem",
"action": "list",
"params": {
"path": "/absolute/path/to/directory"
}
}
Safety
- •Only read operations are allowed via this skill.
- •Paths must be absolute.