بنقرة واحدة
task-view
View full details of a specific task by ID or slug, including its TASK.md contents.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
View full details of a specific task by ID or slug, including its TASK.md contents.
التثبيت باستخدام 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 | task-view |
| description | View full details of a specific task by ID or slug, including its TASK.md contents. |
| argument-hint | <id or slug> |
| disable-model-invocation | true |
Shows full details for a single task.
Parse $ARGUMENTS — accept either a numeric ID or a slug string.
Query the task from SQLite:
DB_PATH="$CLAUDE_PROJECT_DIR/.claude/journal/journal.db"
# If numeric
sqlite3 -header -column "$DB_PATH" "SELECT * FROM tasks WHERE id = <id>;"
# If slug
sqlite3 -header -column "$DB_PATH" "SELECT * FROM tasks WHERE slug = '<slug>';"
If the task has a folder_path, read the TASK.md file from that folder using the Read tool to show any working notes.
Display the task details in a formatted view:
Show available actions:
/workflow-toolkit:task-start <id> — if status is todo/workflow-toolkit:task-done <id> — if status is in-progress/workflow-toolkit:task-update <id> status blocked — if stuck/workflow-toolkit:task-update <id> notes "..." — to add notesIf the task is not found, show an error and suggest /workflow-toolkit:task-list all.