with one click
using-process-tool
Describes how to correctly use 'process' tool
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Describes how to correctly use 'process' tool
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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.
| 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