omnicreate-github

omnicreate-github is a skill for Claude Code from nexiouscaliver/OmniForge. It costs 44 tokens per session (1,455 once invoked), scanned B, original, MIT.

A GitHub pull-request creator for proposing code changes for review. It builds the request details from your commits and can set common review metadata.

In plain words
What is it for?
Creating GitHub pull requests, including draft requests, labels, assignees, reviewers, and links to issues.
Why use it?
It avoids writing the title and description from scratch and reduces missed setup details when opening a pull request.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the omniforge plugin — 8 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/nexiouscaliver/omniforge/omnicreate-github
Any agent
npx skills add nexiouscaliver/OmniForge --skill omnicreate-github
Clone the repo
git clone --depth 1 https://github.com/nexiouscaliver/OmniForge

Made for: Claude Code.

Or install omniforge, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for omnicreate-github

README.md
[![agentmods](https://agentmods.dev/badge/skills/nexiouscaliver/omniforge/omnicreate-github.svg)](https://agentmods.dev/skills/nexiouscaliver/omniforge/omnicreate-github)
Your own site
<a href="https://agentmods.dev/skills/nexiouscaliver/omniforge/omnicreate-github"><img src="https://agentmods.dev/badge/skills/nexiouscaliver/omniforge/omnicreate-github.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,455 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00044 $0.01455
Opus 5 $0.00022 $0.00727
Sonnet 5 $0.00009 $0.00291
Haiku 4.5 $0.00004 $0.00145

Measured 6d ago against content hash d24546873045, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

omnicreate-github scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo apt install gh # Debian/Ubuntu
plugins/omniforge/skills/omnicreate-github/SKILL.md · 131 lines

How it starts

The opening of the file, as written. The whole thing — 131 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GitHub Pull Request Creator

Context

  • Current git status: !git status --porcelain
  • Current branch: !git branch --show-current
  • Recent commits: !git log --oneline -5
  • GitHub remote: !git remote -v | grep github | head -1
  • gh version: !gh version 2>/dev/null || echo "NOT_INSTALLED"
  • gh auth status: !gh auth status 2>&1 || echo "NOT_AUTHENTICATED"
  • Unpushed commits: !git log @{u}..HEAD --oneline 2>/dev/null || echo "NO_UPSTREAM"
  • Repo root: !git rev-parse --show-toplevel 2>/dev/null || echo "NOT_A_GIT_REPO"

Your Task

Create a GitHub pull request using the mcp__omniforge__create_github_pr MCP tool.

Why MCP instead of raw bash? The MCP tool validates all inputs, uses safe subprocess execution (no shell interpretation), and provides structured error output — making it safe for use by all models without risk of shell injection.

Prerequisites

  1. Verify gh is installed. If not, inform the user:
    brew install gh  # macOS
    sudo apt install gh  # Debian/Ubuntu
    
  2. Verify the current directory is a git repository with a GitHub remote.
  3. Ensure there are commits to create a PR from (not on main/master without changes).

Pre-Flight Checklist

Before creating the PR, verify:

  1. Check environment: Verify gh is installed and authenticated, git repo has GitHub remote
  2. Check branch: If on main/master, inform user they need to create a feature branch first
  3. Check for changes: If no commits, inform user they need to commit changes first
  4. Warn about uncommitted changes: If working directory is dirty, warn user before proceeding
  5. Get repo root: Run git rev-parse --show-toplevel to obtain the absolute path
  6. Call MCP tool: Invoke mcp__omniforge__create_github_pr with repo_root and any user-specified options
  7. Report output: Show the PR URL, number, and any relevant details from the tool response

MCP Tool: mcp__omniforge__create_github_pr

Use this tool for all PR creation. It wraps gh pr create safely.

Read the full file on GitHub · 131 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 131 lines · 44 tokens per session scan B d24546873045

Subscribe to this mod's changes

omnicreate-github is a skill published in the GitHub repository nexiouscaliver/OmniForge (4 stars, last pushed yesterday), licensed MIT. It adds 44 tokens to every session and 1,455 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens

add-cloud-flow

Integrates Power Automate cloud flows into a Power Pages site. Lists available flows, suggests relevant ones based on intent, identifies scenarios and web roles, creates metadata files, and generates client-side code to call flows. Handles both new flow registration and adding already-registered flows to additional…

microsoft/power-platform-skills · 91 tokens

configure-env-variables

Configures environment variables for Power Pages site settings to support ALM across environments. Creates environment variable definitions in Dataverse, guides the user through linking site settings to those variables via the Power Pages Management app, adds the variables to the solution, and generates a…

microsoft/power-platform-skills · 119 tokens

deploy-site

Deploys an existing Power Pages code site to a Power Pages environment using PAC CLI. Handles tooling verification, authentication, environment confirmation, building, and uploading. Use when the user wants to deploy, upload, or publish their code site.

microsoft/power-platform-skills · 50 tokens

add-teams

Adds Microsoft Teams connector to a Power Apps code app. Use when sending Teams messages, posting to channels, or integrating with Teams chat.

microsoft/power-platform-skills · 31 tokens

elixir-idioms

OTP/BEAM patterns and Elixir idioms — GenServer, Supervisor, Task, Registry, pattern matching, with chains, pipes. Use when designing processes or debugging BEAM issues.

oliver-kriska/claude-elixir-phoenix · 44 tokens