Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
october-academy avatar

Cp

  • 16 installs
  • Updated July 11, 2026
  • october-academy/agent-plugins

Helps with ai & agent building tasks.

About

cp is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • cp
  • AI & Agent Building
  • AI-coding skill

Cp by the numbers

  • 16 all-time installs (skills.sh)
  • Ranked #11,068 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/october-academy/agent-plugins --skill cp

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs16
Last updatedJuly 11, 2026
Repositoryoctober-academy/agent-plugins

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Commit & Push Skill

Streamlined git workflow: stage, commit, and push in one command.

Usage

Basic

/cp                        # Auto-generate commit message
/cp "fix: resolve bug"     # Use provided message

Korean Triggers

  • "커밋하고 푸시"
  • "커밋 푸시"
  • "변경사항 올려줘"

Workflow

1. Analyze Changes

git status                 # See all changes
git diff --staged          # Staged changes
git diff                   # Unstaged changes
git log -3 --oneline       # Recent commits for context

2. Generate Commit Message

If no message provided, analyze changes and generate following Conventional Commits:

PrefixUse Case
feat:New feature
fix:Bug fix
docs:Documentation
refactor:Code restructuring
style:Formatting (no logic change)
test:Adding tests
chore:Maintenance tasks

3. Stage Files

Prefer specific files over git add -A:

git add src/component.tsx src/utils.ts

Never stage:

  • .env files
  • Credentials or secrets
  • Large binary files (unless intentional)

4. Commit

Use HEREDOC for proper formatting:

git commit -m "$(cat <<'EOF'
type: concise description

Optional body with more details.

Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"

5. Push

git push origin <current-branch>

If upstream not set:

git push -u origin <current-branch>

Safety Checks

Before committing:

1. No secrets: Scan for API keys, passwords, tokens 2. Correct branch: Verify not pushing to protected branch accidentally 3. Clean diff: Review what's being committed

Error Handling

ErrorSolution
"Nothing to commit"No changes detected, inform user
"Push rejected"Run git pull first, then retry
"Pre-commit hook failed"Fix issues, stage again, create NEW commit

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.