work-status
The work-status Claude Code skill retrieves and displays the current progress of WORKs and TASKs by reading project documentation files. Use it when users request status updates on specific work items, task completion percentages, or overall project pipelines, such as asking for a work list or progress on a particular work identifier like "WORK-01 progress."
git clone --depth 1 https://github.com/davepoon/buildwithclaude /tmp/work-status && cp -r /tmp/work-status/plugins/agents-uc-taskmanager/skills/work-status ~/.claude/skills/work-statusSKILL.md
# WORK Status Check and report the current status of WORKs and TASKs. ## How to Check 1. Read `works/WORK-LIST.md` for the master index of all WORKs 2. For a specific WORK, read `works/WORK-NN/PROGRESS.md` for TASK-level progress 3. For a specific TASK, read `works/WORK-NN/TASK-NN_result.md` for completion details ## Status Values | Status | Meaning | |--------|---------| | `IN_PROGRESS` | WORK created, TASKs being executed | | `DONE` | All TASKs committed — committer auto-sets on last TASK | | `COMPLETED` | Archived to `_COMPLETED/` — set during push | ## Display Format ``` WORK Status WORK-01: User Authentication ✅ 5/5 completed WORK-02: Payment Integration 🔄 2/4 in progress WORK-03: Admin Dashboard ⬜ 0/6 pending ``` ## Arguments Query: $ARGUMENTS
Scans the codebase for dead code, tech debt, outdated dependencies, and code quality issues. Delegates to the Centinela (QA) agent.
Creates a complete product feature specification with acceptance criteria, scope, dependencies, and risks. Delegates to the Prometeo (PM) agent.
Implements a feature from its specification. Reads the spec, designs architecture, writes code and tests. Delegates to the Forja (Dev) agent.
Pre-release verification checklist. Validates features, tests, docs, security, and quality gates before shipping. Delegates to the Centinela (QA) agent.
Addresses and fixes findings from a QA code review. Reads the review report, fixes critical and warning issues, and prepares for re-verification. Delegates to the Forja (Dev) agent.
Deep security audit covering OWASP Top 10, authentication, authorization, data protection, dependency vulnerabilities, and secrets scanning. Delegates to the Centinela (QA) agent.
Initialize uc-taskmanager for the current project. Creates works/ directory and configures Bash permissions in .claude/settings.local.json. Use when the user says "uctm init", "initialize uctm", "uctm 초기화", or "초기화".