Agent Plugins Marketplace
← All plugins

github-workflow

v0.3.4

GitHub-native stacked-PR provider. Creates, submits, amends, syncs, navigates, cleans up, and merges stacks through a validated CLI adapter over the official github/gh-stack extension.

Claude Code9 Skills

By KingInYellowsLicense: MIT0 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Claude Code
Parsed components
9 skill or MCP entries
Source updated
Sep 27, 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 github-workflow for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install github-workflow-2@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. 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/KingInYellows/yellow-plugins

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

Plugin files

plugins/github-workflow/
├── .claude-plugin/plugin.json
├── skills/github-stack-amend/SKILL.md
├── skills/github-stack-cleanup/SKILL.md
├── skills/github-stack-merge/SKILL.md
├── skills/github-stack-nav/SKILL.md
├── skills/github-stack-plan/SKILL.md
├── skills/github-stack-setup/SKILL.md
├── skills/github-stack-status/SKILL.md
├── skills/github-stack-submit/SKILL.md
└── skills/github-stack-sync/SKILL.md

Included Skills9

github-stack-amendskills/github-stack-amend/SKILL.md

Fold working-tree changes into the current branch commit and re-submit via gh stack. Use when user says "amend this" or "add this to the current PR" on the github stacked-PR provider.

github-stack-cleanupskills/github-stack-cleanup/SKILL.md

Remove local stack tracking, and by default also remote-unstack every PR via the GitHub API. Use when user says "clean up my stack" or "untrack this stack" on the github stacked-PR provider.

github-stack-mergeskills/github-stack-merge/SKILL.md

Merge a stacked PR via gh stack merge. Use when the user says "merge my stack" or "land this PR" on the github stacked-PR provider and the target is fully reviewed and ready.

github-stack-navskills/github-stack-nav/SKILL.md

Check out a stack target — stack number, PR number, PR URL, or branch. Use when user says "go to PR 42" or "show my stack and let me pick" on the github stacked-PR provider.

github-stack-planskills/github-stack-plan/SKILL.md

Report the current GitHub-native stack structure (read-only). Use when checking what branches/PRs are in the stack before submitting or merging.

github-stack-setupskills/github-stack-setup/SKILL.md

Check GitHub-native stacked-PR prerequisites — gh CLI, authentication, and the official github/gh-stack extension. Use when first installing the plugin, after gh auth changes, or when /stack:status reports PARTIAL_TOOLING for the github provider.

github-stack-statusskills/github-stack-status/SKILL.md

Report GitHub-native stacked-PR tooling readiness and point to /stack:status (yellow-core) for the authoritative active-provider answer. Use when checking why gh stack tooling is unavailable or which stacked-PR provider is currently active.

github-stack-submitskills/github-stack-submit/SKILL.md

Stage, commit, and submit uncommitted changes as a GitHub-native stacked PR. Use when user says "submit this" or "ship it" on the github stacked-PR provider and has uncommitted work to turn into a PR.

github-stack-syncskills/github-stack-sync/SKILL.md

Sync the local stack with trunk via gh stack sync, optionally pruning merged branches. Use when user says "sync with main" or "pull latest" on the github stacked-PR provider.

Plugin manifests1

plugins/github-workflow/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "github-workflow",
  "version": "0.3.4",
  "description": "GitHub-native stacked-PR provider. Creates, submits, amends, syncs, navigates, cleans up, and merges stacks through a validated CLI adapter over the official github/gh-stack extension.",
  "author": {
    "name": "KingInYellows",
    "url": "https://github.com/KingInYellows"
  },
  "homepage": "https://github.com/KingInYellows/yellow-plugins/tree/main/plugins/github-workflow",
  "repository": "https://github.com/KingInYellows/yellow-plugins",
  "license": "MIT",
  "keywords": [
    "github",
    "gh-stack",
    "gh-cli",
    "stacked-prs",
    "pull-requests",
    "workflow",
    "provider"
  ],
  "hooks": {
    "PreToolUse": [
      {
        "matcher": "Bash",
        "hooks": [
          {
            "type": "command",
            "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/entrypoint-claude.js\" --hook check-git-push",
            "timeout": 5
          }
        ]
      }
    ],
    "PostToolUse": [
      {
        "matcher": "Bash",
        "hooks": [
          {
            "type": "command",
            "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/entrypoint-claude.js\" --hook check-commit-message",
            "timeout": 5
          }
        ]
      }
    ]
  },
  "dependencies": [
    "yellow-core"
  ]
}

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

[github-workflow on Agent Plugins Marketplace](https://pluginsmp.com/plugins/github-workflow-2)