ワンクリックで
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 ページを確認してインストールできます。
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
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.