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.
npx skills add Aperivue/medsci-skills --skill sync-submissiongit clone --depth 1 https://github.com/Aperivue/medsci-skillsWrote 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/aperivue/medsci-skills/sync-submission)<a href="https://agentmods.dev/skills/aperivue/medsci-skills/sync-submission"><img src="https://agentmods.dev/badge/skills/aperivue/medsci-skills/sync-submission/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/aperivue/medsci-skills/sync-submission"><img src="https://agentmods.dev/badge/skills/aperivue/medsci-skills/sync-submission.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00021 | $0.09941 |
| Opus 5 | $0.00010 | $0.04970 |
| Sonnet 5 | $0.00004 | $0.01988 |
| Haiku 4.5 | $0.00002 | $0.00994 |
Grade A, and why
sync-submission 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 4d 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 — 574 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sync Submission
You help keep the canonical manuscript and journal-specific submission packages
from drifting apart. The skill treats submission/{journal}/ as derived output
and records whether it is current, stale, or frozen.
When to Use
- Before submitting a journal package.
- After a journal portal or Word editor changed a submission manuscript.
- After rejection, before retargeting to another journal.
- Before
/orchestrate --e2emarks a project as submission-ready.
Inputs
- Project root containing
project.yaml, or a direct canonical manuscript path. - Journal short name, e.g.
chest,ryai,academic_radiology. - Optional mode:
audit: compare existing submission against canonical source.build: copy canonical source and optional declared final artifacts, preserving file bytes, and write metadata.freeze: freeze the chosen byte snapshot with its available check context (not submission approval).
Deterministic Script
python "${CLAUDE_SKILL_DIR}/scripts/sync_submission.py" audit --project-root . --journal chest
python "${CLAUDE_SKILL_DIR}/scripts/sync_submission.py" build --project-root . --journal chest
python "${CLAUDE_SKILL_DIR}/scripts/sync_submission.py" freeze --project-root . --journal chest --status submitted
For double-blind journals, sweep author identifiers across all upload artifacts:
python "${CLAUDE_SKILL_DIR}/scripts/blind_sweep.py" \
--registry _shared/authors/author_registry.yaml \
--files submission/{journal}/supplementary/*.md submission/{journal}/cover_letter.md \
--backup-dir .cache/blind_sweep_backup
The registry is a project-local YAML mapping author identifiers (full names, native scripts, initials with/without periods, email, ORCID) to role labels (e.g., "Reviewer 1"). See scripts/author_registry_example.yaml for schema. Never commit a populated registry to a public repository — keep it next to the manuscript.
Output Contract
| Artifact | Path | Purpose |
|---|---|---|
| Submission metadata | submission/{journal}/.journal_meta.json |
Source hash, status, canonical path |
| Sync audit | qc/submission_sync_{journal}.json |
Drift result consumed by orchestrator |
| Manifest update | artifact_manifest.json |
Submission package registry |
| Pre-flight gate | qc/preflight_gate_report.json |
Aggregated halt-on-failure manifest (see "Pre-flight gate" below) |
| Supplement structure | qc/supplement_structure.json |
Gate 14: index↔file 1:1, sub-section gaps, callout coverage |
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.
- examples/build_synthetic_bundle.py 3.6 KB runs code
- references/bundle_workflow.md 7.2 KB
- references/journal_availability_policy.json 1.2 KB
- scripts/_quote_match.py 7.7 KB runs code
- scripts/_yaml_frontmatter.py 1.6 KB runs code
- scripts/assemble_supplement.py 8.8 KB runs code
- scripts/author_registry_example.yaml 1.4 KB
- scripts/blind_sweep.py 7.7 KB runs code
- scripts/build_marked_manuscript.py 8.0 KB runs code
- scripts/check_asset_anonymization.py 15 KB runs code
- scripts/check_checklist_dump_leak.py 8.6 KB runs code
- scripts/check_credit_integrity.py 18 KB runs code
- scripts/check_cross_artifact_stale.py 11 KB runs code
- scripts/check_disclosure_availability.py 12 KB runs code
- scripts/check_marked_manuscript.py 12 KB runs code
- scripts/check_portal_field_residue_challenge/fixture/negative/abstract.txt 327 B
- scripts/check_portal_field_residue_challenge/fixture/negative/keywords.txt 327 B
- scripts/check_portal_field_residue_challenge/fixture/positive/abstract.txt 404 B
- scripts/check_portal_field_residue_challenge/fixture/positive/take_home.txt 104 B
- scripts/check_portal_field_residue_challenge/problem.md 1.5 KB
- scripts/check_portal_field_residue_challenge/verify.sh 1.8 KB runs code
- scripts/check_portal_field_residue.py 7.8 KB runs code
- scripts/check_portal_mirror.py 19 KB runs code
- scripts/check_wordcount_cap.py 11 KB runs code
- scripts/cover_letter_drift_check.py 19 KB runs code
- scripts/credit_integrity_challenge/fixture/manuscript_bad.md 400 B
- scripts/credit_integrity_challenge/fixture/manuscript_good.md 525 B
- scripts/credit_integrity_challenge/verify.sh 7.6 KB runs code
- scripts/cross_document_n_check.py 15 KB runs code
- scripts/detect_copy_divergence.py 5.1 KB runs code
- scripts/figure_portal_readiness_challenge/problem.md 1.5 KB
- scripts/figure_portal_readiness_challenge/verify.sh 4.2 KB runs code
- scripts/figure_portal_readiness_check.py 6.2 KB runs code
- scripts/portal_mirror_challenge/fixture/manuscript.md 1.2 KB
- scripts/portal_mirror_challenge/fixture/portal_complete/acknowledgements.txt 241 B
- scripts/portal_mirror_challenge/fixture/portal_complete/author_contributions.txt 230 B
- scripts/portal_mirror_challenge/fixture/portal_complete/competing_interests.txt 71 B
- scripts/portal_mirror_challenge/fixture/portal_complete/data_availability.txt 293 B
- scripts/portal_mirror_challenge/fixture/portal_dropped/acknowledgements.txt 131 B
- scripts/portal_mirror_challenge/fixture/portal_dropped/author_contributions.txt 174 B
- scripts/portal_mirror_challenge/fixture/portal_dropped/data_availability.txt 293 B
- scripts/portal_mirror_challenge/fixture/portal_reflowed/acknowledgements.txt 243 B
- scripts/portal_mirror_challenge/fixture/portal_reflowed/author_contributions.txt 231 B
- scripts/portal_mirror_challenge/fixture/portal_reflowed/competing_interests.txt 71 B
- scripts/portal_mirror_challenge/fixture/portal_reflowed/data_availability.txt 293 B
- scripts/portal_mirror_challenge/verify.sh 6.6 KB runs code
- scripts/preflight_gate.py 28 KB runs code
- scripts/scope_drift_check.py 12 KB runs code
- scripts/sync_submission.py 21 KB runs code
- skill.yml 2.7 KB
- tests/fixtures/copy_ok.md 249 B
- tests/fixtures/copy_stale.md 239 B
- tests/fixtures/ssot.md 251 B
- tests/fixtures/suppl_bad/00_index.md 91 B
- tests/fixtures/suppl_bad/S1_methods.md 43 B
- tests/fixtures/suppl_bad/S2_a.md 30 B
- tests/fixtures/suppl_bad/S2_b.md 30 B
- tests/fixtures/suppl_bad/S4_figs.md 17 B
- tests/fixtures/suppl_bad/S6_orphan.md 16 B
- tests/fixtures/suppl_clean/00_index.md 119 B
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.
- 4d ago Changed · +16 lines f7b831bc5999
- 11d ago First seen · 558 lines · 21 tokens per session scan A 016b88b1d495
sync-submission is a skill published in the GitHub repository Aperivue/medsci-skills (291 stars, last pushed 3d ago), licensed MIT. It adds 21 tokens to every session and 9,941 once invoked, about $0.0001 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
clinical-reports
Create safety-bounded draft structures and run local deterministic checks for clinical case, diagnostic, trial, safety, and aggregate research reports. Use only with synthetic, de-identified, or aggregate inputs and verified source-fact manifests; every output requires qualified review.
pydicom
Use pydicom to read, inspect, write, transform, and safely preflight local DICOM datasets and pixel data. Applies to DICOM metadata, transfer syntaxes, compression plugins, frames, private elements, JSON, and bounded de-identification review.
pptx-posters
Create and audit editable scientific posters in macro-free PowerPoint (.pptx) from author-approved local content and assets. Use when the requested deliverable is a PowerPoint research/conference poster and exact physical, printer, accessibility, provenance, and package-security checks are required.
venue-templates
Access comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing…
verified-spec-code-mapper
Establish explicit traceability between formal specifications (preconditions, postconditions, invariants) and verified code components with their correctness proofs. Produce structured Markdown mapping reports showing verification coverage and proof evidence. Use when auditing formal verification, documenting verified…
latex-empirical-tables
Set up, format, fix, and clean up LaTeX regression and estimation tables in empirical economics or finance papers. Use when (a) creating a .tex, results.tex, main.tex, or preamble to display regression or estimation output from Python (pyfixest), Stata, or R — including any mention of estout, esttab, estauto, estwide…