arbor-agent-resume-report

arbor-agent-resume-report is a skill for Claude Code, Codex from RUC-NLPIR/Arbor. It costs 61 tokens per session (1,015 once invoked), scanned A, original, Apache-2.0.

A workflow guide for resuming Arbor runs and producing their final reports. Arbor is an open-source system that runs research or optimization tasks through tracked steps and saved session files.

In plain words
What is it for?
Reloading a stopped run, requeueing unfinished work, writing checkpoints, reviewing run data, and creating REPORT.md.
Why use it?
It helps recover interrupted runs without losing their progress, messages, events, or best results.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the arbor plugin — 11 skills shipped together

Good fit Reloading a stopped run, requeueing unfinished work, writing checkpoints, reviewing run data, and creating REPORT.md.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ruc-nlpir/arbor/arbor-agent-resume-report
About the project

Arbor is an autonomous research agent that proposes hypotheses, edits code, runs experiments, and retains improvements that succeed on held-out data in a growing hypothesis tree. Researchers use it to investigate problems and iteratively optimize solutions with real experiments. The catalogue skills and plugin expose Arbor's research-agent workflow to coding agents.

RUC-NLPIR/Arbor · 1,063 stars · on GitHub · ruc-nlpir.github.io

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add RUC-NLPIR/Arbor --skill arbor-agent-resume-report
Clone the repo
git clone --depth 1 https://github.com/RUC-NLPIR/Arbor

Made for: Claude Code, Codex.

Or install arbor, the plugin that ships this one along with the rest of its 11 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for arbor-agent-resume-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/ruc-nlpir/arbor/arbor-agent-resume-report/github.svg)](https://agentmods.dev/skills/ruc-nlpir/arbor/arbor-agent-resume-report)
Your own site
<a href="https://agentmods.dev/skills/ruc-nlpir/arbor/arbor-agent-resume-report"><img src="https://agentmods.dev/badge/skills/ruc-nlpir/arbor/arbor-agent-resume-report/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for arbor-agent-resume-report

Your own site · 80×15
<a href="https://agentmods.dev/skills/ruc-nlpir/arbor/arbor-agent-resume-report"><img src="https://agentmods.dev/badge/skills/ruc-nlpir/arbor/arbor-agent-resume-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,015 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00061 $0.01015
Opus 5 $0.00030 $0.00508
Sonnet 5 $0.00012 $0.00203
Haiku 4.5 $0.00006 $0.00102

Measured 11d ago against content hash 9e4de31e4f3c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

arbor-agent-resume-report scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/arbor-agent-resume-report/SKILL.md · 141 lines

How it starts

The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Arbor Resume And Report

Use this when a run stops, resumes, times out, or needs a durable report.

Checkpoint Files

Open-source Arbor stores the run under:

.arbor/sessions/<run_name>/
  .coordinator/
    idea_tree.json
    idea_tree.md
    checkpoint.json
    messages.jsonl
  events.jsonl
  run_stats.json
  REPORT.md

idea_tree.json is the primary state. messages.jsonl restores conversation history. checkpoint.json stores run name, cycle number, phase, git state, in-flight executors, cache anchors, and pending human gates.

Resume Procedure

  1. Require an existing .coordinator/idea_tree.json.
  2. Load the tree.
  3. Requeue nodes left as running by setting them back to pending.
  4. Replay messages.jsonl if available.
  5. Seal any dangling tool-use tail with an interrupted-result marker.
  6. Append a short resume nudge:
    • do not restart INIT;
    • call TreeView;
    • continue the loop from pending nodes.
  7. Keep the existing workspace/session directory.

If the tree is corrupt, do not pretend resume is possible. Start a fresh run in a clean session only after making that explicit.

Events

Important event families:

  • session.start, session.end, session.checkpoint
  • cycle.start, cycle.end, cycle.phase
  • idea.proposed, idea.completed, idea.pruned, idea.merged
  • executor.start, executor.end
  • tool.start, tool.end
  • llm.call, llm.error, llm.cache_stat
  • user.await, user.input_received
  • progress.heartbeat

Events are JSON-serializable and secret-free. The dashboard, WebUI, stats collector, and reports consume them.

Shutdown

Before final report:

  1. Wait for background SearchAgents to flush if any are pending.
  2. Write final checkpoint and messages.
  3. Run plugin on_finalize hook if present.
  4. On emergency timeout, recover best submission:
    • keep trunk submission.csv if present;
    • otherwise copy the best scored snapshot from submissions/;
    • otherwise copy the most recent snapshot.
  5. Write run_stats.json.
  6. Generate REPORT.md.

Read the full file on GitHub · 141 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 141 lines · 61 tokens per session scan A 9e4de31e4f3c

Subscribe to this mod's changes

arbor-agent-resume-report is a skill published in the GitHub repository RUC-NLPIR/Arbor (1,063 stars, last pushed 3d ago), licensed Apache-2.0. It adds 61 tokens to every session and 1,015 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

skill-forge

Autonome Verbesserung nach dem Autoresearch-Paradigma (Karpathy). Zwei Modi: (1) Skill-Modus — optimiert eine SKILL.md durch iterative Mutation und Evaluation. (2) Generic-Modus — optimiert beliebige Dateien gegen jede mechanische Metrik (Testabdeckung, Bundle-Size, Lighthouse-Score, Docker-Image-Größe, etc.). Zwei…

GodModeAI2025/skill-forge · 276 tokens

flow-nexus-swarm

Cloud-based AI swarm deployment and event-driven workflow automation with Flow Nexus platform.

ruvnet/ruflo · 20 tokens

autogpt-agents

Autonomous AI agent platform for building and deploying continuous agents. Use when creating visual workflow agents, deploying persistent autonomous agents, or building complex multi-step AI automation systems.

davila7/claude-code-templates · 39 tokens

autocontext

Iterative strategy generation and evaluation system. Use when the user wants to evaluate agent output quality, run improvement loops, queue tasks for background evaluation, check run status, inspect runtime artifacts and session branch lineage, or discover available scenarios. Provides LLM-based judging with…

greyhaven-ai/autocontext · 60 tokens

autocontext-consumer

Use when an agent needs to USE knowledge Autocontext already produced - find which scenarios have knowledge, read the playbook and lessons for one, understand the on-disk file and folder layout, and move knowledge between checkouts. Host-agnostic; requires only the autoctx CLI and the filesystem.

greyhaven-ai/autocontext · 67 tokens

autocontext-creator

Use when an agent needs to CREATE knowledge with Autocontext - run a scenario or plain-language task through the improvement loop, judge or improve a single output, and inspect what the run produced. Host-agnostic; requires only the autoctx CLI.

greyhaven-ai/autocontext · 57 tokens