When to Use
Use this skill when you need to produce or revise a grant application that must meet strict agency rules and reviewer expectations, for example:
- Preparing a new submission to NSF, NIH, DOE, DARPA, or Taiwan’s NSTC in response to a specific solicitation/FOA/BAA.
- Drafting core narrative sections (NSF Project Description, NIH Research Strategy, DARPA Technical Volume, DOE Project Narrative, NSTC CM03).
- Building agency-specific “value” sections, such as NSF Broader Impacts, NIH Significance/Innovation, or DARPA transition and milestone narratives.
- Creating a compliant budget + justification aligned to scope, timeline, and agency constraints (e.g., NIH modular budgets, DARPA phase/task budgets).
- Resubmitting after reviews, including structured responses to critiques (especially NIH A1) and targeted strengthening of weak criteria.
Key Features
Agency-aware structure and compliance
- NSF: Intellectual Merit + Broader Impacts, typical 15-page Project Description norms
- NIH: Specific Aims + Significance/Innovation/Approach framing, rigor/reproducibility expectations
- DOE: office-dependent emphasis (Office of Science, ARPA-E, EERE), partnerships/cost-share where applicable
- DARPA: high-risk/high-reward framing, measurable milestones, transition pathways, phased execution
- NSTC (Taiwan): CM03-centered technical narrative, bilingual abstract expectations, feasibility emphasis
Review-criteria-driven writing
- Maps every major claim to what reviewers score (or discuss) and what program staff prioritize.
Budget-to-scope alignment
- Ensures personnel effort, equipment, travel, subawards, and indirects match the workplan and schedule.
Milestones, timeline, and management planning
- Produces Gantt-style schedules, go/no-go criteria, deliverables, and risk mitigation (especially important for DARPA/DOE).
Mandatory visual communication workflow
- Every proposal should include at least 1–2 diagrams (e.g., workflow, conceptual framework, timeline). Use the
scientific-schematics skill to generate publication-quality figures.
Reference-driven drafting
- Leverages the repository’s detailed guides as needed:
references/nsf_guidelines.md
references/nih_guidelines.md
references/doe_guidelines.md
references/darpa_guidelines.md
references/nstc_guidelines.md
references/specific_aims_guide.md
references/broader_impacts.md
references/budget_preparation.md
references/review_criteria.md
references/timeline_planning.md
references/team_building.md
references/resubmission_strategies.md
Dependencies
- Python: 3.10+ (recommended)
- Optional local scripts (repository-provided):
scripts/compliance_checker.py (format checks)
scripts/budget_calculator.py (budget math support)
scripts/deadline_tracker.py (planning support)
scripts/generate_schematic.py (diagram generation wrapper; used with scientific-schematics)
Note: Exact third-party Python package requirements are not specified in the source document. If you maintain this skill repository, add a requirements.txt (with pinned versions) and list them here.
Example Usage
The example below is a complete, runnable workflow that (1) generates required visuals, (2) drafts core sections, and (3) performs basic compliance checks using the included scripts.
1) Generate required diagrams (minimum 1–2)
# Conceptual framework / workflow diagram
python scripts/generate_schematic.py \
"Conceptual workflow for a 3-aim biomedical project: Aim 1 data collection -> Aim 2 model development -> Aim 3 validation; include feedback loop and key deliverables" \
-o figures/workflow.png
# Timeline / milestones diagram (recommended)
python scripts/generate_schematic.py \
"Gantt chart for a 3-year project with quarterly milestones; include go/no-go at end of Year 1 and deliverables per aim" \
-o figures/timeline.png
2) Draft an NIH-style proposal skeleton (Specific Aims + Strategy)
Create proposal.md:
# Project Title
Mechanistic and Translational Study of X to Enable Y
## NIH Specific Aims (1 page target)
**Knowledge gap:** ...
**Long-term goal:** ...
**Objective:** ...
**Central hypothesis:** ...
**Aim 1 (verb-led):** ...
- Rationale:
- Approach (high level):
- Expected outcomes:
**Aim 2:** ...
**Aim 3:** ...
**Impact:** If successful, this work will ...
## Research Strategy (12 pages target for R01)
### Significance
- Problem and barrier to progress:
- Why now / why this team:
- Expected impact on health/biology:
### Innovation
- Conceptual innovation:
- Methodological innovation:
- Why current approaches are insufficient:
### Approach
#### Overview and rationale
#### Aim 1 Methods
- Design:
- Data:
- Analysis:
- Pitfalls and alternatives:
#### Aim 2 Methods
...
#### Aim 3 Methods
...
### Rigor and Reproducibility (as applicable)
- Controls, replicates, blinding/randomization:
- Power/statistics:
- Data management and sharing:
3) Run a basic formatting/compliance check (if available)
python scripts/compliance_checker.py proposal.md
4) Produce a budget justification draft (outline)
Create budget_justification.md:
# Budget Justification (Draft)
## Personnel
- PI (X% effort): ...
- Postdoc (100%): ...
- Graduate student (50%): ...
## Equipment
- Item: purpose, necessity, and timing
## Travel
- Conference dissemination
- Collaboration meetings
## Materials and Supplies
- Consumables / software licenses
## Other Direct Costs
- Publication fees / participant incentives / consultants
## Subawards (if any)
- Scope and deliverables per partner
## Indirect Costs (F&A)
- Rate and base per institutional policy
Implementation Details
1) Agency-specific narrative mapping (what to write, where, and why)
NSF
- Two equal pillars: Intellectual Merit and Broader Impacts
- Typical narrative pattern: problem → gap → approach → feasibility → outcomes → impacts
- Ensure Broader Impacts are specific, measurable, resourced, and scheduled (not “bolt-on”).
NIH
- Core scored criteria: Significance, Investigator(s), Innovation, Approach, Environment
- The Specific Aims page is the highest-leverage page: 2–4 aims, independent-but-complementary, each feasible with contingencies.
- Approach must explicitly address rigor, reproducibility, and risk mitigation.
DOE
- Criteria vary by office; common expectations:
- technical merit, mission relevance, team capability, facilities, and budget reasonableness
- Often values integration of computation + experiment, partnerships, and (sometimes) cost share.
DARPA
- Emphasize: transformative payoff, measurable milestones, and transition.
- Use phased plans with deliverables, metrics, and go/no-go criteria.
- Answer DARPA-style questions in substance:
- What if it works? Who cares? How will it transition?
NSTC (Taiwan)
- CM03 is central; feasibility and preliminary evidence are critical.
- Plan for bilingual abstracts and include a clear research architecture diagram.
2) Visual requirement (mandatory minimum)
- Include at least 1–2 diagrams:
- Workflow/method schematic (reduces reviewer cognitive load)
- Timeline/Gantt with milestones and decision points
- Use consistent labeling, readable fonts, and captions that allow the figure to stand alone.
3) Milestones and risk control parameters
- Define milestones that are:
- Measurable (metric + threshold)
- Time-bound (quarter/year)
- Decision-linked (go/no-go or pivot criteria)
- For each major risk, include:
- failure mode → detection signal → mitigation → fallback method
4) Budget-to-workplan consistency checks
- Every major task should map to:
- named personnel effort
- required equipment/supplies
- travel (if collaboration/fieldwork is claimed)
- subaward scope (if partners are essential)
- Common rejection trigger: a narrative that promises outcomes without resourcing them in the budget.
5) Resubmission mechanics (especially NIH A1)
- Create a 1-page Introduction to Resubmission that:
- lists major critiques
- states exactly what changed and where
- remains factual and respectful
- Strengthen the weakest scored criterion first (often Approach or Innovation), then tighten alignment across aims, methods, and milestones.
1---2name: research-grants3description: Write competitive research proposals for NSF, NIH, DOE, DARPA, and Taiwan's NSTC when you need agency-compliant narratives, budgets, and review-criteria alignment for a specific solicitation/FOA/BAA.4license: MIT5---6
7## When to Use
8
9Use this skill when you need to produce or revise a grant application that must meet strict agency rules and reviewer expectations, for example:
10
111. **Preparing a new submission** to NSF, NIH, DOE, DARPA, or Taiwan’s NSTC in response to a specific solicitation/FOA/BAA.
122. **Drafting core narrative sections** (NSF Project Description, NIH Research Strategy, DARPA Technical Volume, DOE Project Narrative, NSTC CM03).
133. **Building agency-specific “value” sections**, such as NSF Broader Impacts, NIH Significance/Innovation, or DARPA transition and milestone narratives.
144. **Creating a compliant budget + justification** aligned to scope, timeline, and agency constraints (e.g., NIH modular budgets, DARPA phase/task budgets).
155. **Resubmitting after reviews**, including structured responses to critiques (especially NIH A1) and targeted strengthening of weak criteria.
16
17## Key Features
18
19- **Agency-aware structure and compliance**
20 - NSF: Intellectual Merit + Broader Impacts, typical 15-page Project Description norms
21 - NIH: Specific Aims + Significance/Innovation/Approach framing, rigor/reproducibility expectations
22 - DOE: office-dependent emphasis (Office of Science, ARPA-E, EERE), partnerships/cost-share where applicable
23 - DARPA: high-risk/high-reward framing, measurable milestones, transition pathways, phased execution
24 - NSTC (Taiwan): CM03-centered technical narrative, bilingual abstract expectations, feasibility emphasis
25
26- **Review-criteria-driven writing**
27 - Maps every major claim to what reviewers score (or discuss) and what program staff prioritize.
28
29- **Budget-to-scope alignment**
30 - Ensures personnel effort, equipment, travel, subawards, and indirects match the workplan and schedule.
31
32- **Milestones, timeline, and management planning**
33 - Produces Gantt-style schedules, go/no-go criteria, deliverables, and risk mitigation (especially important for DARPA/DOE).
34
35- **Mandatory visual communication workflow**
36 - Every proposal should include **at least 1–2 diagrams** (e.g., workflow, conceptual framework, timeline). Use the `scientific-schematics` skill to generate publication-quality figures.
37
38- **Reference-driven drafting**
39 - Leverages the repository’s detailed guides as needed:
40 - `references/nsf_guidelines.md`
41 - `references/nih_guidelines.md`
42 - `references/doe_guidelines.md`
43 - `references/darpa_guidelines.md`
44 - `references/nstc_guidelines.md`
45 - `references/specific_aims_guide.md`
46 - `references/broader_impacts.md`
47 - `references/budget_preparation.md`
48 - `references/review_criteria.md`
49 - `references/timeline_planning.md`
50 - `references/team_building.md`
51 - `references/resubmission_strategies.md`
52
53## Dependencies
54
55- **Python**: 3.10+ (recommended)
56- **Optional local scripts (repository-provided)**:
57 - `scripts/compliance_checker.py` (format checks)
58 - `scripts/budget_calculator.py` (budget math support)
59 - `scripts/deadline_tracker.py` (planning support)
60 - `scripts/generate_schematic.py` (diagram generation wrapper; used with `scientific-schematics`)
61
62> Note: Exact third-party Python package requirements are not specified in the source document. If you maintain this skill repository, add a `requirements.txt` (with pinned versions) and list them here.
63
64## Example Usage
65
66The example below is a complete, runnable workflow that (1) generates required visuals, (2) drafts core sections, and (3) performs basic compliance checks using the included scripts.
67
68### 1) Generate required diagrams (minimum 1–2)
69
70```bash
71# Conceptual framework / workflow diagram
72python scripts/generate_schematic.py \
73 "Conceptual workflow for a 3-aim biomedical project: Aim 1 data collection -> Aim 2 model development -> Aim 3 validation; include feedback loop and key deliverables" \
74 -o figures/workflow.png
75
76# Timeline / milestones diagram (recommended)
77python scripts/generate_schematic.py \
78 "Gantt chart for a 3-year project with quarterly milestones; include go/no-go at end of Year 1 and deliverables per aim" \
79 -o figures/timeline.png
80```
81
82### 2) Draft an NIH-style proposal skeleton (Specific Aims + Strategy)
83
84Create `proposal.md`:
85
86```markdown
87# Project Title
88Mechanistic and Translational Study of X to Enable Y
89
90## NIH Specific Aims (1 page target)
91**Knowledge gap:** ...
92**Long-term goal:** ...
93**Objective:** ...
94**Central hypothesis:** ...
95
96**Aim 1 (verb-led):** ...
97- Rationale:
98- Approach (high level):
99- Expected outcomes:
100
101**Aim 2:** ...
102**Aim 3:** ...
103
104**Impact:** If successful, this work will ...
105
106## Research Strategy (12 pages target for R01)
107
108### Significance
109- Problem and barrier to progress:
110- Why now / why this team:
111- Expected impact on health/biology:
112
113### Innovation
114- Conceptual innovation:
115- Methodological innovation:
116- Why current approaches are insufficient:
117
118### Approach
119#### Overview and rationale
120#### Aim 1 Methods
121- Design:
122- Data:
123- Analysis:
124- Pitfalls and alternatives:
125#### Aim 2 Methods
126...
127#### Aim 3 Methods
128...
129
130### Rigor and Reproducibility (as applicable)
131- Controls, replicates, blinding/randomization:
132- Power/statistics:
133- Data management and sharing:
134```
135
136### 3) Run a basic formatting/compliance check (if available)
137
138```bash
139python scripts/compliance_checker.py proposal.md
140```
141
142### 4) Produce a budget justification draft (outline)
143
144Create `budget_justification.md`:
145
146```markdown
147# Budget Justification (Draft)
148
149## Personnel
150- PI (X% effort): ...
151- Postdoc (100%): ...
152- Graduate student (50%): ...
153
154## Equipment
155- Item: purpose, necessity, and timing
156
157## Travel
158- Conference dissemination
159- Collaboration meetings
160
161## Materials and Supplies
162- Consumables / software licenses
163
164## Other Direct Costs
165- Publication fees / participant incentives / consultants
166
167## Subawards (if any)
168- Scope and deliverables per partner
169
170## Indirect Costs (F&A)
171- Rate and base per institutional policy
172```
173
174## Implementation Details
175
176### 1) Agency-specific narrative mapping (what to write, where, and why)
177
178- **NSF**
179 - Two equal pillars: **Intellectual Merit** and **Broader Impacts**
180 - Typical narrative pattern: problem → gap → approach → feasibility → outcomes → impacts
181 - Ensure Broader Impacts are **specific, measurable, resourced, and scheduled** (not “bolt-on”).
182
183- **NIH**
184 - Core scored criteria: **Significance, Investigator(s), Innovation, Approach, Environment**
185 - The **Specific Aims page** is the highest-leverage page: 2–4 aims, independent-but-complementary, each feasible with contingencies.
186 - Approach must explicitly address **rigor, reproducibility, and risk mitigation**.
187
188- **DOE**
189 - Criteria vary by office; common expectations:
190 - technical merit, mission relevance, team capability, facilities, and budget reasonableness
191 - Often values **integration of computation + experiment**, partnerships, and (sometimes) cost share.
192
193- **DARPA**
194 - Emphasize: **transformative payoff**, measurable milestones, and transition.
195 - Use phased plans with **deliverables, metrics, and go/no-go criteria**.
196 - Answer DARPA-style questions in substance:
197 - *What if it works? Who cares? How will it transition?*
198
199- **NSTC (Taiwan)**
200 - CM03 is central; feasibility and preliminary evidence are critical.
201 - Plan for **bilingual abstracts** and include a clear **research architecture diagram**.
202
203### 2) Visual requirement (mandatory minimum)
204
205- Include **at least 1–2 diagrams**:
206 - Workflow/method schematic (reduces reviewer cognitive load)
207 - Timeline/Gantt with milestones and decision points
208- Use consistent labeling, readable fonts, and captions that allow the figure to stand alone.
209
210### 3) Milestones and risk control parameters
211
212- Define milestones that are:
213 - **Measurable** (metric + threshold)
214 - **Time-bound** (quarter/year)
215 - **Decision-linked** (go/no-go or pivot criteria)
216- For each major risk, include:
217 - failure mode → detection signal → mitigation → fallback method
218
219### 4) Budget-to-workplan consistency checks
220
221- Every major task should map to:
222 - named personnel effort
223 - required equipment/supplies
224 - travel (if collaboration/fieldwork is claimed)
225 - subaward scope (if partners are essential)
226- Common rejection trigger: a narrative that promises outcomes without resourcing them in the budget.
227
228### 5) Resubmission mechanics (especially NIH A1)
229
230- Create a 1-page **Introduction to Resubmission** that:
231 - lists major critiques
232 - states exactly what changed and where
233 - remains factual and respectful
234- Strengthen the weakest scored criterion first (often Approach or Innovation), then tighten alignment across aims, methods, and milestones.