OpenCandle: Skill for Codex

.agents/skills/yeet/SKILL.md

yeet is a skill for Codex from Kahtaf/OpenCandle. It costs 35 tokens per session (1,582 once invoked), scanned A, original, MIT.

A workflow for using GitHub’s command-line tool to stage changes, create a commit, push a branch, and open a pull request in one process.

In plain words
What is it for?
Preparing and submitting a completed code change as a GitHub pull request when the user explicitly requests the full flow.
Why use it?
It prevents common setup and review mistakes by checking the command-line tool, login status, branch naming, and pull-request template first.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is Kahtaf/OpenCandle's own configuration. It tells Codex how to work on OpenCandle itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything OpenCandle configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Kahtaf/OpenCandle. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Kahtaf/OpenCandle/main/.agents/skills/yeet/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Kahtaf/OpenCandle

Made for: Codex.

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 yeet

README.md
[![agentmods](https://agentmods.dev/badge/skills/kahtaf/opencandle/yeet.svg)](https://agentmods.dev/skills/kahtaf/opencandle/yeet)
Your own site
<a href="https://agentmods.dev/skills/kahtaf/opencandle/yeet"><img src="https://agentmods.dev/badge/skills/kahtaf/opencandle/yeet.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,582 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00035 $0.01582
Opus 5 $0.00017 $0.00791
Sonnet 5 $0.00007 $0.00316
Haiku 4.5 $0.00003 $0.00158

Measured 8d ago against content hash 4829d4909081, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

yeet scanned grade A with 0 findings 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/yeet/SKILL.md · 133 lines

How it starts

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

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.

Read the full file on GitHub · 133 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 133 lines · 35 tokens per session scan A 4829d4909081

Subscribe to this mod's changes

yeet is a skill published in the GitHub repository Kahtaf/OpenCandle (23 stars, last pushed today), licensed MIT. It adds 35 tokens to every session and 1,582 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.