AGENT0S
HomeLibraryAgentic
FeedbackLearn AI
LIVE
Agent0s · AI Intelligence Library
Share FeedbackUpdated daily · 7am PST
Library/plugin
pluginbeginnerClaude Code

Claude Code Productivity Plugins for Git, Jira, and Meta-Development

This is a collection of plugins for the Claude Code AI assistant that automates common developer tasks. It provides ready-to-use commands for managing code with Git and tracking tasks in Jira, helping development teams work faster and more consistently.

AI SETUP PROMPT

Paste into Claude Code — it will scan your project and set everything up

# Install & Configure: Claude Code Productivity Plugins for Git, Jira, and Meta-Development

## What This Is
This is a collection of plugins for the Claude Code AI assistant that automates common developer tasks. It provides ready-to-use commands for managing code with Git and tracking tasks in Jira, helping development teams work faster and more consistently.

Source: https://github.com/yanmxa/cc-plugins

## Before You Start

Scan my workspace and analyze:
- The project language, framework, and directory structure
- Existing agent configuration (check for .claude/, .codex/, CLAUDE.md, settings.json, commands/, skills/ directories)
- Whether this repository or a similar tool is already cloned or installed

Then ask me before proceeding:
1. Do I need to configure any service credentials for this plugin (database, API keys, etc.)?
2. Should this be project-scoped or global?

## Fetch the Source

Clone or inspect the repository to understand what needs to be installed:
```bash
gh repo clone yanmxa/cc-plugins
```
Review the README, directory structure, and any install instructions before proceeding.

## What to Implement

This is an **Agent Plugin** — typically an MCP server or capability bundle.

- Install any required npm/pip packages from the source repository
- Register the MCP server in `.claude/settings.json` under the `mcpServers` key with the correct command and args
- Configure any required environment variables or credentials
- Verify the server starts correctly by checking its expected output

## Additional Context

- Execute the Claude Code command `/plugin marketplace add https://github.com/yanmxa/cc-plugins` to add this repository as a new source for plugins.
- Install the specific plugins the user needs by executing `/plugin install <plugin_name>` for each, such as `git` for version control automation and `jira` for project management integration.
- For the `jira` plugin, check the workspace for existing Jira configuration files or environment variables. If none are found, prompt the user for their Jira Cloud URL, username, and API token to configure the connection for the `jira:ops` skill.

## Reference Implementation

```
# Add this repository as a plugin marketplace
/plugin marketplace add https://github.com/yanmxa/cc-plugins

# Install individual plugins
/plugin install claude
/plugin install git
/plugin install jira

# Or browse available plugins
/plugin marketplace list
```

## Guidelines

- Adapt everything to my existing project — do not assume a specific stack or directory layout
- Review any fetched code for safety before installing or executing it
- After setup, run a quick verification and show me a summary of exactly what was installed, where, and how to use it
2,733 charactersCompatible with Claude Code & Codex CLI
MANUAL SETUP STEPS
  1. 01Execute the Claude Code command `/plugin marketplace add https://github.com/yanmxa/cc-plugins` to add this repository as a new source for plugins.
  2. 02Install the specific plugins the user needs by executing `/plugin install <plugin_name>` for each, such as `git` for version control automation and `jira` for project management integration.
  3. 03For the `jira` plugin, check the workspace for existing Jira configuration files or environment variables. If none are found, prompt the user for their Jira Cloud URL, username, and API token to configure the connection for the `jira:ops` skill.

CODE INTELLIGENCE

bash
# Add this repository as a plugin marketplace
/plugin marketplace add https://github.com/yanmxa/cc-plugins

# Install individual plugins
/plugin install claude
/plugin install git
/plugin install jira

# Or browse available plugins
/plugin marketplace list

FIELD OPERATIONS

One-Command PR Submitter

Create a custom slash command using the `claude` meta-plugin that chains together actions from the `git` and `jira` plugins. The command would automatically stage changes, generate a conventional commit message, push the branch, create a pull request on GitHub, and link the PR to the relevant Jira ticket.

Daily Stand-up Report Generator

Develop a workflow that uses the `jira` plugin to fetch all tickets the user has worked on in the last 24 hours and the `git` plugin to retrieve their recent commits. The AI will then synthesize this information into a formatted daily stand-up report that can be pasted into Slack or another communication tool.

STRATEGIC APPLICATIONS

  • →Standardize development workflows by providing a shared set of Claude Code slash commands for Git and Jira, ensuring all team members follow the same procedures for commits, pull requests, and ticket updates.
  • →Reduce context switching and increase developer productivity by allowing engineers to manage Jira tickets and Git operations directly from their code editor, eliminating the need to toggle between multiple applications.

TAGS

#plugin#automation#git#jira#workflow#developer-tools
Source: GITHUB · Quality score: 7/10
VIEW SOURCE