一键导入
generate-daily-news
Generate a daily project summary with structured news files. Use when creating the daily digest for a specific date.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a daily project summary with structured news files. Use when creating the daily digest for a specific date.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Interactively register one or more project metrics in meta/metrics/, grounded in project/description.md. Use during project setup or any time a new measurement needs to be tracked across tasks.
Create a new not-started task folder with task.json and task_description.md. Use when any skill or workflow needs to create a new task.
Run an interactive brainstorming session to review state and choose next actions.
One-shot interactive onboarding for a newly forked Glite ARF template. Shows the safety acknowledgement, installs dependencies, runs doctor.py, chains into create-project-description, provisions the paid services the project declared, then invokes the four meta/ sub-skills. Use once per fork, right after cloning.
Interactively scaffold a new asset type under meta/asset_types/, grounded in project/description.md. Creates a specification.md stub patterned on the built-in asset types. Use during project setup when a custom asset kind is needed; accept "none for now" to skip.
Interactively add one or more entries to meta/categories/, grounded in project/description.md. Use during project setup or any time a new cross-cutting tag is needed.
基于 SOC 职业分类
| name | generate-daily-news |
| description | Generate a daily project summary with structured news files. Use when creating the daily digest for a specific date. |
Version: 5
Produce news/$DATE.md (markdown summary) and news/$DATE.json (structured data) for a single
day's project activity.
$DATE — ISO date string (e.g., 2026-04-05)Read before starting:
arf/specifications/daily_news_specification.md — authoritative format for both filesproject/description.md — project goals (to assess significance of findings)Find all commits for the date:
git log --all --after="$PREV_DATE 23:59:59" --before="$DATE 23:59:59" \
--oneline --no-merges
where $PREV_DATE is the day before $DATE.
Identify completed tasks. Scan tasks/*/task.json for tasks whose end_time falls on $DATE.
For each completed task read:
task.json — name, status, timingresults/costs.json — cost breakdownresults/metrics.json — key metricsresults/results_summary.md — headline findingsresults/suggestions.json — follow-up suggestionsIdentify created tasks. Check git log for commits creating new task.json files on $DATE.
Identify cancelled tasks. Check git log for commits changing task status to cancelled on
$DATE.
Count new assets. Check git log for new files under tasks/*/assets/ on $DATE.
Identify infrastructure changes. Check git log for commits touching arf/ on $DATE.
Gather current best results. Read the latest metrics or leaderboard data from the most recent completed tasks.
Identify papers added. Check git log for new assets/paper/*/details.json on $DATE. Read each
details.json for title, authors, year, citation_key. Read project/description.md to assess
which papers are most important for the project goals. Select 3-5 key papers.
Identify answers produced. Check git log for new assets/answer/*/details.json on $DATE. Read
each details.json for the question and the short answer document.
Identify 2-3 key charts. Browse results/images/ in completed tasks. Pick the charts that best
illustrate the day's most important findings.
news/$DATE.json following the specification. Include all structured data gathered in
Phase 1. Round total_cost_usd to 2 decimal places.news/$DATE.md following the specification and the writing style rules below.Tone and structure:
**83.4 F1**, **$125**, **+0.4 F1**.Structure template:
## April 5, 2026
Opening line: N tasks completed. ~$X spent.
## N things we learned
### 1. Finding title.
Details with **bold** numbers. [Links](../overview/...) on key terms.
Follow-up: [retrain from scratch](../overview/tasks/task_pages/t0084.md) (t0084).

### 2. Another finding.
Details. Next: [suggestion queued](../overview/suggestions/README.md).
## N things we fixed (optional — only real bug fixes, not activity)
### 1. Bug or issue title.
What was wrong and how it was resolved.
## Where we stand (required)
| System | [F1 ALL](../overview/metrics-results/f1_all.md) |
|--------|------|
| [Best system](../overview/models/README.md) | [**XX.X**](../overview/metrics-results/f1_all.md) |
Gap to SOTA: **X F1 points**. Next bet: description of next approach.
## Costs (required)
| What | Cost |
|------|------|
| [Category](../overview/tasks/task_pages/t00XX.md) | $XX |
| **Day total** | **$XX** |
| **Project total ([full breakdown](../overview/costs/README.md))** | **$XXX** |
| **Budget remaining** | **$X,XXX** |
## Key papers added (recommended)
N papers added today. The most important:
**[Paper Title](../tasks/t00XX/assets/paper/doi_slug/summary.md)**
(Author, Year). 2-3 sentences on why it matters for the project.
[All N papers added today](../overview/papers/by-date-added/README.md)
## Key questions answered (recommended)
N questions answered. The most important:
**[Question text?](../tasks/t00XX/assets/answer/id/full_answer.md)**
2-3 sentence summary of the answer.
[All N answers](../overview/answers/README.md)
Each finding MUST include all three of these. No exceptions:
**bold**results/suggestions.json names a follow-up
task, mention it. If a new task was created as a consequence, mention it.After writing all findings, review each one and verify it has all three elements. If any finding is missing the follow-up line, add it before moving on.
"Things we fixed" must be actual fixes. Bug diagnoses, evaluation corrections, resolved mysteries. NOT project activity like "created 16 tasks" or "ran a brainstorm session". If there are no real fixes, omit the section entirely.
"Where we stand" must end with a gap-to-goal line. After the leaderboard table, add one sentence stating the gap to the project target and what the next bet is. Example: "Gap to SOTA: 4 F1 points. Next bet: three retrain-with-context experiments."
Use human-readable format: ## April 5, 2026 (not ## 2026-04-05). The filename stays ISO
(news/2026-04-05.md).
Link extensively. The text should read like a web page — every mention of a task, metric, dataset, model, or paper is a clickable link with descriptive text. No task IDs in visible prose.
[descriptive text](../overview/tasks/task_pages/<task_id>.md)[**83.4 F1**](../overview/metrics-results/f1_all.md)[Verbs](../overview/metrics-results/f1_verb.md),
[HardEN](../overview/metrics-results/f1_hard_en.md)[SemCor](../overview/datasets/README.md),
[Raganato ALL](../overview/datasets/README.md)[SANDWiCH](../overview/models/README.md)[Suggestion queued](../overview/suggestions/README.md)[Paper Title](../tasks/<task_id>/assets/paper/<paper_id>/summary.md)[Question?](../tasks/<task_id>/assets/answer/<answer_id>/full_answer.md)Follow-up task references may include the task ID in parentheses after the link for easy reference:
[retrain BEM](../overview/tasks/task_pages/t0082.md) (t0082).
Embed 2-3 key charts from the day's tasks. Use
.
Study these two texts carefully. Copy their rhythm, sentence length, and directness.
Example 1: "Education as Medicine" by Vassili Philippov
The current state of education as a science reminds me where the medicine was slightly less than a hundred years ago. On a verge of converting from guesswork to a proper science. But for now many educational practices are still rooted in tradition and intuition rather than evidence. It's as if we're still relying on leeches and bloodletting to cure educational ills.
Imagine walking into a hospital in the early 1800s. Doctors rely on intuition, tradition, and personal experience. Treatments are based on what feels right, not what works.
A fever? Bloodletting.
A headache? Leeches.
A cough? Mercury.
There's no controlled testing, large-scale studies, or standard for proof. Medicine is built on anecdotes, authority, and outdated beliefs.
Now, imagine walking into a school today. Any similarities?
How do we know what works in education?
Because a famous professor says so? Because a best-selling book claims it does? Because it "feels right" to teachers and parents?
In many ways, education is stuck in its pre-scientific era — where intuition beats data, and strong beliefs outlast strong evidence.
Surely, this was the moment phonics would make a comeback, right? Nope.
Despite the growing evidence, whole language refused to die. Because it felt right. It was progressive. It treated children as natural learners. It made classrooms feel less rigid and more creative. Teachers embraced it. Textbook publishers profited from it.
In medicine, we don't accept treatments without proof. Why do we accept it in education?
Example 2: "Faster and Safer Testing for AI Tutors" by Vassili Philippov
Imagine building the perfect virtual teacher — a virtual tutor that knows how to teach any student.
But how do you test it? How do you compare teaching strategies A vs. B? Randomized controlled trials (RCTs) are the gold standard, sure. But they're like waiting for a glacier to melt — accurate, but slow (think hundreds of students, months of data).
What if, instead of real students, we had virtual ones?
Think of it like this: How do they train self-driving cars? They don't just unleash them on the highway. They use incredibly detailed simulators — millions of miles driven, countless scenarios — before a single car hits the road.
A virtual student is the same idea. It's a model that learns like a student.
"Wait, a what?" you may say. "Are we talking about sentient AI here? Is this even possible?"
Let's break it down. Forget the sci-fi for a second.
At its core, a virtual student does one simple thing:
Predicts how a student will perform on the next learning task, based on their past learning history.
That's it.
We're not talking about replacing teachers. We're talking about giving them superpowers. We're talking about moving education from intuition to data.
Format the markdown file:
uv run flowmark --inplace --nobackup news/$DATE.md
Commit both files:
git add news/$DATE.md news/$DATE.json
git commit -m "news: daily summary for $DATE"
Push to remote:
git push
Run the verificator:
uv run python -m arf.scripts.verificators.verify_daily_news $DATE
Fix all errors and warnings. Re-run until zero errors and minimal warnings.
Rebuild the overview so the new daily news page appears in the dashboard:
uv run python -m arf.scripts.overview.materialize
Commit and push the refreshed overview:
git add overview/
git commit -m "overview: refresh after $DATE daily news"
git push
Two files in news/:
news/$DATE.md — markdown summary (no # heading, starts with ## $DATE)news/$DATE.json — structured JSON (see specification for schema)Both files must be committed and pushed to the remote. The overview must be rebuilt and pushed.
news/$DATE.md exists and follows the specificationnews/$DATE.json exists and follows the specificationarf.scripts.overview.materialize and pushed to remote# heading in the markdown file