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.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/open-access-scout
Metadata
Additional technical details for this skill
- version
- 1.0
- skill author
- AIPOCH
SKILL.md
Open Access Journal Scout
Find legitimate open access journals, verify publisher credibility, and avoid predatory publication traps.
Quick Start
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
results = scout.search(
keywords=["immunotherapy", "cancer"],
filters={
"indexed_in": ["PubMed", "Scopus"],
"peer_review": "double_blind",
"apc_max": 2500
}
)
2. Predatory Check
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
comparison = scout.compare_apc(
journals=["Journal A", "Journal B"],
currency="USD"
)
CLI Usage
python scripts/oa_scout.py --search "oncology immunotherapy" --max-apc 2000
Skill ID: 210 | Version: 1.0 | License: MIT
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?