<< All versions
Skill v1.0.1
Automated scan100/100majiayu000/claude-skill-registry/sdlc
3 files
──Details
PublishedMay 14, 2026 at 10:34 PM
Content Hashsha256:1ed292737f175386...
Git SHA63c042456db3
Bump Typepatch
──Files
Files (1 file, 1.7 KB)
SKILL.md1.7 KBactive
SKILL.md · 99 lines · 1.7 KB
version: "1.0.1" name: sdlc description: Show SDLC pipeline status dashboard user-invocable: true
SDLC Pipeline Status
Display the current state of the development pipeline.
Gather Data
Collect the following information:
Git Status
bash
git branch --show-currentgit status --shortgit log --oneline -5
Quality Status
Run from apps/web/:
bash
npm run typecheck 2>&1 | tail -1npm run lint 2>&1 | tail -1
CI Status
bash
gh run list --limit 3
Open PRs
bash
gh pr list --state open
Open Issues
bash
gh issue list --state open --limit 5
Task Pipeline
Run TaskList to retrieve active tasks from the native task store. Group and display by feature:
Active Tasks:Feature: <story-id>[completed] Create SSE server fn[in_progress] Add streaming UI[pending] Unit testsN completed, M in-progress, P pending
Also check for active worktrees:
bash
git worktree list
If no tasks and no feature worktrees found, display: "No active features."
Display Dashboard
Output a formatted dashboard:
========================================Claude Session Dashboard -- SDLC Pipeline Status========================================Branch: <current branch>Status: <clean / N uncommitted changes>Last CI: <pass/fail -- run ID>Quality Gates:typecheck: PASS / FAILlint: PASS / FAILRecent Commits:<last 5 commits>Open PRs:<list or "none">Open Issues:<list or "none">Worktrees:<list from git worktree list, or "none">Active Tasks:<grouped task list from TaskList, or "No active features">========================================