dev-status

Reports git branch state, open PRs, Docker container health, and Redis cache warmth for two repositories.

Updated May 11, 2026
One-click install
npx skills add https://github.com/thachrocky12345/local-agent-train-workstation --skill dev-status-thachrocky12345
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dev-status
Source: https://github.com/thachrocky12345/local-agent-train-workstation/tree/main/.claude/skills/dev-status
Command: npx skills add https://github.com/thachrocky12345/local-agent-train-workstation --skill dev-status-thachrocky12345

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers juggling multiple repositories lose track of unpushed commits, forgotten stashes, pending PR reviews, and broken local environments. This Skill consolidates all of that into a single structured status report so nothing slips through the cracks. ## Core Features & Use Cases - Dual-repo git status: Shows current branch, ahead/behind counts vs origin and main, dirty files, stashes, and unpushed commits for both RG-Frontend and Lumy-Backend. - PR and review tracking: Lists open PRs for the current branch plus any PRs awaiting review via the GitHub CLI. - Environment health checks: Verifies Docker container states and Redis cache warmth, flagging cold caches and stopped containers. - Use Case: Start your day by asking for a dev status report and immediately see that your backend branch is 4 commits unpushed, a stash contains a critical fix, and one Docker container is down. ## Quick Start Ask the assistant to show the current dev status of both repos including PRs, Docker health, and cache state.

Frequently Asked Questions about dev-status

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

FAQPage Schema
How do I check git status across multiple repositories at once?

Run the dev-status script, which fetches and reports branch, ahead/behind counts vs origin and main, dirty files, stashes, and unpushed commits for both RG-Frontend and Lumy-Backend in one structured report.

How to list open PRs and pending reviews with GitHub CLI?

Use gh pr list with the --json flag for number, title, state, and reviewDecision. The skill checks PRs for the current branch and separately filters all open PRs where reviewDecision equals REVIEW_REQUIRED.

How do I check if my Docker containers are running?

Use docker inspect with the format '{{.State.Status}}' for each container name. The skill checks five containers and marks each as running, stopped, or not found with checkmark or cross indicators.

Why does docker exec fail with path errors in Git Bash on Windows?

Git Bash mangles POSIX paths passed to docker exec. Prefix the command with MSYS_NO_PATHCONV=1 to disable path conversion, as the skill does when checking the Redis cache via Django's manage.py shell.

What does it mean when the Redis providers cache is cold?

A cold cache means the providers:full key returns zero entries, typically after a stack restart. The first landing page load warms it automatically in about 5-10 seconds, or you can trigger refresh_provider_caches manually.