원클릭으로
sdlc
Show SDLC pipeline status dashboard
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Show SDLC pipeline status dashboard
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Open the Claude Session Dashboard in the browser. Starts it first if not already running. Checks for and installs updates before starting.
Analyze ~/.claude session files to find unused agent skills and reduce context token waste. Scans subagent JSONL files for injected skills and cross-references with agent responses.
Full SDLC pipeline: design → plan → implement → review → test → ship. Use this skill when the user wants to BUILD A NEW FEATURE that spans multiple files across scanner, server functions, and UI layers — anything requiring architecture design, an implementation plan, and coordinated changes across a vertical slice. Trigger on: /feature command, 'build/implement/add [feature]' requests involving new server functions + UI components, multi-step feature work needing TDD and code review. Do NOT trigger for: bug fixes, refactors, small UI tweaks, single-file changes, CI fixes, test runs, or PR reviews.
Investigate and fix the latest failing CI workflow
Fix a GitHub issue end-to-end
Investigate a URL or page using Playwright browser
| name | sdlc |
| description | Show SDLC pipeline status dashboard |
| user-invocable | true |
Display the current state of the development pipeline.
Collect the following information:
git branch --show-current
git status --short
git log --oneline -5
Run from apps/web/:
npm run typecheck 2>&1 | tail -1
npm run lint 2>&1 | tail -1
gh run list --limit 3
gh pr list --state open
gh issue list --state open --limit 5
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 tests
N completed, M in-progress, P pending
Also check for active worktrees:
git worktree list
If no tasks and no feature worktrees found, display: "No active features."
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 / FAIL
lint: PASS / FAIL
Recent 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">
========================================