원클릭으로
review-list
List and filter review notes from Obsidian vault by status, priority, and project. Shows merge readiness.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
List and filter review notes from Obsidian vault by status, priority, and project. Shows merge readiness.
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-list |
| description | List and filter review notes from Obsidian vault by status, priority, and project. Shows merge readiness. |
| model | sonnet |
| allowedTools | ["Read"] |
Search and display review notes with filtering and merge-readiness analysis.
/review-listVAULT_DIR="$HOME/repo/github.com/Takayyz/obsidian-vaults/vaults"
Glob all .md files in $VAULT_DIR/reviews/. Exclude Reviews.md (dashboard).
Extract from each file:
project, pr_url, priority, status, blocked_by, created, dueFilter based on arguments:
| Argument | Behavior |
|---|---|
| (none) | Show status: open and status: in-progress |
--all | Show all including status: done |
--project=ID | Filter by project |
--priority=LEVEL | Filter by priority |
Sort by priority (high then medium then low), then by created date within same priority. Assign a global sequential index (starting from 1).
Table columns: #, Priority, Note, Project, PR, Due, Blocked By, Mergeable
[note-name](reviews/note-name.md) (relative path)[PR#number](url) (extract number from URL path)/review-update (e.g., /review-update 1)Merge readiness logic:
blocked_by is empty: "ready"blocked_by targets have status: done: "ready"Print a concise summary line:
Summary: open 3 / in-progress 1 / mergeable 2 / HIGH priority 1
[PR#number](url) for readability.