Source profileQuality 69/100Review permissions

openai/skills/skills/.curated/yeet/SKILL.md

yeet

Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`).

Source repository stars
25,188
Declared platforms
0
Static risk flags
3
Last source update
2026-07-14
Source checked
2026-08-26

Decision brief

What it does: where it fits

Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`).

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/openai/skills --skill "skills/.curated/yeet"
    Safe inspection promptEditorial

    Inspect the Agent Skill "yeet" from https://github.com/openai/skills/blob/49f948faa9258a0c61caceaf225e179651397431/skills/.curated/yeet/SKILL.md at commit 49f948faa9258a0c61caceaf225e179651397431. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow

      If on main/master/default, create a branch: git checkout -b "{description}"

      If on main/master/default, create a branch: git checkout -b "{description}"Otherwise stay on the current branch.Confirm status, then stage everything: git status -sb then git add -A.
    2. 02

      Prerequisites

      Require GitHub CLI gh. Check gh --version. If missing, ask the user to install gh and stop.

      Require GitHub CLI gh. Check gh --version. If missing, ask the user to install gh and stop.Require authenticated gh session. Run gh auth status. If not authenticated, ask the user to run gh auth login (and re-run gh auth status) before continuing.- Require GitHub CLI gh. Check gh --version. If missing, ask the user to install gh and stop. - Require authenticated gh session. Run gh auth status. If not authenticated, ask the user to run gh auth login (and re-run g…
    3. 03

      Naming conventions

      Branch: {description} when starting from main/master/default.

      Branch: {description} when starting from main/master/default.Commit: {description} (terse).PR title: {description} summarizing the full diff.
    4. 04

      PR template discovery

      Before creating the PR, resolve the repository root and look for the active GitHub PR template from there:

      .github/pullrequesttemplate.mdOne .md file under .github/pullrequesttemplate/Before creating the PR, resolve the repository root and look for the active GitHub PR template from there:
    5. 05

      Determining the PR

      When updating a PR created earlier in the flow, infer the PR from the current branch when possible:

      When updating a PR created earlier in the flow, infer the PR from the current branch when possible:If this finds an existing PR, preserve its current review state. Never convert an existing ready-for-review PR back to draft as part of yeet; only new PRs created by this flow should start as draft.

    Permission review

    Static risk signals and limitations

    Reads files

    low · line 42

    The documentation asks the agent to read local files, directories, or repositories.

    Discover and read the repository PR template, if any.

    Writes files

    medium · line 49

    The documentation asks the agent to create, modify, or delete local files.

    Write the PR description to a temp file with real newlines and pass it via `--body-file` or `gh pr edit --body-file` to avoid `\n`-escaped markdown.

    Runs scripts

    medium · line 56

    The documentation asks the agent to run terminal commands or scripts.

    git branch --show-current

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score69/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars25,188SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    openai/skills
    Skill path
    skills/.curated/yeet/SKILL.md
    Commit
    49f948faa9258a0c61caceaf225e179651397431
    License
    Not declared
    Collected
    2026-08-26
    Default branch
    main
    View the original SKILL.md

    Prerequisites

    • Require GitHub CLI gh. Check gh --version. If missing, ask the user to install gh and stop.
    • Require authenticated gh session. Run gh auth status. If not authenticated, ask the user to run gh auth login (and re-run gh auth status) before continuing.

    Naming conventions

    • Branch: {description} when starting from main/master/default.
    • Commit: {description} (terse).
    • PR title: {description} summarizing the full diff.

    PR template discovery

    Before creating the PR, resolve the repository root and look for the active GitHub PR template from there:

    repo_root="$(git rev-parse --show-toplevel)"
    

    Template candidates, in order:

    • .github/pull_request_template.md
    • .github/PULL_REQUEST_TEMPLATE.md
    • One *.md file under .github/pull_request_template/
    • One *.md file under .github/PULL_REQUEST_TEMPLATE/

    Use paths as emitted from the repository root, such as .github/pull_request_template.md, not ./.github/pull_request_template.md.

    If exactly one template is found, read it before composing the final PR body and pass it to gh pr create with --template "$template".

    If multiple template files are found, stop before PR creation and ask which template to use. If no template exists, use the fallback body shape in this skill.

    Workflow

    • If on main/master/default, create a branch: git checkout -b "{description}"
    • Otherwise stay on the current branch.
    • Confirm status, then stage everything: git status -sb then git add -A.
    • Commit tersely with the description: git commit -m "{description}"
    • Run checks if not already. If checks fail due to missing deps/tools, install dependencies and rerun once.
    • Push with tracking: git push -u origin $(git branch --show-current)
    • If git push fails due to workflow auth errors, pull from master and retry the push.
    • Discover and read the repository PR template, if any.
    • Check whether the current branch already has a PR: gh pr view "$(git branch --show-current)" --json number,isDraft,url
    • If a PR already exists, update that PR in place. Do not create another PR, and do not change whether the existing PR is draft or ready for review.
    • If no PR exists, open a new draft PR:
      • With one template: GH_PROMPT_DISABLED=1 GIT_TERMINAL_PROMPT=0 gh pr create --draft --fill --template "$template" --head "$(git branch --show-current)"
      • Without a template: GH_PROMPT_DISABLED=1 GIT_TERMINAL_PROMPT=0 gh pr create --draft --fill --head "$(git branch --show-current)"
    • Edit the PR title and body so they reflect the actual net change in the diff.
    • Write the PR description to a temp file with real newlines and pass it via --body-file or gh pr edit --body-file to avoid \n-escaped markdown.

    Determining the PR

    When updating a PR created earlier in the flow, infer the PR from the current branch when possible:

    git branch --show-current
    gh pr view "$(git branch --show-current)" --json number --jq '.number'
    

    If this finds an existing PR, preserve its current review state. Never convert an existing ready-for-review PR back to draft as part of yeet; only new PRs created by this flow should start as draft.

    PR Title

    Format: <type>(<scope>): <subject>

    <scope> is optional. A scope consist of a noun describing a section of the codebase (component, service or subsytem).

    Example

    feat: add hat wobble
    ^--^  ^------------^
    |     |
    |     +-> Summary in present tense.
    |
    +-------> Type: chore, docs, feat, fix, refactor, style, or test.
    

    More Examples:

    • feat: (new feature for the user, not a new feature for build script)
    • fix: (bug fix for the user, not a fix to a build script)
    • docs: (changes to the documentation)
    • style: (formatting, missing semi colons, etc; no production code change)
    • refactor: (refactoring production code, eg. renaming a variable)
    • test: (adding missing tests, refactoring tests; no production code change)
    • chore: (updating grunt tasks etc; no production code change)

    PR Body Contents

    When invoked, use gh to edit the pull request body and title to reflect the contents of the specified PR. Make sure to check the existing pull request body to see if there is key information that should be preserved. For example, NEVER remove an image in the existing pull request body, as the author may have no way to recover it if you remove it.

    When a repository PR template exists, adapt the final PR body to that template. Preserve meaningful headings, required checklists, and repo-specific prompts, but replace placeholder text with net-diff-specific content or N/A where the template asks for it. Do not discard template sections just because the fallback shape below is shorter.

    It is critically important to explain why the change is being made. If the current conversation in which this skill is invoked has discussed the motivation, be sure to capture this in the pull request body.

    The body should also explain what changed, but this should appear after the why.

    Limit discussion to the net change of the commit. It is generally frowned upon to discuss changes that were attempted but later undone in the course of the development of the pull request. When rewriting the pull request body, you may need to eliminate details such as these when they are no longer appropriate / of interest to future readers.

    Avoid references to absolute paths on my local disk. When talking about a path that is within the repository, simply use the repo-relative path.

    Default to omitting Verification. Add it only when you have behavioral evidence worth preserving for reviewers: a reproduced bug, a before/after check, a targeted test that exercises the changed behavior, or a manual scenario with input and observed outcome. Do not use it for generic commands or automation results such as package tests, type checks, linters, formatters, pre-commit/pre-push hooks, or CI status.

    If the repository template requires a validation or verification section, keep that section and avoid generic filler: include meaningful commands/results, a targeted manual scenario, or Not run with a reason.

    Use professional Markdown:

    • Put code, paths, commands, flags, and identifiers in backticks.
    • Use fenced code blocks for shell transcripts or multi-line examples.
    • Use GitHub permalinks when citing existing code relevant to the change.
    • Reference relevant issues or related PRs, but do not reference the PR in its own body.

    Suggested PR Body Shape

    Use this as a fallback when the repository does not have a PR template:

    ## Why
    
    Describe the user-facing or maintainer-facing problem, including cause and effect where useful.
    
    ## What Changed
    
    Describe the net implementation change in concise prose.
    

    Frequently asked questions

    What to verify before installation and use

    What does the yeet source document cover?

    Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`).

    How do I install yeet?

    The source record exposes this install command: npx skills add https://github.com/openai/skills --skill "skills/.curated/yeet". Inspect the command and pinned source before running it.

    Which permission-related actions were detected?

    Static rules flagged read-files, write-files, exec-script in the source; the page lists the matching lines and excerpts.

    Alternatives

    Compare before choosing

    Computed 10017

    dancingteeth/unified-code-review

    unified-code-review

    Risk-first code review for PRs and branch audits: blast-radius triage, agent-authored discipline (tests first, intent evidence), call-graph pincer for integration defects between modules, then structural code-judo bar. Use when reviewing PRs, auditing agent-written diffs, catching rubber-stamp green CI, or wiring bugs single-file review misses. Prefer over structure-only thermo-nuclear review alone. Do not use for unrelated coding tasks or as an always-on rule.

    Computed 9860

    magnus919/agent-skills

    software-architecture-analysis

    Use this skill to reverse-engineer an existing software system, map its architecture, data flow, privacy posture, coupling, quality characteristics, and feature surface, then produce an evidence-grounded clean-room design document, PRD, or migration plan under new constraints. Use for codebase archaeology, implicit contract extraction, architecture health assessment, or decomposition-readiness analysis. Do not use for greenfield architecture design, direct code review, bug hunting, security audi

    Computed 9724,975

    alirezarezvani/claude-skills

    adversarial-reviewer

    Adversarial code review that breaks the self-review monoculture. Use when you want a genuinely critical review of recent changes, before merging a PR, or when you suspect Claude is being too agreeable about code quality. Forces perspective shifts through hostile reviewer personas that catch blind spots the author's mental model shares with the reviewer.

    Computed 9764

    Jamie-BitFlight/claude_skills

    standards-for-python-development

    Shared Python 3.11+ development standards covering type safety (ty, native generics, Protocol, TypeIs), layered architecture, error handling, performance, identifier naming, UI/CLI patterns (Rich/Typer), testing requirements (pytest, 80% coverage, TDD), and quality gates. Activates when any Python skill or agent needs to apply shared standards for implementation, code review, refactoring, or test authoring.