git-workspace-review
SolidVerify workspace state, staged changes, and preflight checks before commits or PRs
Code & Development 308 stars
27 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Git Workspace Review
## Table of Contents
1. [Usage](#usage)
2. [Required Progress Tracking](#required-progress-tracking)
## Verification
Run `git status` after review to verify workspace state matches expectations.
## Testing
Run `pytest plugins/sanctum/tests/test_git_workspace_review.py` to validate review workflow.
## Usage
Use this skill before workflows that depend on repository state, such as commit message generation, PR preparation, or release notes. Run it once per session or whenever staged changes are modified.
## Required Progress Tracking
1. `git-review:repo-confirmed`
2. `git-review:status-overview`
3. `git-review:code-quality-check`
4. `git-review:diff-stat`
5. `git-review:diff-details`
Mark each item as complete as you finish the corresponding step.
## Step 1: Confirm Repository (`repo-confirmed`)
Run `pwd` to confirm you are in the correct repository directory. Execute `git status -sb` to view the current branch and short status, then capture the branch name and upstream information.
## Step 2: Review Status Overview (`status-overview`)
Analyze the `git status -sb` output for staged and unstaged changes. Stage or unstage files so that subsequent workflows operate on the intended diff.
## Step 3: Check Code Quality (`code-quality-check`)
Run `make format && make lint` to validate code quality before committing. Fix any errors immediately. Do not bypass pre-commit hooks with `--no-verify`. This check identifies issues early and avoids late-st...
Details
- Author
- athola
- Repository
- athola/claude-night-market
- Created
- 6 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
pr-prep
Prepare pull requests by running quality gates, drafting descriptions, and validating tests before submission.
308 Updated today
athola AI & Automation Listed
git-workflow
Deterministic git operations with state verification for skill-creator managed repos. Use when managing repos, branches, worktrees, or contribution workflows.
65 Updated today
Tibsfox Code & Development Listed
code-review
Focused review of staged or recent changes to find edge cases, logic errors, and integration risks before merging. Use when asked to 'do a code review', 'review my changes', 'review this PR', 'check my diff', 'review staged changes', or 'pre-merge review'.
0 Updated 1 weeks ago
arndvs