find-journal

find-journal is a skill for Claude Code from Aperivue/medsci-skills. It costs 130 tokens per session (4,143 once invoked), scanned A, original, MIT.

A recommendation tool that matches a medical manuscript with suitable academic journals. It uses journal profiles and returns ranked suggestions with reasons, artificial-intelligence disclosure policies, and website links.

In plain words
What is it for?
Recommending journals for a medical paper from its abstract, main findings, and study type, with additional publication details when available.
Why use it?
Choosing a journal requires comparing a paper's subject and study type with many journals' scopes and policies. This narrows that search to a short, explained list.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_SKILL_DIR} variable. Also seen: model in frontmatter.

Part of the medsci-submission plugin — 6 skills shipped together

Good fit Recommending journals for a medical paper from its abstract, main findings, and study type, with additional publication details when available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aperivue/medsci-skills/find-journal
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 Aperivue/medsci-skills --skill find-journal
Clone the repo
git clone --depth 1 https://github.com/Aperivue/medsci-skills

Made for: Claude Code.

Or install medsci-submission, the plugin that ships this one along with the rest of its 6 skills.

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 find-journal

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/aperivue/medsci-skills/find-journal"><img src="https://agentmods.dev/badge/skills/aperivue/medsci-skills/find-journal.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 130 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,143 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, 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 Excessive Agency · line 403
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00130 $0.04143
Opus 5 $0.00065 $0.02072
Sonnet 5 $0.00026 $0.00829
Haiku 4.5 $0.00013 $0.00414

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

Security

Grade A, and why

find-journal 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 12d 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.

skills/find-journal/SKILL.md · 405 lines

How it starts

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

Find Journal Skill

You are a journal recommendation engine for medical researchers. Given a manuscript's abstract, key findings, and study type, you match it against the curated public profile library plus any user-local private profiles, and return the top 5 ranked recommendations with scope fit rationale. Detailed write-paper profiles enrich the top-5 output when available.

Communication Rules

  • Communicate with the user in their preferred language.
  • Journal names, scope descriptions, and URLs are always in English.
  • Medical terminology is always in English.

Key Directories

Compact profiles for matching (two-tier discovery)

  1. Public library (shipped with the skill, curated + verified): ${CLAUDE_SKILL_DIR}/references/journal_profiles/
  2. User-local private library (per-user, never pushed to git, optional): $HOME/.claude/private-journal-profiles/find-journal/

The skill reads both directories and merges the results. Filenames must be unique across the two locations; on collision the private file wins (user override).

Detail profiles for top-5 enrichment (two-tier discovery)

  1. Public: ${CLAUDE_SKILL_DIR}/../write-paper/references/journal_profiles/
  2. User-local private: $HOME/.claude/private-journal-profiles/write-paper/

Same merge rule — private wins on filename collision.

Why two tiers?

Profiles in the public library must meet a hard verification bar (direct source reading of the journal's homepage and author guidelines — no inference from adjacent journals, no family-policy copy-paste). Profiles that a single user wants for their own workflow but that have not cleared the public bar live in the private library. See ${CLAUDE_SKILL_DIR}/POLICY.md for the promotion checklist (private → public).


Phase 1: Input Collection

Required Inputs

  1. Abstract text or key findings summary
  2. Study type: original research, meta-analysis, case report, technical note, review, letter, AI validation, diagnostic accuracy, etc.

Read the full file on GitHub · 405 lines

Files

What ships with it

60 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. 12d ago First seen · 405 lines · 130 tokens per session scan A 7cfe761e0cb7

Subscribe to this mod's changes

find-journal is a skill published in the GitHub repository Aperivue/medsci-skills (292 stars, last pushed 5d ago), licensed MIT. It adds 130 tokens to every session and 4,143 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-30.

Related

Other skills, from other repositories