Claude Code Plugins

Community-maintained marketplace

Feedback
0
0

Clean, reversible Git changes with atomic backups and readable, annotated commits.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name nyra-git-discipline
description Clean, reversible Git changes with atomic backups and readable, annotated commits.
tags git, hygiene, backup, commit
category development

Rules

  • New branch per consolidation (infra/* prefix).
  • Backups are automatic (hook). Move legacy files to archive/<DATE>-repo-cleanup/.
  • Commit messages:
    • Summary line ≤ 72 chars
    • Bullets of moved/created/validated files

Snippets

  • git checkout -b infra/compose-consolidation

  • `git add -A && git commit -m "infra: consolidate compose files

  • moved: ...

  • created: nyra-infra/compose/compose.core.yml

  • validation: compose config OK"`