Borrowing it
Nothing to install: this file belongs to monarch-initiative/dismech. 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/monarch-initiative/dismech/main/.claude/skills/curate-next/SKILL.mdgit clone --depth 1 https://github.com/monarch-initiative/dismechWrote 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/monarch-initiative/dismech/curate-next)<a href="https://agentmods.dev/skills/monarch-initiative/dismech/curate-next"><img src="https://agentmods.dev/badge/skills/monarch-initiative/dismech/curate-next/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.
<a href="https://agentmods.dev/skills/monarch-initiative/dismech/curate-next"><img src="https://agentmods.dev/badge/skills/monarch-initiative/dismech/curate-next.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00073 | $0.03322 |
| Opus 5 | $0.00036 | $0.01661 |
| Sonnet 5 | $0.00015 | $0.00664 |
| Haiku 4.5 | $0.00007 | $0.00332 |
Grade A, and why
curate-next 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 9d 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.
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.
curate-next
Curate the next N disease curation issues that are assigned solely to the current GitHub user and not yet covered by a PR. Dispatches /curate in parallel — one agent per disease.
When to use
- "Curate my next 3 diseases"
- "/curate-next 5"
- "Take the next available curation assignments off my plate"
Skip when:
- The user names a specific disease — invoke
/curate <name>directly instead. - The user has no open curation assignments — invoke
/claim-disease Nfirst to file issues. - The user wants to claim and curate in one step — that's a
/claim-diseasethen/curate-nextchain, not this skill alone.
Inputs
- Required positional argument N: number of diseases to curate in parallel. Must be a positive integer between 1 and 8 inclusive.
- Invoked as
/curate-next 3. If N is missing, non-integer,<= 0, or> 8, stop and ask the user to clarify rather than guess. The cap exists because each/curateflow is long-running and parallel sub-agents past 8 saturate the orchestrator's context.
Workflow
- Validate N. Parse the positional argument. Reject if missing, non-integer,
<= 0, or> 8— ask the user rather than silently capping. Never default to a value the user did not provide. - Resolve the current GitHub user:
USER=$(gh api user -q .login). Use that login as the assignee filter and never hardcode a username. - Fetch open curation issues assigned to the user.
Thegh issue list \ --assignee @me \ --state open \ --label curation \ --json number,title,assignees,body,createdAt \ --limit 100--label curationfilter is what restricts to "new disease curation requests" — issues filed by/claim-diseasecarry thecuration,enhancementlabels and the title patternCurate <label> (<MONDO_ID>). If a contributor opens curation issues with a different label, document it in this skill rather than relaxing the filter. - Filter to sole-assignee issues. Drop any issue whose
assigneesarray has more than one entry. The user explicitly wants solo work — an issue assigned to bothaliceandbobis a team task, even if the current user isalice. Do this filter in jq, not by hand:jq '[.[] | select((.assignees | length) == 1)]' - Filter out issues with an existing PR. For each remaining issue number
ISSUE_NUM, check the authoritative GitHub linkage on the issue itself:
Skip the issue if the count is non-zero. A merged PR usually means the issue should already be closed, but stale links happen — be conservative.# Authoritative: PRs GitHub has linked via closes/fixes/resolves keywords # (this is the same data the issue's "Development" sidebar shows) gh issue view "${ISSUE_NUM}" --json closedByPullRequestsReferences \ -q '.closedByPullRequestsReferences | length'
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.
- 9d ago First seen · 133 lines · 73 tokens per session scan A 8f5e5ab998e2
curate-next is a skill published in the GitHub repository monarch-initiative/dismech (59 stars, last pushed today), licensed BSD-3-Clause. It adds 73 tokens to every session and 3,322 once invoked, about $0.0004 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
parallel-feature-development
Coordinate parallel feature development with file ownership strategies, conflict avoidance rules, and integration patterns for multi-agent implementation. Use this skill when decomposing a large feature into independent work streams, when two or more agents need to implement different layers of the same system…
bazel-build-optimization
Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.
track-management
Use this skill when creating, managing, or working with Conductor tracks - the logical work units for features, bugs, and refactors. Applies to spec.md, plan.md, and track lifecycle operations.
pr-review-triage
Watch open PRs, check CI status, review staleness, merge conflicts, and unanswered review comments. Produces a prioritized watchlist.
mcore-split-pr
Split a PR into multiple PRs to reduce the number of required CODEOWNERS reviewer groups.
planning
Create structured plan documents and track work items using YAML frontmatter. Use when the user wants to plan a feature, track progress, log bugs/tasks/ideas, or organize project work.