Generate concise (typically 1–4 pages) patient-centered medical treatment plans in LaTeX/PDF when a clinician needs an actionable plan with SMART goals, evidence-based interventions, monitoring, and HIPAA-aware documentation.
65
79%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Other/treatment-plans/SKILL.mdUse this skill when you need to produce a clinically actionable, professionally typeset treatment plan (LaTeX → PDF), especially when:
Versions may vary by environment; pin them in your project if you need reproducibility.
xelatex (recommended)pdflatex (supported)tcolorbox (with most library), tikz/pgf, geometry, xcolor, fontspec (XeLaTeX/LuaLaTeX), fancyhdr, titlesec, enumitem, booktabs, longtable, array, colortbl, hyperref, natbibscripts/generate_template.pycheck_completeness.pyvalidate_treatment_plan.pytimeline_generator.pyscripts/generate_schematic.py for diagram generationBelow is a complete, runnable example that (1) generates a template, (2) compiles to PDF, and (3) runs validation checks. Adjust paths to match your repository layout.
cd .claude/skills/treatment-plans/scripts
# Generate a mental health plan template
python generate_template.py --type mental_health --output depression_treatment_plan.tex# Example: a simple treatment pathway flowchart
python scripts/generate_schematic.py "Depression treatment pathway: assessment -> CBT/SSRI -> monitoring -> escalation criteria" -o figures/depression_pathway.pngInclude the figure in your .tex file (example snippet):
\begin{figure}[h]
\centering
\includegraphics[width=0.95\linewidth]{figures/depression_pathway.png}
\caption{Treatment pathway overview.}
\end{figure}# Recommended (better font support)
xelatex depression_treatment_plan.tex
# If you use bibliography features
bibtex depression_treatment_plan || true
xelatex depression_treatment_plan.tex
xelatex depression_treatment_plan.texpython check_completeness.py depression_treatment_plan.tex
python validate_treatment_plan.py depression_treatment_plan.texpython timeline_generator.py --plan depression_treatment_plan.tex --output timeline.pdfMinimal LaTeX skeleton:
\maketitle
\thispagestyle{empty}
\begin{patientinfo}
% De-identified demographics, diagnosis, date, framework
\end{patientinfo}
\begin{goalbox}[Primary Treatment Goals]
\begin{itemize}
\item Goal 1 (metric + timeframe)
\item Goal 2 (metric + timeframe)
\end{itemize}
\end{goalbox}
\begin{keybox}[Core Interventions]
\begin{itemize}
\item Intervention 1 (dose/frequency if applicable)
\item Intervention 2 (visit cadence / therapy frequency)
\end{itemize}
\end{keybox}
\begin{warningbox}[Critical Decision Points]
\begin{itemize}
\item Escalate if threshold X is met
\end{itemize}
\end{warningbox}
\newpage
\tableofcontents
\newpageInclude only what changes decisions; prefer tables/bullets:
one_page_treatment_plan.tex: default for most cases (quick reference)general_medical_treatment_plan.tex: internal medicine / general practicerehabilitation_treatment_plan.tex: PT/OT/SLP protocols and milestonesmental_health_treatment_plan.tex: psychotherapy + pharmacotherapy + safety planchronic_disease_management_plan.tex: long-term targets + coordinationperioperative_care_plan.tex: pre/intra/post-op structure (ERAS, VTE, antibiotics)pain_management_plan.tex: multimodal analgesia + opioid risk mitigation63c61d3
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.