How this command is triggered — by the user, by Claude, or both
Slash command
/manuscript:manuscript-prep <journal-name> [--checklist]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Manuscript Preparation Format a manuscript for a specific journal and run the submission checklist. Load the `manuscript:manuscript-formatting` skill for reference. ## Process ### 1. Identify Target Journal !echo "Target: $ARGUMENTS" ### 2. Locate Manuscript Files !ls -la *.md *.tex *.docx *.bib 2>/dev/null || echo "No manuscript files found" !ls -la figures/ 2>/dev/null || echo "No figures directory" ### 3. Check Journal Requirements Using the journal-requirements reference, verify: - Word/page limits - Required sections - Reference style - Figure format and resolution requirements ...
Format a manuscript for a specific journal and run the submission checklist. Load the manuscript:manuscript-formatting skill for reference.
!echo "Target: $ARGUMENTS"
!ls -la *.md *.tex *.docx *.bib 2>/dev/null || echo "No manuscript files found" !ls -la figures/ 2>/dev/null || echo "No figures directory"
Using the journal-requirements reference, verify:
Apply journal-specific formatting:
Run the full checklist from the manuscript-formatting skill:
Present a checklist summary with pass/fail for each item.
npx claudepluginhub neuromechanist/research-skills --plugin manuscript/paper-reviewRuns pre-submission audit of current paper using parallel review agents, checking content, arguments, numbers, references, DOIs, writing, figures, formatting, replication. Produces severity-ranked report with journal-readiness checklist.
/paper-referencesVerifies ML paper references against arXiv, Crossref, DBLP, and Semantic Scholar. Detects hallucinated citations, preprint/preprint status, and missing fields, then auto-fixes or reports issues.
/paperfitRoutes natural language tasks to PaperFit subprocesses for LaTeX paper formatting, layout analysis, and template migration. Automatically builds paper profiles and routes to fix workflows.
/ars-citation-checkTriggers academic-paper citation-check mode to produce a report on citation errors: missing references, mismatched in-text citations, and format issues.
/latex-consistencyRuns automated grep checks and applies fixes to standardize LaTeX formatting for ML conference papers. Covers math notation, references, tables, and style conventions.