grant-application-setup

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Grant Application Setup

资助申请项目设置

Use this skill when creating new grant application repositories, organising proposal documents, or setting up collaborative grant writing workflows.
当你创建新的资助申请代码仓库、整理提案文档或搭建协作式资助申请写作工作流时,可使用本技能。

Project Structure

项目结构

Standard grant application repository:
grant-name/
├── .claude/                    # Claude Code config (optional)
├── .gitignore
├── CLAUDE.md                   # Claude instructions
├── README.md                   # Overview, timeline, collaborators
├── coapplicant_details/        # Co-applicant information
│   ├── coapplicant1.md
│   └── coapplicant2.md
├── correspondence/             # Email correspondence, queries
├── data/                       # Planning data
│   ├── milestones.csv          # Milestone tracking
│   └── plan.csv                # Work package timeline
├── docs/                       # Call documentation, guidance
│   └── call-specification.pdf
├── submission/                 # Main submission documents
│   ├── application.qmd         # Full application
│   ├── research_vision.qmd     # Research vision/summary
│   ├── approach.qmd            # Technical approach
│   ├── team_capability.qmd     # Team and capability
│   ├── references.bib          # Bibliography
│   ├── schematics/             # Figures and diagrams
│   └── cell-numeric.csl        # Citation style
└── slides/                     # Presentation materials (optional)
标准资助申请代码仓库结构:
grant-name/
├── .claude/                    # Claude Code config (optional)
├── .gitignore
├── CLAUDE.md                   # Claude instructions
├── README.md                   # Overview, timeline, collaborators
├── coapplicant_details/        # Co-applicant information
│   ├── coapplicant1.md
│   └── coapplicant2.md
├── correspondence/             # Email correspondence, queries
├── data/                       # Planning data
│   ├── milestones.csv          # Milestone tracking
│   └── plan.csv                # Work package timeline
├── docs/                       # Call documentation, guidance
│   └── call-specification.pdf
├── submission/                 # Main submission documents
│   ├── application.qmd         # Full application
│   ├── research_vision.qmd     # Research vision/summary
│   ├── approach.qmd            # Technical approach
│   ├── team_capability.qmd     # Team and capability
│   ├── references.bib          # Bibliography
│   ├── schematics/             # Figures and diagrams
│   └── cell-numeric.csl        # Citation style
└── slides/                     # Presentation materials (optional)

Document Templates

文档模板

README.md

README.md

markdown
undefined
markdown
undefined

[Grant Title]

[Grant Title]

[Brief description of the grant application]
[Brief description of the grant application]

Timeline

Timeline

DateMilestone
[Date]Collaborator list agreed
[Date]Case for support drafted
[Date]All sections complete
[Date]Final submission deadline
DateMilestone
[Date]Collaborator list agreed
[Date]Case for support drafted
[Date]All sections complete
[Date]Final submission deadline

Collaborators

Collaborators

NameInstitutionRole
PI NameInstitutionLead applicant
Co-I NameInstitution[Work package/expertise]
NameInstitutionRole
PI NameInstitutionLead applicant
Co-I NameInstitution[Work package/expertise]

Structure

Structure

  • /submission/
    : Main application documents
  • /docs/
    : Call documentation and guidance
  • /coapplicant_details/
    : Co-applicant information
  • /data/
    : Planning data (milestones, timeline)
undefined
  • /submission/
    : Main application documents
  • /docs/
    : Call documentation and guidance
  • /coapplicant_details/
    : Co-applicant information
  • /data/
    : Planning data (milestones, timeline)
undefined

CLAUDE.md Template

CLAUDE.md 模板

markdown
undefined
markdown
undefined

CLAUDE.md

CLAUDE.md

This file provides guidance to Claude Code when working with this repository.
This file provides guidance to Claude Code when working with this repository.

Repository Overview

Repository Overview

This repository contains a [FUNDER] grant application focused on [TOPIC]. The project aims to [BRIEF OBJECTIVE].
This repository contains a [FUNDER] grant application focused on [TOPIC]. The project aims to [BRIEF OBJECTIVE].

Document Structure

Document Structure

  • /submission/
    : Main application documents
  • /docs/
    : Call documentation and guidance
  • /coapplicant_details/
    : Co-applicant information
  • /data/
    : Planning data (milestones, timeline)
  • /submission/
    : Main application documents
  • /docs/
    : Call documentation and guidance
  • /coapplicant_details/
    : Co-applicant information
  • /data/
    : Planning data (milestones, timeline)

Language Requirements

Language Requirements

Always respond in British English (UK).
Always respond in British English (UK).

Word Count Utilities

Word Count Utilities

bash
undefined
bash
undefined

Count words in a QMD file (excluding YAML header and references)

Count words in a QMD file (excluding YAML header and references)

cat submission/document.qmd | sed '1,4d' | sed '/# References/,$d' | sed 's/[@[^]]*]//g' > temp.txt && wc -w temp.txt && rm temp.txt
undefined
cat submission/document.qmd | sed '1,4d' | sed '/# References/,$d' | sed 's/[@[^]]*]//g' > temp.txt && wc -w temp.txt && rm temp.txt
undefined

Working with Citations

Working with Citations

  • Reference files are stored in
    submission/references.bib
  • Use
    @placeholder
    for unavailable references (never invent citations)
  • Format:
    [@author2024]
    or
    [@author2024;@author2025]
    for multiple
  • Reference files are stored in
    submission/references.bib
  • Use
    @placeholder
    for unavailable references (never invent citations)
  • Format:
    [@author2024]
    or
    [@author2024;@author2025]
    for multiple

Preferred Text Style

Preferred Text Style

[Include example text in preferred style]
undefined
[Include example text in preferred style]
undefined

.gitignore

.gitignore

.DS_Store
*.pdf
!submission/*.pdf
*.html
*_files/
temp*.txt
.Rhistory
.DS_Store
*.pdf
!submission/*.pdf
*.html
*_files/
temp*.txt
.Rhistory

Quarto Document Setup

Quarto 文档设置

Application Document Header

申请文档头部

yaml
---
title: "Application Title"
format:
  pdf:
    documentclass: article
    geometry:
      - margin=2.5cm
    fontsize: 11pt
    include-in-header:
      - text: |
          \usepackage{fancyhdr}
          \pagestyle{fancy}
bibliography: references.bib
csl: cell-numeric.csl
---
yaml
---
title: "Application Title"
format:
  pdf:
    documentclass: article
    geometry:
      - margin=2.5cm
    fontsize: 11pt
    include-in-header:
      - text: |
          \usepackage{fancyhdr}
          \pagestyle{fancy}
bibliography: references.bib
csl: cell-numeric.csl
---

Research Vision Header

研究愿景文档头部

yaml
---
title: "Research Vision"
format:
  pdf:
    documentclass: article
    geometry:
      - margin=2.5cm
    fontsize: 11pt
bibliography: references.bib
csl: cell-numeric.csl
---
yaml
---
title: "Research Vision"
format:
  pdf:
    documentclass: article
    geometry:
      - margin=2.5cm
    fontsize: 11pt
bibliography: references.bib
csl: cell-numeric.csl
---

Planning Data Templates

规划数据模板

milestones.csv

milestones.csv

csv
milestone_id,work_package,description,month,type,deliverable
M1,WP1,Initial framework design complete,6,S,Software prototype
M2,WP1,Core module implementation,12,S,Release v1.0
M3,WP2,First training workshop,12,T,Workshop materials
M4,WP3,Methods paper submitted,18,P,Publication
Types:
  • S = Software
  • P = Publication
  • T = Training
  • W = Workshop
  • D = Data release
csv
milestone_id,work_package,description,month,type,deliverable
M1,WP1,Initial framework design complete,6,S,Software prototype
M2,WP1,Core module implementation,12,S,Release v1.0
M3,WP2,First training workshop,12,T,Workshop materials
M4,WP3,Methods paper submitted,18,P,Publication
类型说明:
  • S = 软件
  • P = 出版物
  • T = 培训资料
  • W = 研讨会
  • D = 数据发布

plan.csv

plan.csv

csv
activity_id,work_package,activity,lead,start_month,end_month,dependencies
A1.1,WP1,Literature review,PI,1,3,
A1.2,WP1,Framework design,PI,3,6,A1.1
A2.1,WP2,Training materials,Co-I,6,12,A1.2
csv
activity_id,work_package,activity,lead,start_month,end_month,dependencies
A1.1,WP1,Literature review,PI,1,3,
A1.2,WP1,Framework design,PI,3,6,A1.1
A2.1,WP2,Training materials,Co-I,6,12,A1.2

Word Count Management

字数管理

Grant applications have strict word limits. Track counts regularly:
bash
undefined
资助申请有严格的字数限制,请定期跟踪字数:
bash
undefined

Basic word count

基础字数统计

wc -w submission/document.qmd
wc -w submission/document.qmd

Accurate count (excludes YAML header, references section, citations)

精准统计(排除YAML头部、参考文献章节、引用标记)

cat submission/document.qmd |
sed '1,/^---$/d' |
sed '/^---$/,$d' |
sed '/# References/,$d' |
sed 's/[@[^]]*]//g' |
wc -w
undefined
cat submission/document.qmd |
sed '1,/^---$/d' |
sed '/^---$/,$d' |
sed '/# References/,$d' |
sed 's/[@[^]]*]//g' |
wc -w
undefined

Writing Style

写作风格

Principles

原则

  • Simple, direct prose without unnecessary adjectives
  • One sentence per line in markdown
  • UK English spelling
  • Max 80 characters per line
  • Use
    @placeholder
    for missing citations
  • 使用简洁直接的表述,避免冗余形容词
  • Markdown中每行一个句子
  • 使用英式英语拼写
  • 每行最多80个字符
  • 引用缺失文献时使用
    @placeholder

Example Style

示例风格

markdown
Recent outbreaks of Ebola, COVID-19 and mpox have demonstrated the value of
modelling for synthesising data for rapid evidence to inform decision making.
Methods used to synthesise available data in real time broadly fall into two
classes: either combining results from multiple, smaller models calibrated in
isolation (the _pipeline approach_, e.g., [@huisman2022]), or representing a
single model tuned to the specific scenario (the _joint model_ approach,
e.g., [@birrell2024;@Watson2024-vj]).
markdown
Recent outbreaks of Ebola, COVID-19 and mpox have demonstrated the value of
modelling for synthesising data for rapid evidence to inform decision making.
Methods used to synthesise available data in real time broadly fall into two
classes: either combining results from multiple, smaller models calibrated in
isolation (the _pipeline approach_, e.g., [@huisman2022]), or representing a
single model tuned to the specific scenario (the _joint model_ approach,
e.g., [@birrell2024;@Watson2024-vj]).

Funder-Specific Patterns

资助机构特定规范

UKRI

UKRI

  • Case for support (main technical content)
  • Research vision summary
  • Team capability (track record)
  • Pathways to impact
  • Data management plan
  • Justification of resources
  • 支持理由(核心技术内容)
  • 研究愿景摘要
  • 团队能力(过往成果)
  • 影响力路径
  • 数据管理计划
  • 资源合理性说明

EU Horizon

EU Horizon

  • Excellence (scientific quality)
  • Impact (wider benefits)
  • Implementation (work plan)
  • Work packages with deliverables
  • Gantt chart timeline
  • Consortium description
  • 卓越性(科学质量)
  • 影响力(广泛效益)
  • 实施计划(工作方案)
  • 含交付成果的工作包
  • 甘特图时间线
  • 联盟说明

Collaboration Workflows

协作工作流

Co-applicant Information

合作申请人信息

Store in
coapplicant_details/
:
markdown
undefined
存储在
coapplicant_details/
目录下:
markdown
undefined

[Name]

[Name]

Affiliation

所属机构

[Institution, Department]
[Institution, Department]

Role in Project

项目角色

[Specific responsibilities, work packages]
[具体职责、负责的工作包]

Track Record

过往成果

[Key achievements relevant to the grant]
[与本资助相关的关键成就]

Contribution

贡献内容

[What they bring to the project]
undefined
[他们为项目带来的价值]
undefined

Version Control

版本控制

  • Use branches for major revisions
  • Tag versions at key milestones
  • Keep submission PDFs in repository for reference
  • 使用分支进行重大修订
  • 在关键里程碑处标记版本
  • 将提交用PDF文件保留在仓库中以供参考

When to Use This Skill

何时使用本技能

Activate when:
  • Creating a new grant application repository
  • Organising proposal documents
  • Setting up collaborative writing workflows
  • Managing word counts and document structure
  • Preparing submission materials
For compliance checking against existing grants, see the grant-compliance-checking skill.
在以下场景激活本技能:
  • 创建新的资助申请代码仓库
  • 整理提案文档
  • 搭建协作写作工作流
  • 管理字数与文档结构
  • 准备提交材料
如需针对现有资助进行合规性检查,请查看grant-compliance-checking技能。