github-workflow
v0.3.4GitHub-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.
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
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install github-workflow-2@agent-plugin-marketplacePaste 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-pluginsClone 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
├── .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
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.
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.
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.
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.
Report the current GitHub-native stack structure (read-only). Use when checking what branches/PRs are in the stack before submitting or merging.
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.
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.
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.
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
{
"$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"
]
}For maintainers
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)