Agent skill

open-access-scout

Use when finding open access journals, checking journal policies, or identifying predatory publishers. Helps researchers locate legitimate open access venues and avoid publication scams.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill open-access-scout --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Version: 1.0
Allowed tools: ReadWriteBashEdit
Path: skills/analysis/open-access-scout/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Open Access Journal Scout Find legitimate open access journals, verify publisher credibility, and avoid predatory publication traps. ## Quick Start ```python from scripts.oa_scout import OpenAccessScout scout = OpenAccessScout() # Find journals journals = scout.find_journals( subject="oncology", impact_range=(2, 5), max_apc=2000 ) ``` ## Core Capabilities ### 1. Journal Search ```python results = scout.search( keywords=["immunotherapy", "cancer"], filters={ "indexed_in": ["PubMed", "Scopus"], "peer_review": "double_blind", "apc_max": 2500 } ) ``` ### 2. Predatory Check ```python assessment = scout.assess_journal("Journal of Medical Advances") print(f"Trust score: {assessment.score}/100") print(f"Red flags: {assessment.red_flags}") ``` **Warning Signs:** - No clear editorial board - Rapid review promises (<2 weeks) - Excessive APCs (>$3000) - Not indexed in major databases - Spam email invitations ### 3. APC Comparison ```python comparison = scout.compare_apc( journals=["Journal A", "Journal B"], currency="USD" ) ``` ## CLI Usage ```bash python scripts/oa_scout.py --search "oncology immunotherapy" --max-apc 2000 ``` --- **Skill ID**: 210 | **Version**: 1.0 | **License**: MIT

What's inside
Steps it walks through
  1. Quick Start
  2. Core Capabilities
  3. 1. Journal Search
  4. 2. Predatory Check
  5. 3. APC Comparison
  6. CLI Usage
Ships with 1 file
  • metadata.json
Commands it runs
python scripts/oa_scout.py --search "oncology immunotherapy" --max-apc 2000
More from claude-skill-registry
All skills →
About this skill
What does the open-access-scout skill do?

Use when finding open access journals, checking journal policies, or identifying predatory publishers. Helps researchers locate legitimate open access venues and avoid publication scams.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill open-access-scout --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going