Personal Claude Code marketplace with git workflow automation
npx claudepluginhub xantygc/agent-code-marketplaceGit workflow automation with Jira integration and Conventional Commits format
Personal marketplace for Claude Code skills and automations. Custom skills for development workflows, including Git automation with Jira integration and GitLab-compatible commit formats.
Add the marketplace to Claude Code using one of these methods:
/plugin marketplace add https://github.com/xantygc/agent-code-marketplace.git
git clone https://github.com/xantygc/agent-code-marketplace.git
cd agent-code-marketplace
/plugin marketplace add /path/to/agent-code-marketplace
On Windows:
/plugin marketplace add C:\projects\agent-code-marketplace
/plugin - you should see "pecholata-marketplace"The skills are automatically invoked by Claude Code when relevant. For example:
# Git workflow skill activates automatically when you:
- "Create a commit with these changes"
- "Create a merge request"
- "Validate my commit messages"
# Or explicitly invoke it:
/git-workflow
Git workflow automation with Jira integration and GitLab-compatible commit format.
Features:
type(scope): JIRA-ID descriptionSlash Commands:
/feature - Create a new feature branch (feature/JIRA-ID-description)/release - Create a release branch (release/X.Y.Z)/hotfix - Create a hotfix branch (hotfix/JIRA-ID-description)/finish - Complete and merge current branch (following Git Flow)/flow-status - Show comprehensive Git Flow status and recommendationsAll commands are available immediately after installation. See git-workflow README for detailed usage.
.
├── .claude-plugin/
│ └── marketplace.json # Marketplace configuration (REQUIRED)
├── skills/
│ └── git-workflow/ # Git workflow skill
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin metadata
│ ├── SKILL.md # Main skill definition
│ ├── README.md # Skill documentation
│ ├── commands/ # Slash commands
│ │ ├── feature.md # /feature command
│ │ ├── release.md # /release command
│ │ ├── hotfix.md # /hotfix command
│ │ ├── finish.md # /finish command
│ │ └── flow-status.md # /flow-status command
│ ├── scripts/ # Python validation scripts
│ │ ├── extract_jira_id.py
│ │ ├── validate_commit_message.py
│ │ └── validate_branch_commits.sh
│ ├── references/ # Documentation
│ │ ├── conventional-commits-guide.md
│ │ └── commit-examples.md
│ └── assets/ # Templates
│ └── mr-template.md
├── MARKETPLACE_SETUP.md # Setup guide
└── README.md
Important: The marketplace.json file MUST be inside the .claude-plugin/ directory. This is the standard location where Claude Code looks for marketplace configuration.
skills/SKILL.md file with the skill definitionmarketplace.json to include the new skillThis repository uses GitLab-compatible conventional commits:
type(scope): JIRA-ID description
Examples:
- feat(auth): AZ-123 add OAuth2 login support
- fix(api): AZ-456 handle null response in user endpoint
- docs(readme): AZ-789 add installation instructions
Valid types: feat, fix, docs, style, refactor, perf, test, chore, ci, revert
For more information about Claude Code and skill development:
This marketplace is maintained by Santiago Gonzalez (santiago.gonzalez.courel@gmail.com).
Original Project: