一键导入
convert-proposal
Build the T32 grant proposal as PDF and/or Word. Supports full build, Word-only, PDF-only, or single-section Word export for collaborator review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build the T32 grant proposal as PDF and/or Word. Supports full build, Word-only, PDF-only, or single-section Word export for collaborator review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Full grant review pipeline — runs compliance checker, study section reviewer, and proofreader on the T32 proposal. Aggregates all results into a single summary report.
Compile the LaTeX manuscript. Runs latexmk (or multi-pass pdflatex + biber) from the project root and reports errors, warnings, and undefined references.
Challenge academic content with 5-7 specific pedagogical questions. Checks ordering, prerequisites, gaps, alternatives, notation conflicts, cognitive load, and standalone readiness. Works on slides, lecture notes, paper drafts, and assignments.
Run holistic pedagogical review on teaching materials — slides, lecture notes, assignments, or syllabi. Checks narrative arc, prerequisites, worked examples, notation clarity, and pacing.
Run the proofreading protocol on project files. Checks grammar, typos, overflow, consistency, and academic writing quality. Produces a report without editing files.
Run the R code review protocol on R scripts. Checks code quality, reproducibility, data.table conventions, domain correctness, and professional standards. Produces a report without editing files.
| name | convert-proposal |
| description | Build the T32 grant proposal as PDF and/or Word. Supports full build, Word-only, PDF-only, or single-section Word export for collaborator review. |
| disable-model-invocation | true |
| argument-hint | [all | pdf | word | word-section SEC=filename] |
Build the proposal in PDF and/or Word format.
Parse the argument:
$ARGUMENTS = all or empty → build both PDF and Word$ARGUMENTS = pdf → build PDF only$ARGUMENTS = word → build Word only$ARGUMENTS starts with word-section → single section to Word (extract SEC= value)For PDF builds:
mkdir -p build
latexmk -pdfxe -cd -outdir=build proposal/main.tex
After success:
pdfinfo build/main.pdf | grep Pagesopen build/main.pdfFor Word builds (full):
mkdir -p build
pandoc \
--from=latex \
--to=docx \
--reference-doc=proposal/pandoc/reference.docx \
--bibliography=proposal/references.bib \
--citeproc \
--output=build/T32_proposal.docx \
proposal/01_background.tex \
proposal/02_program_admin.tex \
proposal/03_program_faculty.tex \
proposal/04_proposed_training.tex \
proposal/05_program_evaluation.tex \
proposal/06_trainee_candidates.tex \
proposal/07_institutional_environment.tex \
proposal/08_training_outcomes.tex \
proposal/09_diversity_recruitment.tex \
proposal/10_rcr_plan.tex \
proposal/12_reproducibility.tex \
proposal/11_facilities_resources.tex
After success:
open build/T32_proposal.docxFor single-section Word builds:
Extract the section filename from the argument. For example, if $ARGUMENTS = word-section SEC=01_background:
mkdir -p build
pandoc \
--from=latex \
--to=docx \
--reference-doc=proposal/pandoc/reference.docx \
--bibliography=proposal/references.bib \
--citeproc \
--output=build/01_background.docx \
proposal/01_background.tex
Report results:
If a build fails: