.cursor/skills/scientific-writing/SKILL.md
Creates concise, structured scientific documents with LaTeX equations, integrated figures, and clear technical writing. Use when documenting results, writing research summaries, or creating technical reports.
npx skillsauth add surajinacademia/AI-Aided-Research-Workflow scientific-writingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Creates publication-quality markdown documents with mathematical rigor and visual clarity.
# [Descriptive Title]
## Summary
[2-3 sentences: what was done, key finding, significance]
## Methods
[Essential details only - enough to reproduce]
## Results
[Observations → Data → Interpretation]
### [Subsection 1]
[Finding with supporting figure/equation]
### [Subsection 2]
[Finding with supporting figure/equation]
## Discussion
[Implications, limitations, future directions - 1 paragraph max]
Summary (3-5 lines)
Methods (minimal)
Results (core content)
Discussion (1 paragraph)
Before (wordy):
The results that we obtained from the experiment clearly demonstrate that there is a significant increase in the fluorescence intensity.
After (concise):
Fluorescence intensity increased 3.2-fold (p < 0.001).
Common eliminations:
Vague: "The protein concentration was high" Precise: "Protein concentration was 2.5 mg/mL"
Vague: "Cells responded quickly" Precise: "Cells responded within 30 s"
Use $...$ for inline equations:
The diffusion coefficient $D = 0.43 \pm 0.05 \, \mu\text{m}^2/\text{s}$ indicates...
Use $$ with \begin{} and \end{} for block equations:
The force balance is described by:
$$
\begin{equation}
F_{\text{total}} = F_{\text{spring}} + F_{\text{drag}} = kx + \gamma \frac{dx}{dt}
\end{equation}
$$
where $k$ is the spring constant and $\gamma$ is the drag coefficient.
Common environments:
equation - Single numbered equationalign - Multiple aligned equationssplit - Split long equations across linesExamples:
$$
\begin{align}
\sigma_{xx} &= E \epsilon_{xx} \\
\sigma_{yy} &= E \epsilon_{yy}
\end{align}
$$
Good practices:
\text{} for words in equations: $F_{\text{max}}$\, for thin space (units)equation environment for automatic numberingExample:
The relationship between stress $\sigma$ and strain $\epsilon$ follows:
$$
\begin{equation}
\sigma = E \epsilon
\end{equation}
$$
where $E = 5 \pm 0.3$ kPa is the Young's modulus.
figures/ folderForce increased linearly with deformation up to 20% strain, then plateaued (Figure 1).

**Figure 1.** Linear stress-strain response transitions to plateau regime at ε > 0.2.
Bad (descriptive):
Figure 1. A plot showing force on the y-axis and deformation on the x-axis.
Good (interpretive):
Figure 1. Force increases linearly with deformation until strain exceeds 0.2.
Best (finding):
Figure 1. Biphasic mechanical response reveals strain-stiffening at ε > 0.2.
For multi-panel figures:

**Figure 2.** Cell morphology changes with substrate stiffness. **(A)** Representative images on soft (1 kPa), medium (10 kPa), and stiff (100 kPa) substrates. **(B)** Quantification shows area increases 2.5-fold from soft to stiff. **(C)** Aspect ratio decreases with stiffness (p < 0.001, n = 150 cells per condition).
Only when comparing multiple conditions across multiple metrics:
| Condition | Spring Constant (pN/nm) | Relaxation Time (s) | n |
|-----------|------------------------|---------------------|---|
| Control | 12.3 ± 1.2 | 45 ± 8 | 23 |
| Drug A | 8.7 ± 0.9* | 67 ± 12* | 21 |
| Drug B | 15.1 ± 1.8 | 38 ± 6 | 19 |
*p < 0.05 vs. control
Table caption: Place above table, descriptive
For single comparisons, embed in text:
Treatment increased velocity from 0.23 ± 0.03 to 0.41 ± 0.05 μm/s (p < 0.001, n = 45).
Pattern: Goal → Approach → Key result
To determine whether force depends on loading rate, we performed constant-velocity indentation at speeds from 0.1 to 10 μm/s. Peak force scaled linearly with velocity (Figure 3A), consistent with viscoelastic behavior.
Pattern: Observation → Measurement → Statistics
Cells on stiff substrates adopted elongated morphologies. Aspect ratio increased from 1.8 ± 0.2 (soft) to 3.4 ± 0.4 (stiff), a 1.9-fold change (p < 0.001, n = 120 cells, Figure 2B).
Pattern: Model → Prediction → Test → Result
If force transmission is primarily via focal adhesions, disrupting integrin binding should reduce traction forces. We treated cells with RGD peptide and measured a 73% reduction in traction stress (Figure 4), confirming integrin-mediated adhesion.
Before finalizing document:
5.2 ± 0.3 kPa10 \, \mu\text{m}First use: full term (abbreviation)
Atomic force microscopy (AFM) measurements revealed...
Subsequent: abbreviation only
AFM images showed...
Inline citation:
Previous studies^[1,2]^ demonstrated...
End of document:
## References
1. Smith et al. (2023) Nature 612: 123-130
2. Jones et al. (2022) Science 378: 456-460
Bad:
Figure 1 shows the force-distance curve. As can be seen in Figure 1, force increases with distance. The figure clearly demonstrates that...
Good:
Force increased linearly with distance (Figure 1).
Bad:
It is important to note that our results suggest that it may be possible that cells potentially exhibit...
Good:
Cells exhibit viscoelastic behavior.
Bad:
The data appear to suggest that there might be a possible trend toward increased stiffness.
Good:
Stiffness increased 1.8-fold (p = 0.03).
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
data-ai
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
tools
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions