一键导入
issues-list
List and filter tracked GitHub issues from the local SQLite database. Filter by state, label, priority, tracking status, or search by keyword.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List and filter tracked GitHub issues from the local SQLite database. Filter by state, label, priority, tracking status, or search by keyword.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Show usage information for any workflow-toolkit skill. Use when the user asks how to use a specific skill, what a skill does, or needs guidance on workflow-toolkit features. Also triggers on "help", "how do I", "what does X do", or "usage" in the context of workflow-toolkit skills.
Initialize and verify the workflow-toolkit environment. Checks SQLite availability, creates the journal database, verifies directory structure, checks gh CLI auth, and reports readiness. Run this after installing the plugin or when troubleshooting.
Pre-flight checklist for open source contributions. Validates code changes against project rules, PR size limits, commit format, linting, and type-checking. Does NOT push or create PRs — only reports issues.
Creates a new Claude Code custom subagent configuration. Guides you through designing agent scope, tools, permissions, hooks, and system prompts.
Creates a new Claude Code custom skill (slash command). Guides you through designing, writing, and placing the SKILL.md file with proper frontmatter, arguments, and best practices.
Open the journal SQLite database in a GUI viewer (DB Browser for SQLite, or similar).
| name | issues-list |
| description | List and filter tracked GitHub issues from the local SQLite database. Filter by state, label, priority, tracking status, or search by keyword. |
| argument-hint | ["open|closed|bugs|features|triaged|in-progress|search <keyword>|priority <level>"] |
| disable-model-invocation | true |
Lists and filters GitHub issues from the local SQLite tracking database.
Parse $ARGUMENTS to determine the filter:
| Argument | Query filter |
|---|---|
(none) or open | state = 'OPEN' |
closed | state = 'CLOSED' |
bugs | labels LIKE '%bug%' |
features | labels LIKE '%feature%' |
new | tracking_status = 'new' (untriaged) |
triaged | tracking_status = 'triaged' |
in-progress | tracking_status = 'in-progress' |
resolved | tracking_status = 'resolved' |
ignored | tracking_status = 'ignored' |
priority <level> | priority = '<level>' (critical, high, medium, low) |
search <keyword> | title LIKE '%keyword%' OR body LIKE '%keyword%' |
all | No filter — show everything |
stale | synced_at < datetime('now', '-7 days') |
Query the SQLite database:
DB_PATH="$CLAUDE_PROJECT_DIR/.claude/journal/journal.db"
# Example: list open issues
sqlite3 -header -column "$DB_PATH" "
SELECT issue_number AS '#', title, labels, priority, tracking_status AS status, comments_count AS comments
FROM github_issues
WHERE state = 'OPEN'
ORDER BY issue_number DESC
LIMIT 30;
"
Format the output as a readable table. Include:
Show a count summary at the bottom (e.g., "Showing 20 of 45 open issues").
If the database has no issues, suggest running /workflow-toolkit:issues-sync first.