원클릭으로
make-prompt
Creates or updates prompt templates for Raijin. Use when asked to create, add, write, or modify a prompt template.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Creates or updates prompt templates for Raijin. Use when asked to create, add, write, or modify a prompt template.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Creates or updates skills for Raijin
Creates or updates custom tools for Raijin. Use when asked to create, add, write, or modify a custom tool.
Commits git changes by appropriately breaking them into atomic units.
Interacts with any CLI/TUI application via TMUX.
SOC 직업 분류 기준
| name | make-prompt |
| description | Creates or updates prompt templates for Raijin. Use when asked to create, add, write, or modify a prompt template. |
| hide-from-llm | true |
A prompt template is a Markdown file with optional YAML frontmatter followed by the prompt body.
---
description: "Short sentence shown to the user when listing templates."
---
| Field | Required | Description |
|---|---|---|
description | no | Shown when listing templates. Falls back to first non-empty line of the body. |
The body is the prompt sent to the LLM when the template is invoked. It supports:
| Placeholder | Expands to |
|---|---|
$@ | All arguments passed after the template name |
$1, $2, … | Individual positional arguments |
{{PROJECT_PROMPTS_DIR}} | {{PROJECT_PROMPTS_DIR}} |
{{USER_PROMPTS_DIR}} | {{USER_PROMPTS_DIR}} |
\{{VAR}} | Literal {{VAR}} (escaped) |
---
description: Summarise a file
---
Summarise the file at `$1` in plain language. Focus on what it does, not how.
---
description: Review code for correctness and style
---
Review the code described below for correctness, style, and potential bugs.
Be concise. List issues as a numbered list, most critical first.
If there are no issues, say so explicitly.
Task: $@
| Scope | Path |
|---|---|
| Project | {{PROJECT_PROMPTS_DIR}}/<name>.md |
| User (global) | {{USER_PROMPTS_DIR}}/<name>.md |
The filename (without .md) becomes the template name used in /name invocation.
Project templates override user templates, which override built-in templates.
{{PROJECT_PROMPTS_DIR}}/ unless the user explicitly asks for a global template ({{USER_PROMPTS_DIR}}/).{{PROJECT_PROMPTS_DIR}}/<name>.md./<name> [args]).{{PROJECT_PROMPTS_DIR}}/, {{USER_PROMPTS_DIR}}/, then built-in embedded templates.<golden_rules>
$@ when the task varies per invocation. Omit it for fixed-purpose templates.
</golden_rules>