setup

A setup script for scaffolding a project by cloning a repository and installing its real library. It is intended to be run only when explicitly requested or called by the YOINK orchestrator.

In plain words
What is it for?
Use it to start a YOINK project from a repository, install the package, and stop with a notice if no `pyproject.toml`, `setup.py`, or `setup.cfg` is found.
Why use it?
It standardizes the initial project setup and checks whether the cloned repository is a supported Python package before continuing.

Skill for Claude CodeCodex

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/theogbrand/yoink/setup
Any agent
npx skills add theogbrand/yoink --skill setup
Clone the repo
git clone --depth 1 https://github.com/theogbrand/yoink

Made for: Claude Code, Codex.

Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 202 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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 $0.00029 $0.00202
Opus 5 $0.00015 $0.00101
Sonnet 5 $0.00006 $0.00040
Haiku 4.5 $0.00003 $0.00020

Measured 2d ago against content hash 8bb9660896d0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

setup 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 2d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (assets/template-__init__.py, scripts/prepare.py, scripts/setup.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

plugins/yoink/skills/setup/SKILL.md · 20 lines

What it actually says

Setup

Do not invoke this skill unless explicitly requested. It is called by /yoink:yoink or run standalone by the user.

Execute the setup script to scaffold the project:

"${CLAUDE_SKILL_DIR}/scripts/setup.sh" $ARGUMENTS

After the setup script runs, print its full output to the user verbatim.

CRITICAL: After setup completes, check the cloned repo for a Python package (e.g., pyproject.toml, setup.py, or setup.cfg in .yoink/reference/). If none are found, inform the user that YOINK currently only supports Python packages and exit. You MUST NOT proceed to subsequent phases.

Files

What ships with it

5 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. 2d ago First seen · 20 lines · 29 tokens per session scan A 8bb9660896d0

Subscribe to this mod's changes

setup is a skill published in the GitHub repository theogbrand/yoink (35 stars, last pushed 5mo ago), licensed MIT. It adds 29 tokens to every session and 202 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

pr-test

E2E manual testing of PRs/branches using docker compose, agent-browser, and API calls. TRIGGER when user asks to manually test a PR, test a feature end-to-end, or run integration tests against a running system.

Significant-Gravitas/AutoGPT · 51 tokens

pr-address

Address PR review comments and loop until CI green and all comments resolved. TRIGGER when user asks to address comments, fix PR feedback, respond to reviewers, or babysit/monitor a PR.

Significant-Gravitas/AutoGPT · 42 tokens

pr-polish

Alternate /pr-review and /pr-address on a PR until the PR is truly mergeable — no new review findings, zero unresolved inline threads, zero unaddressed top-level reviews or issue comments, all CI checks green, and two consecutive quiet polls after CI settles. Use when the user wants a PR polished to merge-ready…

Significant-Gravitas/AutoGPT · 77 tokens

setup-repo

Initialize a worktree-based repo layout for parallel development. Creates a main worktree, a reviews worktree for PR reviews, and N numbered work branches. Handles .env creation, dependency installation, and branchlet config. TRIGGER when user asks to set up the repo from scratch, initialize worktrees, bootstrap their…

Significant-Gravitas/AutoGPT · 101 tokens

write-frontend-tests

Analyze the current branch diff against dev, plan integration tests for changed frontend pages/components, and write them. TRIGGER when user asks to write frontend tests, add test coverage, or 'write tests for my changes'.

Significant-Gravitas/AutoGPT · 48 tokens

open-pr

Open a pull request with proper PR template, test coverage, and review workflow. Guides agents through creating a PR that follows repo conventions, ensures existing behaviors aren't broken, covers new behaviors with tests, and handles review via bot when local testing isn't possible. TRIGGER when user asks to "open a…

Significant-Gravitas/AutoGPT · 101 tokens