Install
$ agentstack add skill-shivae372-claude-bootstrap-git-workflow ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Purpose
Handle git operations following the project's specific conventions. Read the project's CLAUDE.md to understand branch naming, commit message format, and PR conventions before doing anything.
Steps
1. Read Project Conventions
Before any git operation, read CLAUDE.md for:
- Commit message format (conventional commits? custom format?)
- Branch naming convention
- PR template (check
.github/pull_request_template.mdif it exists)
2. Check Current State
git status
git diff --stat HEAD
3. For Commits
- Group related changes into logical commits (not one giant commit)
- Write commit message following project conventions
- If conventional commits:
type(scope): description - Include breaking change footer if relevant
- Max subject line: 72 characters
- Body: what changed and WHY, not what (the diff shows what)
4. For Branches
- Read the issue/task first to understand scope
- Name:
type/short-description(e.g.,feat/add-review-widget,fix/auth-cookie-bug) - Check it doesn't already exist:
git branch -a | grep name
5. For PR Descriptions
Structure:
## What
[One paragraph: what changed]
## Why
[One paragraph: why this change was needed]
## How
[Brief technical explanation of the approach]
## Testing
[How to test this change]
## Checklist
- [ ] Tests pass
- [ ] No console.logs left
- [ ] Docs updated if needed
6. Safety Checks
- NEVER suggest
git push --forceon a shared branch - NEVER commit to
mainormasterdirectly - Always check for secrets before committing:
git diff --cached | grep -i "api_key\|secret\|password\|token"
Output
Print the git commands to run (don't run them automatically unless the user said "just do it"). Explain what each command does if it's non-obvious.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: shivae372
- Source: shivae372/claude-bootstrap
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.