원클릭으로
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 직업 분류 기준
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