Borrowing it
Nothing to install: this file belongs to adamw7/tools. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/adamw7/tools/main/.claude/skills/adopt-pipeline/SKILL.mdgit clone --depth 1 https://github.com/adamw7/toolsWrote 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.
[](https://agentmods.dev/skills/adamw7/tools/adopt-pipeline)<a href="https://agentmods.dev/skills/adamw7/tools/adopt-pipeline"><img src="https://agentmods.dev/badge/skills/adamw7/tools/adopt-pipeline.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 4 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Agent Snooping · line 46 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 47 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 48 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 62 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00093 | $0.03061 |
| Opus 5 | $0.00046 | $0.01530 |
| Sonnet 5 | $0.00019 | $0.00612 |
| Haiku 4.5 | $0.00009 | $0.00306 |
Grade A, and why
adopt-pipeline 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 194 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Adopt Pipeline Skill
Change the adopt module — a pipeline of small, ordered steps that clones a
GitHub repository, wires Claude Code into it, and opens a pull request. The
module's rules are unusually strict because it shells out to git, gh and
claude against real repositories.
The pipeline, in order
GitHubRepoAdopter.defaultSteps(options) assembles:
ToolchainStep— the pipeline's own tools:git,claude,gh(andghis logged in). Fails before any expensive work. A dry run is checked withToolchainStep.forDryRun()—gitandclaudeonly, sinceghis used by the pull request the run leaves out.CloneStep— clones into the workspace, then rewrites the checkout'sorigintocheckoutUrl(), the same URL without its credentials, so the token git wrote into.git/configdoes not outlive the run.BuildToolchainStep— the cloned project's build tool, checked as soon as the clone reveals which one it is.BranchStep— feature branch (claude/adopt-claude-codeby default). The default branch is never written to.TrustStep— marks the checkout trusted for Claude Code.ClaudeInitStep→ClaudeMdConformanceStep→CommitStep— generateCLAUDE.md, conform it (plus a companionAGENTS.md) as far as the guard about to be wired in demands —BuildSystem.requiredClaudeMdSections(), so only the Maven path adds the format rule's Java/Maven headings — commit.EnforcerStep→CommitStep— wire the build-tool-aware guard in and commit.- (optional)
AssetsStep→SkillsStep→CommitStep— starter config assets and the starter skills, on--assets, in one commit. VerifyStep— proves the guard passes on the generated file.PushStep→PullRequestStep— omitted entirely on a dry run, so the report says what a dry run really did rather than listing steps that pretended to run.
The build-system-aware steps (BuildToolchainStep, ClaudeMdConformanceStep,
EnforcerStep, SkillsStep, VerifyStep) share one BuildSystems.defaults(...)
list, so the guard that is wired in is the guard that is verified with the tool
that was probed, and the one the starter skills describe (MavenBuildSystem,
GradleBuildSystem, FallbackBuildSystem).
What ships with it
1 file 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.
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.
- yesterday Changed cd0e7829d236
- 3d ago Changed · +21 lines 645b1ed802ad
- 7d ago First seen · 173 lines · 93 tokens per session scan A 7d1735ed9450
adopt-pipeline is a skill published in the GitHub repository adamw7/tools (11 stars, last pushed yesterday), licensed MIT. It adds 93 tokens to every session and 3,061 once invoked, about $0.0005 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.
Other skills, from other repositories
agent-merge-conflict-arbiter
Neutral arbiter for merge conflicts between two agents.
git-advanced-workflows
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.
nullaway
Guide for resolving NullAway static analysis errors. Best practices for: Passing ObservableSupplier/Supplier Dereferencing potentially @Nullable values Adding @NullMarked to Java code.
comet-github-issue-fix
A workflow for fixing a confirmed Comet-related GitHub issue or review blocker within an isolated scope. It covers matching the work to the relevant workflow, testing the change, checking runtime results, and preparing a careful handoff.
cleanup-code-inspections
Reduce technical debt and improve code quality by systematically resolving static analysis warnings.
git-commit
Generate conventional commit messages for Java projects. Use when user says "commit", "create commit", "commit changes", or after completing code changes that need to be committed.