Agent Plugins Marketplace
All plugins

git-operations

v1.1.1

Decision router for git: given a situation, pick the right operation (undo/discard/stash/merge/push) and run it safely with an undo path. Favours modern porcelain over legacy checkout; cross-links to git-commit.

CodexClaude CodeAgent Plugins1 Skill

By jabworksLicense: MIT1 GitHub starsUpdated 3 days ago

Directory evidence

Runtimes
Codex, Claude Code, and Agent Plugins
Parsed components
1 skill or MCP entry
Source updated
Sep 20, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install git-operations for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add git-operations@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/jabworks/agentic-toolkit

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is dist/plugins/git-operations/.

Plugin files

dist/plugins/git-operations/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── plugin.json
└── skills/git-operations/SKILL.md

Included Skills1

git-operationsskills/git-operations/SKILL.md

Use when deciding which git operation fits a situation and running it safely — undoing a commit, discarding or unstaging changes, parking work-in-progress, integrating upstream, or recovering from a mistake. A decision router (situation → operation → safe command + undo path) favouring modern porcelain (`switch`, `restore`) over legacy `checkout`. Cross-links to git-commit for committing. Not for tagging or publishing — that's release. Not for worktrees — that's git-worktree.

Plugin manifests3

dist/plugins/git-operations/.codex-plugin/plugin.json
{
  "name": "git-operations",
  "version": "1.1.1",
  "description": "Decision router for git: given a situation, pick the right operation (undo/discard/stash/merge/push) and run it safely with an undo path. Favours modern porcelain over legacy checkout; cross-links to git-commit.",
  "author": {
    "name": "jabworks"
  },
  "repository": "https://github.com/jabworks/agentic-toolkit",
  "license": "MIT",
  "keywords": [
    "git",
    "vcs",
    "undo",
    "reflog",
    "recovery",
    "workflow"
  ],
  "skills": "./skills/git-operations",
  "interface": {
    "displayName": "Git Operations",
    "shortDescription": "Pick the right git operation, run it safely.",
    "longDescription": "A decision router for git — given a situation (undo a commit, discard changes, park work, integrate upstream, recover a mistake), it picks the safest modern command and always gives the undo path. Everyday + recovery scope only; cross-links to git-commit for committing.",
    "developerName": "jabworks",
    "category": "Productivity",
    "defaultPrompt": [
      "How do I undo my last commit?",
      "Throw away these changes safely.",
      "I think I lost a commit — help."
    ]
  }
}
dist/plugins/git-operations/.claude-plugin/plugin.json
{
  "name": "git-operations",
  "version": "1.1.1",
  "description": "Decision router for git: given a situation, pick the right operation (undo/discard/stash/merge/push) and run it safely with an undo path. Favours modern porcelain over legacy checkout; cross-links to git-commit.",
  "author": {
    "name": "jabworks"
  },
  "repository": "https://github.com/jabworks/agentic-toolkit",
  "license": "MIT",
  "keywords": [
    "git",
    "vcs",
    "undo",
    "reflog",
    "recovery",
    "workflow"
  ],
  "skills": "./skills/git-operations"
}
dist/plugins/git-operations/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "git-operations",
  "version": "1.1.1",
  "description": "Decision router for git: given a situation, pick the right operation (undo/discard/stash/merge/push) and run it safely with an undo path. Favours modern porcelain over legacy checkout; cross-links to git-commit.",
  "author": {
    "name": "jabworks"
  },
  "repository": "https://github.com/jabworks/agentic-toolkit",
  "license": "MIT",
  "keywords": [
    "git",
    "vcs",
    "undo",
    "reflog",
    "recovery",
    "workflow"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[git-operations on Agent Plugins Marketplace](https://pluginsmp.com/plugins/git-operations)