بنقرة واحدة
skill-with-tools
A test skill with multiple Python tool examples in frontmatter
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
A test skill with multiple Python tool examples in frontmatter
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
A test skill that declares allowed-tools as a YAML list
A test skill that declares allowed-tools as a space-separated string
A test skill with BOTH frontmatter mcp-servers AND a companion mcp.json (tests mcp.json precedence)
A test skill with MCP servers configured via companion mcp.json file
A test skill with both stdio and HTTP MCP server examples in frontmatter
A simple example skill that demonstrates the basic structure and functionality. Use when you need to show how skills work or test skill loading.
| 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"}] |
This skill demonstrates tools frontmatter configuration with multiple Python callable tools.
The import_path follows Python's standard import format:
package.module:function
package.submodule:function
module:ClassName
| 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 |
Use this skill when testing Python tool imports via SkillToolManager.import_tools().