Skip to content

Commit 7a4d994

Browse files
noreplyclaude
andcommitted
docs: Add data fetching and revision commands to README
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f0640c6 commit 7a4d994

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,53 @@ Both tools work with any academic paper (PDF, Markdown, or plain text), not just
152152

153153
---
154154

155+
## Data Fetching
156+
157+
Fetch research data from major statistical APIs directly into your workflow:
158+
159+
```bash
160+
# Search for indicators
161+
opendraft data search GDP
162+
163+
# Fetch World Bank data
164+
opendraft data worldbank NY.GDP.MKTP.CD --countries USA;DEU --start 2020 --end 2023
165+
166+
# Fetch EU statistics (Eurostat)
167+
opendraft data eurostat nama_10_gdp
168+
169+
# Fetch Our World in Data datasets
170+
opendraft data owid covid-19
171+
```
172+
173+
**Supported providers:**
174+
- **World Bank** - Development indicators (GDP, population, education, health)
175+
- **Eurostat** - European Union statistics
176+
- **Our World in Data** - Open research datasets
177+
178+
Data is saved as CSV files for use in your research.
179+
180+
---
181+
182+
## Draft Revision
183+
184+
Revise existing drafts with AI assistance:
185+
186+
```bash
187+
# Revise a draft with natural language instructions
188+
opendraft revise ./output "Make the introduction longer and add more context"
189+
190+
# The revised draft is saved as draft_v2.md (with PDF/DOCX exports)
191+
```
192+
193+
Features:
194+
- Auto-detects draft files in output folders
195+
- Preserves all citations during revision
196+
- Automatic versioning (v2, v3, v4...)
197+
- Quality scoring before/after
198+
- PDF and DOCX export of revised version
199+
200+
---
201+
155202
## Quick Start
156203

157204
### Prerequisites

0 commit comments

Comments
 (0)