stage

Solid

Stage implementation changes for commit with precise file selection. Use when the user asks to "stage changes", "stage files", "add files to staging", or "prepare changes for commit".

Code & Development 335 stars 26 forks Updated 5 days ago MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
33
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Stage Changes Stage implementation changes with precise file selection. ## Step 1: Identify Changes Run `git status` to see all modified, added, and deleted files. ## Step 2: Stage Files Stage only the files relevant to the current task: ```bash git add <file1> <file2> ... ``` - Do not use `git add -A` or `git add .` - If a file contains both relevant and unrelated changes, use `git add -p <file>` to stage only the relevant hunks - Never stage files containing secrets (`.env`, credentials, API keys). Warn if detected. ## Step 3: Verify Run `git status` and `git diff --cached` to verify the staging area contains exactly the intended changes.

Details

Author
tobihagemann
Repository
tobihagemann/turbo
Created
3 months ago
Last Updated
5 days ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category