| name | skill-with-tools |
| description | A test skill with multiple Python tool examples in frontmatter |
| tools | [{"type":"python","import_path":"json:loads"},{"type":"python","import_path":"os.path:join"},{"type":"python","import_path":"os:getcwd"},{"type":"python","import_path":"datetime:datetime"}] |
Skill with Tools
This skill demonstrates tools frontmatter configuration with multiple Python callable tools.
Format
The import_path follows Python's standard import format:
package.module:function
package.submodule:function
module:ClassName
Tools
| Import Path | Description |
|---|
json:loads | Parse JSON string to dict |
os.path:join | Join path components |
os:getcwd | Get current working directory |
datetime:datetime | Create datetime instances |
Usage
Use this skill when testing Python tool imports via SkillToolManager.import_tools().