AI for Research Administration: The Efficiency Gap Nobody Is Closing
Everyone is automating the science. Who is automating the paperwork?
§1 The overlooked half of research
The conversation around AI and science has focused almost entirely on the research process itself — hypothesis generation, experiment design, data analysis, paper writing. Projects like AI Scientist and autoresearch are pushing the frontier of what AI can do as a researcher.
But research does not happen in a vacuum. Behind every funded project is a grant application someone spent weeks writing. Behind every active lab is someone tracking policy changes from funding agencies, monitoring call deadlines, compiling progress reports, and navigating bureaucratic systems that were designed decades ago. This is research administration — and it is essential to the entire enterprise of science.
In Japan alone, universities employ research administrators (URA: University Research Administrators) whose daily work includes monitoring announcements from MEXT, JST, JSPS, and other agencies; preparing KAKENHI applications; managing budgets across funding sources; and writing progress reports. Much of this work is repetitive, information-heavy, and ripe for automation — yet it remains almost entirely manual.
If we are serious about improving research productivity, this is a gap worth closing. Not because administrative work is unimportant — quite the opposite. It is so important that we should not accept it being done inefficiently.
§2 The problem is fragmentation
Consider what a research administrator does on a typical morning: check the MEXT website for new announcements, scan JST's RSS feed for open calls, browse JSPS for KAKENHI updates, look at NEDO and AMED for cross-disciplinary opportunities. Each agency publishes information on its own website, in its own format, on its own schedule. There is no unified feed.
The same fragmentation applies to institutional knowledge. Every university's research support office has accumulated expertise — which sections of a KAKENHI application reviewers focus on, how to structure a budget across fiscal years, what the e-Rad system's quirks are. But this knowledge lives in individual heads or local documents. When an experienced administrator retires, it often leaves with them.
These are not hard technical problems. They are coordination problems that AI is well-positioned to help with. And yet, while "AI for Science" attracts billions in funding, "AI for the people who make science possible" barely registers as a category.
§3 Two prototypes
To explore what AI-driven research administration could look like, I built two open-source prototypes. They are minimal — each was built in under an hour — but they demonstrate that the building blocks already exist.
Prototype 1: Automated Policy Collection
ra-policy-collector automatically collects policy announcements from major Japanese science funding agencies. Currently two sources are active:
- MEXT (Ministry of Education): HTML scraping of the public call page, used under the Government Standard Terms of Use 2.0 → 63 items collected
- JST (Japan Science and Technology Agency): official RSS feed parsing → 25 items collected
Each item is normalized into a structured format (title, URL, source, date, category) and stored as JSON. The system detects new items by comparing against the previous collection, and generates a daily Markdown report. A GitHub Actions workflow runs the collector every morning at 9:00 JST.
88 items from a single run across two agencies. That is dozens of pages a research administrator no longer needs to visit manually. The system is extensible — adding JSPS, NEDO, AMED, Cabinet Office CSTI, or e-Rad is a matter of writing a new collector function and registering it, provided the target site's terms of use permit automated access.
This is not sophisticated AI. It is basic scraping and structuring. But that is precisely the point: the bar for meaningful automation in research administration is low, because the current baseline is "a person visiting government websites every morning."
Prototype 2: RA Skills Hub
ra-skills takes a different approach: instead of automating a specific task, it structures research administration expertise as reusable AI skills. Built on Claude Code's skill format, the repository contains 8 skills covering common RA workflows:
/policy-monitor— Aggregate and summarize policy updates from multiple agencies/funding-search— Search and filter open calls from e-Rad, JSPS, JST, AMED/grant-proposal-review— Review grant applications against agency-specific criteria/budget-planning— Draft research budgets with proper cost categories and co-funding rules/progress-report— Generate progress report templates with achievement descriptions/research-metrics— Collect and visualize bibliometric indicators/erad-guide— Step-by-step guidance for the e-Rad system/create-ra-skill— A meta-skill that helps RAs convert their own expertise into new skills
The last one is the most interesting. /create-ra-skill interviews a research administrator about their workflow through structured dialogue, then generates a new skill file that other institutions can use. This is a mechanism for turning tacit RA knowledge into shareable, executable format.
The vision is a community-maintained repository where research administrators across institutions contribute their expertise as skills — effectively crowdsourcing the operational knowledge of the research support ecosystem.
§4 Why this matters for research capacity
The impact of research administration efficiency is easy to underestimate. But consider: every hour a PI spends navigating a funding portal is an hour not spent on research. Every week a research administrator spends manually compiling policy updates is a week that could be spent on strategic planning for their institution's research portfolio.
Improving research capacity is not only about making researchers more productive. It is also about making the systems that support research more productive. Better administration means researchers hear about relevant funding opportunities earlier, submit stronger applications because they had better support, and spend less time on reporting compliance.
Japan's URA system was introduced to professionalize research support, and it has been a meaningful step. But the tools available to URAs have not kept pace. Many still rely on manual web monitoring, Word templates, and institutional memory. If we gave research administrators the same level of AI tooling that we are building for researchers themselves, the compounding effect on national research output could be substantial.
§5 The broader opportunity
These two prototypes barely scratch the surface. Research administration includes:
- Grant lifecycle management — from opportunity discovery through application, award management, reporting, and audit
- Compliance and ethics — IRB submissions, conflict of interest declarations, data management plans
- Research evaluation — institutional self-assessment, benchmarking, impact narrative construction
- International collaboration — MOU tracking, joint funding scheme navigation, cross-border compliance
- Knowledge management — preserving and transferring institutional expertise across staff transitions
Each of these areas has automation potential that no one is systematically pursuing. The autoresearch community is building increasingly sophisticated systems for AI-driven experimentation. Meanwhile, the administrative infrastructure that makes funded research possible is still running on spreadsheets and manual web checks.
I do not think this requires a grand coordinated effort. As these prototypes show, individual tools can be built quickly and provide immediate value. What it requires is for people to notice the gap — to recognize that "AI for research" should include "AI for the people and processes that enable research to happen."
Both prototypes are open source. If you work in research administration or research support, I would be glad to hear what problems you face daily — the next prototype might address one of them.
- ra-policy-collector — automated science policy monitoring for Japanese funding agencies
- ra-skills — community-driven research administration skills for AI assistants