一键导入
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