بنقرة واحدة
using-process-tool
Describes how to correctly use 'process' tool
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Describes how to correctly use 'process' tool
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Generates a personalized greeting by running a Python script and reversing the word order of its output. Use when a new conversation starts, the user says hello or hi, or a welcome message is needed.
Validates skill loading by providing a minimal skill with reference files for testing the FileSystemSkillLoader. Use when verifying that the skill loader correctly parses frontmatter, filters empty references, and loads non-empty resource files.
استنادا إلى تصنيف SOC المهني
| name | using-process-tool |
| description | Describes how to correctly use 'process' tool |
When user asks you to use the 'process' tool, follow this two-step sequence:
First, call the 'generate' tool with 2 arguments:
arg0 — surname (e.g., "Smith")arg1 — name (e.g., "John")The 'generate' tool returns an id you will need in the next step.
Once you have the id, call the 'process' tool with 3 arguments:
arg0 — name (e.g., "John")arg1 — id (the value returned by 'generate')arg2 — surname (e.g., "Smith")generate(arg0="Smith", arg1="John") → id: "abc123"
process(arg0="John", arg1="abc123", arg2="Smith") → code: 17