globus-mcp: Skill for Claude Code

.agents/skills/globus-review/SKILL.md

globus-review is a skill for Claude Code from PurdueRCAC/globus-mcp. It costs 125 tokens per session (3,710 once invoked), scanned A, original, MIT.

A review workflow for checking a finished code change by having a fresh reviewer inspect the project, requirements, rules, and branch changes. It keeps the reviewer from seeing the original plan or technical notes.

In plain words
What is it for?
Use it to check a completed feature branch, test its correctness, compare it with the stated goal and project rules, and record findings in a review report.
Why use it?
It reduces the risk that the person who built a change will overlook its mistakes. The review is based on commands and evidence rather than opinion.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; names the AskUserQuestion tool; installed under .agents/ (shared by several agents).

This is PurdueRCAC/globus-mcp's own configuration. It tells Claude Code how to work on globus-mcp 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 globus-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to PurdueRCAC/globus-mcp. 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/PurdueRCAC/globus-mcp/main/.agents/skills/globus-review/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/PurdueRCAC/globus-mcp

Made for: Claude Code.

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 globus-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/purduercac/globus-mcp/globus-review/github.svg)](https://agentmods.dev/skills/purduercac/globus-mcp/globus-review)
Your own site
<a href="https://agentmods.dev/skills/purduercac/globus-mcp/globus-review"><img src="https://agentmods.dev/badge/skills/purduercac/globus-mcp/globus-review/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 globus-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/purduercac/globus-mcp/globus-review"><img src="https://agentmods.dev/badge/skills/purduercac/globus-mcp/globus-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,710 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.
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.00125 $0.03710
Opus 5 $0.00063 $0.01855
Sonnet 5 $0.00025 $0.00742
Haiku 4.5 $0.00013 $0.00371

Measured 10d ago against content hash 318e9e2fa5f7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

globus-review 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 10d 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/globus-review/SKILL.md · 216 lines

How it starts

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

globus-review — adversarial QA (clean context)

When to Use

Invoke /globus-review when a branch's TECH.md is fully built (status: in_review). Best run in a fresh session — but the real guarantee comes from delegating scrutiny to freshly-spawned subagents with curated inputs, so bias is removed even if this session is not clean. The reviewer grades the diff against the locked GOAL.md and the AGENTS.md invariants, by executed command, not opinion.

Operating manual: .agents/factory/review-rubric.md and .agents/factory/invariants.md. Read them before delegating.

Harness portability. Runs on any harness — see factory/portability.md. Fallbacks: run the Current state commands yourself if not auto-injected; ask in plain text and STOP if AskUserQuestion is unavailable; if subagents are unavailable, perform the correctness pass yourself in a clean context (you lose delegated blindness — compensate with executed evidence, per the rubric); and skip ReportFindings (REVIEW.md is the durable record). The production-safety rules are not portable-away — see the rubric.

User Instructions

Additional instructions provided with the invocation: $ARGUMENTS

Current state (injected at load)

  • Branch: !git branch --show-current
  • Base: main (feature/fix branch base; confirm from base: in TECH.md during Step 1).
  • Diffstat vs main: !git diff --stat main...HEAD 2>/dev/null | tail -n 20

Argument Parsing

  • status → report the current review verdict from TECH.md and any existing REVIEW.md; no work.
  • debate → run the two-independent-reviewer variant (for high-risk / coupled-core diffs).
  • completeness → also run the separate completeness sub-pass (may see TECH.md).

Safety Principles

  • Blindness is the point. The correctness reviewer subagent is given GOAL.md, the diff, the runnable repo, invariants.md, and review-rubric.md — and is explicitly told NOT to read PLAN.md, TECH.md, research/, or META.md (the last leaks author intent / harness notes, same reason as PLAN/TECH). Only this skill (the orchestrator) reads TECH.md, and only for the base/slug/kind metadata — it must not pass PLAN/TECH content into the reviewer prompt. The diff must be blind too: those artifacts are committed on the branch, so a plain git diff {base}...HEAD hands the reviewer PLAN/TECH/research (and any prior cycle's REVIEW.md) as added hunks — the ':(exclude)spec/' pathspec below is load-bearing, not cosmetic.
  • External verification is the spine — and it never touches production. Every finding must cite an executed command (uv run pytest, a client round-trip through .agents/factory/bin/mcp_probe.py, a throwaway driver that monkeypatches globus_mcp.cli.globus). No assertion-only findings. Equally: no finding may be produced by calling a mutating tool or using real credentials. Drives run under .agents/factory/bin/temp_home.sh. "Not reproducible without live credentials" is PLAUSIBLE, never CONFIRMED, and never a reason to reach for credentials.
  • Refute before reporting. Try to disprove each candidate; classify CONFIRMED (reproduced) vs PLAUSIBLE (needs human triage). Default to dropping when uncertain.
  • Scope is narrow: correctness bugs, GOAL R-ID gaps, AGENTS.md invariant violations (auto-CRITICAL), and scope creep (changes mapping to no R-ID). No style nits, no speculative hardening — a gap-hunting reviewer manufactures gaps.
  • Read-only session. This skill makes no source edits; it writes REVIEW.md and updates the TECH.md review block via set_phase.py.
  • Mandatory human gate when any CONFIRMED finding touches the high-blast-radius core (src/globus_mcp/tools/__init__.py, cli.py, compute.py, server.py, __init__.py) or a safety invariant (the consent contract, the shell=False subprocess boundary, the stdio-channel rule, the mutating-tool list, credential handling) — regardless of auto-loop.
  • Bounded loop: ≤ 2–3 review↔build cycles; escalate to the human on non-convergence.

Read the full file on GitHub · 216 lines

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. 10d ago First seen · 216 lines · 125 tokens per session scan A 318e9e2fa5f7

Subscribe to this mod's changes

globus-review is a skill published in the GitHub repository PurdueRCAC/globus-mcp (1 stars, last pushed 15d ago), licensed MIT. It adds 125 tokens to every session and 3,710 once invoked, about $0.0006 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-31.