paper-submission-priority

Ranks research papers by quality scores and prepares submission-ready bundles with clean pdflatex compilation.

6|1|Updated May 11, 2026
One-click install
npx skills add https://github.com/yakeworld/Synthos --skill paper-submission-priority-yakeworld
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: paper-submission-priority
Source: https://github.com/yakeworld/Synthos/tree/main/skills/private/paper-submission-priority
Command: npx skills add https://github.com/yakeworld/Synthos --skill paper-submission-priority-yakeworld

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Selecting which research papers are ready for journal submission requires manually checking quality scores, citation health, gate results, and PDF availability across many paper directories, which is error-prone and slow. ## Core Features & Use Cases - Candidate Ranking: Scans each paper's state.json for top-level quality_score, D10a, and Gates_result, then produces a submission priority list sorted by quality score with missing-item flags (needs supplement / no PDF). - Citation Health Anomaly Detection: Isolates papers with D10a=0 and separately checks orphans_count and zombies_count so anomalous papers are flagged instead of mixed into normal candidates. - Submission Preparation Checklist: Runs pdflatex to confirm 0 errors and 0 undefined references, creates and pushes a GitHub repository for G7 reproducibility, and verifies author affiliation and email. - Use Case: Given a directory of ophthalmology and neurology paper outputs, generate a ranked list of submission candidates (e.g., 147-lens-capsule-biomechanics-ODE at 96 down to bppv-canalith-relocation-ode at 95) and prepare the top paper's final PDF bundle. ## Quick Start Scan all papers under outputs/papers, rank them by quality score, flag any with missing items or citation anomalies, and prepare the top candidate for submission.

Frequently Asked Questions about paper-submission-priority

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I rank research papers by quality score for submission?

Scan each paper directory's state.json and read quality_score from the top-level fields, then sort candidates in descending order. Papers with missing items are flagged as needing supplement or lacking a PDF rather than excluded silently.

How to parse D10a metrics stored as both numbers and percent strings?

Handle both formats explicitly: a numeric value like 100.0 is used directly, while a string like "100%" is stripped of the percent sign and converted to float. This prevents parse failures that would otherwise zero out valid papers.

Why does my paper quality score read as -1 from state.json?

The score is stored in top-level fields, not nested structures, so querying a nested path returns -1. Read quality_score directly from the top level of state.json to get the correct value.

What should I check when a paper has D10a equal to zero?

Treat D10a=0 as a citation health anomaly and inspect orphans_count and zombies_count separately, since both can be zero while D10a remains zero. Also verify whether Gates_result is a string or a dictionary before flagging the paper as needing supplement.

What is required in a submission-ready paper bundle?

A clean pdflatex compile with 0 errors and 0 undefined references producing the final PDF, a GitHub repository with the code pushed for G7 reproducibility, and verified author affiliation and email matching the specified institution.