ワンクリックで
review-create
Create a new code review note in Obsidian vault with project selection, priority, and dependency tracking.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create a new code review note in Obsidian vault with project selection, priority, and dependency tracking.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate PR description and automatically create pull request on GitHub
Helps discover, evaluate, and install agent skills using the `gh skill` command (GitHub CLI). Use when the user asks "is there a skill for X", "find a skill that does Y", "how do I do X" where X might already exist as a skill, or expresses interest in extending agent capabilities.
Prepare topics for the next 1on1 session based on past logs and pending items.
Create a new 1on1 session note in Obsidian vault with person selection.
Summarize recent 1on1 sessions for a specific person from Obsidian vault.
Creates git commits with well-formatted messages. Checks for .gitmessage template in project root and follows its format, otherwise uses conventional commits. Analyzes existing commit history to match tone and style.
| name | review-create |
| description | Create a new code review note in Obsidian vault with project selection, priority, and dependency tracking. |
| allowedTools | ["Read"] |
Interactively create a review management note.
/review-createVAULT_DIR="$HOME/repo/github.com/Takayyz/obsidian-vaults/vaults"
Read $VAULT_DIR/_config/projects.yml and parse the project entries.
Ask the user for the following (skip items already provided as arguments):
project (required): Present projects.yml entries as a numbered list
Select project:
1. my-project - example project
Enter number:
PR URL (required): GitHub PR URL
slug (required): Short identifier for the filename
fix-auth-flow, add-user-apipriority (optional): high / medium / low
mediumdue (optional): Deadline in YYYY-MM-DD format
blocked_by (optional): Dependent review notes
File path: $VAULT_DIR/reviews/YYYY-MM-DD-{slug}.md
Use $VAULT_DIR/_templates/review-template.md as base:
{{date}} with today's dateblocked_by is set, add Markdown links under the ## Dependencies section
[note-name](note-name.md) (relative path within reviews/)Example frontmatter:
---
type: review
project: my-project
pr_url: "https://github.com/org/repo/pull/42"
priority: high
status: open
blocked_by:
- "2026-03-10-fix-auth"
created: "2026-03-11"
due: "2026-03-13"
---
Append the new review entry to the appropriate status section in $VAULT_DIR/reviews/Reviews.md.
### Open (since newly created reviews are always open)- [YYYY-MM-DD-slug](YYYY-MM-DD-slug.md) | **{priority}** | due: {due} | {project}
due: part if no due date is set<!-- ClaudeCodeが自動更新 --> comment lineAppend a Markdown link to the ## Review section of today's daily note.
Format: [YYYY-MM-DD-slug](../reviews/YYYY-MM-DD-slug.md) (relative path from daily/)
If the daily note does not exist, create it from the template first.
Display the created note contents.