Help us improve
Share bugs, ideas, or general feedback.
From runesmith-jira
Get a quick project status from Jira. Use when the user says "what's the status", "where are we", "what's in progress", "what's in the backlog", "project update", "show me the board", or asks about current work state. Also triggers on "any blockers", "what's next", or "sprint status".
npx claudepluginhub runemarklabs/runesmith --plugin runesmith-jiraHow this skill is triggered — by the user, by Claude, or both
Slash command
/runesmith-jira:project-statushaikuThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Quick status check from Jira - what's in progress, done, blocked, backlog.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Quick status check from Jira - what's in progress, done, blocked, backlog.
Read-only. No consent gate required.
lib/atlassian-rest.md - /search/jql POSTlib/credentials.mdlib/tokens.mdlib/comms-check.md - runs firstatlassian:sprint-status for atlassian-enabled sprint-aware viewSee lib/comms-check.md. Pause for to: user items.
{PROJECT_KEY} resolved.Use for:
Do not use for:
status-report (in operations plugin)POST {ATLASSIAN_API_URL}/rest/api/3/search/jql
{
"jql": "project = {PROJECT_KEY} ORDER BY updated DESC",
"fields": ["summary", "status", "assignee", "priority", "labels", "updated"],
"maxResults": 50
}
(Do NOT use deprecated GET /rest/api/3/search.)
By status.name:
{PROJECT_KEY} status
In Progress (n)
- KEY-1 summary - assignee
- KEY-2 summary - assignee
Blockers (n)
- KEY-3 summary
Next up (top 3)
- KEY-4 summary
- KEY-5 summary
Recently done (last 7d)
- KEY-6 summary
Board: {ATLASSIAN_API_URL}/jira/software/projects/{PROJECT_KEY}/boards
/search/jql POST, not GET /search401: Re-read .credentials, retry once, then "Run /core:setup."
404: "Project {PROJECT_KEY} not found."
410 / endpoint gone: Re-check atlassian-rest.md for current path.
Empty: "No tickets in {PROJECT_KEY}. Try /atlassian:ticket."