Git — certificate-authority pki-manager-web, community, certificate-authority, ide skills, certificate-management, cosmian, fastify, pki-manager, typescript, Claude Code, Cursor

v1.0.0
GitHub

About this Skill

Ideal for Development Agents requiring version control and collaborative workflow management with Git Web-based PKI Manager - Secure X.509 certificate lifecycle management with Cosmian KMS integration

# Core Topics

oriolrius oriolrius
[6]
[2]
Updated: 3/5/2026

Agent Capability Analysis

The Git skill by oriolrius is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for certificate-authority, certificate-management, cosmian.

Ideal Agent Persona

Ideal for Development Agents requiring version control and collaborative workflow management with Git

Core Value

Empowers agents to manage repository setups with `git init` and `git clone`, and optimize daily workflows using `git status`, `git add`, and `git commit` commands, leveraging features like interactive staging with `git add -p` and commit amendment with `git commit --amend`

Capabilities Granted for Git

Initializing and cloning remote repositories with `git clone <url>`
Managing daily workflows with `git status` and `git add` commands
Optimizing commit histories using `git commit --amend`

! Prerequisites & Limits

  • Requires Git installation
  • Command-line interface interaction necessary
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

Git

Install Git, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Git

Expert assistance with Git version control and collaborative workflows.

Essential Commands

Repository Setup

  • git init - Initialize new repository
  • git clone <url> - Clone remote repository
  • git remote add origin <url> - Add remote
  • git remote -v - List remotes

Daily Workflow

  • git status - Check working tree status
  • git add . - Stage all changes
  • git add -p - Interactive staging
  • git commit -m "message" - Commit with message
  • git commit --amend - Amend last commit
  • git pull - Fetch and merge from remote
  • git push - Push commits to remote

Branch Management

  • git branch - List local branches
  • git branch -a - List all branches (including remote)
  • git branch <name> - Create new branch
  • git checkout <branch> - Switch to branch
  • git checkout -b <name> - Create and switch to new branch
  • git branch -d <name> - Delete branch (safe)
  • git branch -D <name> - Force delete branch
  • git push origin --delete <branch> - Delete remote branch

Viewing History

  • git log - View commit history
  • git log --oneline --graph - Compact graphical history
  • git log --author="name" - Filter by author
  • git show <commit> - Show commit details
  • git diff - Show unstaged changes
  • git diff --staged - Show staged changes
  • git diff <branch1>..<branch2> - Compare branches

Undoing Changes

  • git restore <file> - Discard working changes
  • git restore --staged <file> - Unstage file
  • git reset HEAD~1 - Undo last commit (keep changes)
  • git reset --hard HEAD~1 - Undo last commit (discard changes)
  • git revert <commit> - Create new commit that undoes changes
  • git clean -fd - Remove untracked files

Stashing

  • git stash - Stash current changes
  • git stash list - List stashes
  • git stash pop - Apply and remove last stash
  • git stash apply - Apply last stash (keep in list)
  • git stash drop - Delete last stash

Advanced Operations

Rebasing

bash
1# Rebase current branch onto main 2git rebase main 3 4# Interactive rebase (squash, reorder, edit commits) 5git rebase -i HEAD~3 6 7# Continue after resolving conflicts 8git rebase --continue 9 10# Abort rebase 11git rebase --abort

Cherry-picking

bash
1# Apply specific commit to current branch 2git cherry-pick <commit-hash> 3 4# Cherry-pick without committing 5git cherry-pick -n <commit-hash>

Merging

bash
1# Merge branch into current 2git merge <branch> 3 4# Merge without fast-forward (create merge commit) 5git merge --no-ff <branch> 6 7# Abort merge 8git merge --abort

Conflict Resolution

bash
1# Show conflicts 2git status 3 4# After resolving conflicts in files 5git add <resolved-file> 6git commit 7 8# Use theirs/ours for entire file 9git checkout --theirs <file> 10git checkout --ours <file>

Git Workflows

Feature Branch Workflow

bash
1# Create feature branch 2git checkout -b feature/new-feature 3 4# Work and commit 5git add . 6git commit -m "Add new feature" 7 8# Update from main 9git checkout main 10git pull 11git checkout feature/new-feature 12git rebase main 13 14# Push feature branch 15git push -u origin feature/new-feature

Hotfix Workflow

bash
1# Create hotfix from main 2git checkout main 3git pull 4git checkout -b hotfix/critical-fix 5 6# Fix and commit 7git commit -am "Fix critical bug" 8 9# Merge back to main 10git checkout main 11git merge hotfix/critical-fix 12git push 13 14# Clean up 15git branch -d hotfix/critical-fix

Configuration

User Setup

bash
1git config --global user.name "Your Name" 2git config --global user.email "your@email.com"

Useful Aliases

bash
1git config --global alias.co checkout 2git config --global alias.br branch 3git config --global alias.ci commit 4git config --global alias.st status 5git config --global alias.lg "log --oneline --graph --all"

Editor

bash
1git config --global core.editor "vim"

Best Practices

  1. Commit Messages: Use clear, descriptive messages following conventional commits
  2. Small Commits: Make atomic commits that do one thing
  3. Pull Before Push: Always pull latest changes before pushing
  4. Branch Naming: Use descriptive names like feature/, bugfix/, hotfix/
  5. Never Force Push: Avoid git push --force on shared branches
  6. Review Changes: Use git diff before committing
  7. Protect Main: Never commit directly to main/master

Troubleshooting

Undo accidental commit to wrong branch

bash
1git reset HEAD~1 # Undo commit, keep changes 2git stash # Stash changes 3git checkout <correct-branch> 4git stash pop # Apply changes 5git add . 6git commit -m "message"

Fix merge conflicts

bash
1# View conflicts 2git status 3 4# Edit conflicting files (look for <<<<<<, ======, >>>>>>) 5# Remove conflict markers and keep desired code 6 7# Mark as resolved 8git add <file> 9git commit

Recover deleted branch

bash
1# Find commit hash 2git reflog 3 4# Recreate branch 5git checkout -b <branch-name> <commit-hash>

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is Git?

Ideal for Development Agents requiring version control and collaborative workflow management with Git Web-based PKI Manager - Secure X.509 certificate lifecycle management with Cosmian KMS integration

How do I install Git?

Run the command: npx killer-skills add oriolrius/pki-manager-web/Git. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for Git?

Key use cases include: Initializing and cloning remote repositories with `git clone <url>`, Managing daily workflows with `git status` and `git add` commands, Optimizing commit histories using `git commit --amend`.

Which IDEs are compatible with Git?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for Git?

Requires Git installation. Command-line interface interaction necessary.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add oriolrius/pki-manager-web/Git. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use Git immediately in the current project.

Related Skills

Looking for an alternative to Git or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI