How this skill is triggered — by the user, by Claude, or both
Slash command
/odeshi:show-backlogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Display a concise, read-only summary of the current backlog. This command does not modify the backlog, transition tickets, or start work — it is a visibility surface only.
Display a concise, read-only summary of the current backlog. This command does not modify the backlog, transition tickets, or start work — it is a visibility surface only.
Cross-reference:
/run-taskfor the full task lifecycle that consumes the backlog. Cross-reference:.claude/CLAUDE.mdfor project-specific backlog conventions.
Run odeshi-helper issue-tracker-check in bash. Parse the result:
exit code != 0 -> BACKLOG.md mode
exit code == 0, project == null -> BACKLOG.md mode
exit code == 0, project == "KEY" -> issue tracker mode with KEY
Decision tree:
issue-tracker-check fails (non-zero exit) → BACKLOG.md modeissue-tracker-check succeeds and "project" is null → BACKLOG.md modeissue-tracker-check succeeds and "project" is non-null → issue tracker mode with that project keyThis logic is identical to
/run-task. Keep the two in sync.
odeshi-helper issue-tracker-list --project PROJECT_KEY. Parse the JSON response to extract key, summary, status, and priority for each item..claude/BACKLOG.md. Parse the markdown structure to extract ID, title, and status per item, grouped by priority section (P0-P4).BACKLOG.md (BACKLOG.md mode)Group items by priority. For each item, show:
PROJ-123) or BACK-NNNOmit empty priority groups. Omit a Completed section — this view shows open items only.
Highlight the single highest-priority unblocked item as the recommended candidate for the next /run-task invocation. If multiple items share the highest priority, pick the oldest by creation date.
/run-tasknpx claudepluginhub wiicode/odeshi --plugin odeshiCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.