sks-land

sks-land is a skill for Claude Code, Codex from shikanime-labs/skills. It costs 34 tokens per session (2,805 once invoked), scanned C, original, Apache-2.0.

A guide for merging an approved pull request in the shikanime organizations and deliberately closing its linked issue.

In plain words
What is it for?
Use it to verify the issue checklist, current approval, and CI status, then land the pull request and perform the required post-merge updates.
Why use it?
It ensures the work is complete, reviewed by a human, and covered by passing checks before changes reach the main branch.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to verify the issue checklist, current approval, and CI status, then land the pull request and perform the required post-merge updates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shikanime-labs/skills/sks-land
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.

Any agent
npx skills add shikanime-labs/skills --skill sks-land
Clone the repo
git clone --depth 1 https://github.com/shikanime-labs/skills

Made for: Claude Code, 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 sks-land

README.md
[![agentmods](https://agentmods.dev/badge/skills/shikanime-labs/skills/sks-land/github.svg)](https://agentmods.dev/skills/shikanime-labs/skills/sks-land)
Your own site
<a href="https://agentmods.dev/skills/shikanime-labs/skills/sks-land"><img src="https://agentmods.dev/badge/skills/shikanime-labs/skills/sks-land/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sks-land

Your own site · 80×15
<a href="https://agentmods.dev/skills/shikanime-labs/skills/sks-land"><img src="https://agentmods.dev/badge/skills/shikanime-labs/skills/sks-land.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,805 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00034 $0.02805
Opus 5 $0.00017 $0.01403
Sonnet 5 $0.00007 $0.00561
Haiku 4.5 $0.00003 $0.00281

Measured yesterday against content hash a44b8406c882, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

sks-land scanned grade C 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 yesterday.

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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf <path>
skills/shikanime-studio/sks-land/SKILL.md · 253 lines

How it starts

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

Shikanime Org PR Landing

Land a shikanime-labs/* / shikanime-studio/* PR only after sks-pr-resolve reconciled it and a human approving review is in place — protect main. Not for opening (sks-pr), review (sks-pr-review), reconciling (sks-pr-resolve), or direct "push to main". This skill only lands.

When to Use

  • "Land a shikanime PR after DoD gates pass."
  • "Close an issue deliberately after merge (verify N-of-N)."
  • "Run post-merge sync (docs, downstream rebases)."

Pre-landing gates (must already hold)

Gate 1 — DoD discharged. Issue criteria (- [ ], sks-issue) all checked; re-read the ledger (unchecked box blocks merge):

gh issue view <N> --repo <org>/<repo> --json body --jq .body

Gate 2 — yorha-operator approval (mandatory, non-bypassable). Before any other review consideration, the merge is blocked until yorha-operator has an APPROVED review on the current head commit — a stale approval after a new push does not count, and --admin may bypass branch protection but never this gate. CI green: gh pr checks <M> --repo <org>/<repo>. Verify the operator approval against the head SHA (REST reviews carry commit_id):

R=<org>/<repo>; M=<PR>
HEAD=$(gh pr view "$M" -R "$R" --json headRefOid -q .headRefOid)
gh api "repos/$R/pulls/$M/reviews" --paginate \
  --jq 'map(select(.user.login == "yorha-operator" and .state == "APPROVED"
                 and .commit_id == "'"$HEAD"'")) | length > 0'

FalseBLOCKED: yorha-operator approval required — request it (gh pr edit <M> -R "$R" --add-reviewer yorha-operator) or obtain it verbally, then re-verify on the new head. In addition, sks-pr-review approval applies as before: approved on current head; re-review if new commits landed.

gh pr view <M> --repo <org>/<repo> --json reviews,headRefOid \
  --jq '.reviews | map(select(.state == "APPROVED")) | length > 0'

Agent review is pre-flight; a human approving review is the gate. Where branch protection blocks self-approval (e.g. shikanime-labs/skills, nix-containers), a verbal lgtm from the operator (the user operating yorha-operator) satisfies Gate 2 — land via gh pr merge --squash --admin (see Merge procedure). --admin is what bypasses the protection; no separate human review is then required.

Read the full file on GitHub · 253 lines

Files

What ships with it

3 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. yesterday Changed · +45 lines a44b8406c882
  2. 12d ago First seen · 208 lines · 34 tokens per session scan C e0ea519d1705

Subscribe to this mod's changes

sks-land is a skill published in the GitHub repository shikanime-labs/skills (2 stars, last pushed today), licensed Apache-2.0. It adds 34 tokens to every session and 2,805 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.