status

Generates a project status report from MVP checklist, git log, and technical debt analysis.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/levori119/skyboard --skill status-levori119
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: status
Source: https://github.com/levori119/skyboard/tree/main/.claude/skills/status
Command: npx skills add https://github.com/levori119/skyboard --skill status-levori119

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Project teams lack a fast, honest snapshot of where development stands. This Skill acts as a Scrum Master for the SKY-KING project, producing an accurate status report by combining the MVP feature checklist from CLAUDE.md with recent git activity, so stakeholders always know what is done, what is in progress, and what is blocked. ## Core Features & Use Cases - MVP Feature Tracking: Reads CLAUDE.md and reports each core feature (digital field board, event log, CTRL vs TWR screens, real-time updates, login audit) as done, in progress, or not started. - Git Activity Summary: Runs git log and diff commands to surface the latest commits and recent code changes. - Technical Debt & Next Step: Highlights known debt (monolithic files, no tests, polling-only updates, unversioned migrations) and recommends the highest-value next task plus any blockers. - Use Case: A team lead opens a session and asks for the current project state before a sprint planning meeting, receiving a structured Hebrew status report in seconds. ## Quick Start Ask the assistant to show the current SKY-KING project status using the status skill.

Frequently Asked Questions about status

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get a project status report from git history?

Run the status skill, which executes git log --oneline -20 and git diff --stat HEAD~5 HEAD, then combines the results with the MVP checklist from CLAUDE.md into a structured report covering features, activity, debt, and next steps.

What does the SKY-KING status report include?

The report includes an MVP feature table with done/in-progress/not-started markers, the five most recent commits, a list of major technical debt items, the recommended next task by priority, and any blockers.

Does the status skill require any files to exist?

Yes, it reads CLAUDE.md, specifically the core MVP functions section, and requires a git repository so it can run git log and git diff commands. Without these, the report cannot be grounded in real project state.

Can the status report mark a feature as unclear?

Yes. The skill rules state that if an MVP item cannot be determined from the code, it must be marked as unclear and requiring verification rather than guessed, keeping the report honest.

What technical debt does the status skill track?

It highlights the monolithic App.tsx and server.js files, polling-only updates without WebSocket, the absence of test files, and unversioned database migrations using ALTER TABLE statements.