ワンクリックで
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>