My personal Claude Code skills collection.
claude plugin marketplace add https://github.com/niracler/skill.gitStandardized Git workflow for commits, PRs, and releases.
- Conventional Commits format (no AI signatures)
- Pull Request templates
- Release workflow with CHANGELOG
# Initialize
python3 scripts/init_skill.py your-skill-name --path .
# Edit files
# - your-skill-name/SKILL.md
# - your-skill-name/references/
# - your-skill-name/scripts/
# Update .claude-plugin/marketplace.json
# Add "./your-skill-name" to skills array
# Validate
./scripts/validate.sh
# Commit
git add .
git commit -m "feat: add your-skill-name"
git push./scripts/validate.shskill/
├── .claude-plugin/
│ └── marketplace.json
├── git-workflow/
│ ├── SKILL.md
│ ├── references/
│ └── scripts/
└── scripts/
├── init_skill.py
├── quick_validate.py
└── validate.sh