Agent skill

gaia-submission

Walk through a complete GAIA benchmark→submit flow — from key resolution through HAL-compatible package generation

rUv72,748★ · +654/wk · 4 repos on radarProfile →
claude-codecodexcan modify filesMIT
Install
npx skills add ruvnet/ruflo --skill gaia-submission --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: Bashmcp__plugin_ruflo-core_ruflo__memory_storemcp__plugin_ruflo-core_ruflo__memory_searchmcp__plugin_ruflo-core_ruflo__memory_listmcp__plugin_ruflo-core_ruflo__hooks_post_taskmcp__plugin_ruflo-core_ruflo__hooks_pre_task
Path: plugins/ruflo-workflows/skills/gaia-submission/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# GAIA Submission Skill Walk Claude Code through every step needed to go from a clean environment to a signed, HAL-compatible submission package ready to upload to the Princeton GAIA leaderboard. ## When to use When the user wants to: - Run a benchmark and submit results to the HAL leaderboard - Package an existing results file into a submission archive - Confirm their environment is ready for a benchmark run ## Prerequisites Before starting, confirm these are available: | Requirement | Check | |-------------|-------| | `ANTHROPIC_API_KEY` | `echo ${ANTHROPIC_API_KEY:0:8}…` (should show `sk-ant-…`) | | `HF_TOKEN` | `echo ${HF_TOKEN:0:5}…` (should show `hf_…`) | | Node.js 20+ | `node --version` | | CLI built | `node v3/@claude-flow/cli/bin/cli.js --version` | ## Phase 1 — Validate environment ```bash # Run all pre-flight checks /gaia validate ``` If any check fails, resolve it before continuing. ## Phase 2 — Estimate cost and confirm Ask the user for their configuration: - Level (default: 1) - Question limit (default: 53 for a quick run, 165 for the full L1 set) - Models (default: `claude-sonnet-4-6`) - Self-consistency voting (default: 1; use 3 for L2/L3) ```bash /gaia cost --level

What's inside
Steps it walks through
  1. When to use
  2. Prerequisites
  3. Phase 1 — Validate environment
  4. Phase 2 — Estimate cost and confirm
  5. Phase 3 — Run the benchmark
  6. Phase 4 — Package for submission
  7. Integrity gate — the audit runs before signing (ADR-167)
  8. Phase 5 — Compare and report
  9. Phase 6 — Persist learnings
  10. Extensibility note
Commands it runs
Run all pre-flight checks
npx @claude-flow/cli@latest memory store \
npx @claude-flow/cli@latest hooks post-task \
More from ruflo
All skills →
About this skill
What does the gaia-submission skill do?

Walk through a complete GAIA benchmark→submit flow — from key resolution through HAL-compatible package generation

How do I install it?

Run `npx skills add ruvnet/ruflo --skill gaia-submission --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going