npx skillsauth add laststance/skills gitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When running this skill in Codex, translate Claude Code-only primitives before acting: AskUserQuestion -> chat/request_user_input, TodoWrite -> update_plan, Task/TaskCreate/TeamCreate/SendMessage -> spawn_agent/send_input/wait_agent when available and allowed, and EnterPlanMode/ExitPlanMode -> a concise chat plan plus explicit approval.
Resolve Read/Write/Edit/Bash/WebSearch/WebFetch to Codex file/shell/web tools, and map ~/.claude/... paths to ~/.agents/... or ~/.codex/... unless the task explicitly targets Claude Code.
When running this skill in Cursor Agent, translate Claude Code-only primitives before acting: AskUserQuestion -> AskQuestion; TodoWrite -> Cursor TodoWrite or an equivalent checklist; Task/TaskCreate/TeamCreate/SendMessage/multi-agent flows -> Cursor Task (subagents), parallel Tasks, or run_in_background when allowed (TeamCreate/SendMessage may have no exact match); EnterPlanMode/ExitPlanMode -> Plan mode (SwitchMode / CreatePlan) plus explicit user approval.
Resolve Read/Write/Edit/StrReplace/Bash/web/search/MCP via Cursor Composer or Agent equivalents. MCP names written as mcp__server__tool typically map to call_mcp_tool with configured server identifiers. Map ~/.claude/... to ~/.cursor/skills/, .cursor/skills/, and .cursor/rules/ unless the task explicitly targets Claude Code.
Smart git workflow with automatic Conventional Commit message generation.
<essential_principles>
type(scope): description format
feat, fix, refactor, docs, test, chore, perf, ci, build, stylepush --force, reset --hard, branch -D, rebase on shared branches, clean -f--no-verify unless user explicitly requests it</essential_principles>
Inspect the argument before acting:
status, commit, push, pull, branch, merge,
stash, log) — possibly combined (commit & push) — run those operations below./git README更新して
or /git fix the header typo — run the task-then-ship operation: do the work,
then commit & push it.When in doubt (the argument neither matches a subcommand nor reads as a task), ask once which the user meant rather than guessing.
Perform a described change, then commit and push it in one shot. This is the default for any natural-language argument that isn't a git subcommand.
git add -A/.) and generate a Conventional Commit message from the
change analysis.Safety rules still apply: never --no-verify, never force-push without confirmation, and
honor the destructive-operation confirmations in Safety Rules above.
Analyze repository state and provide actionable summary.
git status (never use -uall flag)git diff --stat for change overviewGenerate a Conventional Commit from change analysis.
git status and git diff --cached (staged) and git diff (unstaged)git log --oneline -5 to match existing commit styletype from nature of changes (new feature → feat, bug fix → fix, etc.)scope from affected directories/filesgit add -A or git add .)git commit -m "$(cat <<'EOF'
type(scope): description
EOF
)"
Sync local commits with remote.
git rev-parse --abbrev-ref --symbolic-full-name @{u}-u: git push -u origin <branch>git pushFetch and integrate remote changes.
git pull --rebase (prefer rebase over merge for clean history)Create, switch, or manage branches.
git checkout -b <name> with naming convention type/description (e.g., feat/add-login, fix/header-alignment)git checkout <name>git branch -a with upstream statusgit branch -d <name> (use -D only with user confirmation)Guided merge with conflict resolution support.
git fetch origingit merge <source>git add <resolved-files> && git commitTemporarily save uncommitted changes.
git stash push -m "description"git stash listgit stash pop (or apply to keep in stash)View commit history with useful formatting.
git log --oneline -20git log --oneline --graph --all -20/git status
/git commit
/git push
/git commit & push
/git branch feat/dark-mode
/git merge main
/git stash save work in progress
/git log
/git README更新して # task-then-ship: update the README, then commit & push
/git fix the header typo # task-then-ship: make the fix, then commit & push
Will:
Will Not:
testing
Cited research briefs
development
Daily coding habit prompts JP
development
React core deep-dive JP
data-ai
Copy last agent reply