agentsclimarketplace

Setup

Skill tmuskal/arc-agi-benchmarker/plugins/longmemeval-benchmarker/skills/setup

Prove you achieved AGI at home by testing your claude-code setup against arc-agi-3 benchmarks

Install
npx -y skills add tmuskal/arc-agi-benchmarker --skill setup

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Set up the LongMemEval benchmarking environment - guides user through conda env, upstream clone, dataset download, and initializes config

SKILL.md

5.0 KB, ~1.4k tokens by cl100k_base, as published. Nobody here has run it

LongMemEval Setup

You are setting up the LongMemEval benchmarking environment. The plugin does NOT clone or install upstream code itself — it gives the user the commands to run and verifies the outcome. Work through the steps below in order. Stop on failure with remediation guidance.

Step 1: Check Python

python3 --version 2>/dev/null || python --version 2>/dev/null

LongMemEval upstream targets Python 3.9. Any 3.9+ works for this plugin, but 3.9 is recommended. If Python is missing, tell the user to install it (conda recommended: conda create -n longmemeval python=3.9 -y).

Record which Python command exists as PYTHON_CMD.

Step 2: Create or Reuse Virtual Environment

ls -d .longmemeval-venv 2>/dev/null

If absent, create it:

$PYTHON_CMD -m venv .longmemeval-venv

Resolve the venv pip/python paths (do NOT source activate scripts):

if [ -f ".longmemeval-venv/bin/pip" ]; then
  VENV_PIP=".longmemeval-venv/bin/pip"
  VENV_PYTHON=".longmemeval-venv/bin/python"
elif [ -f ".longmemeval-venv/Scripts/pip.exe" ]; then
  VENV_PIP=".longmemeval-venv/Scripts/pip"
  VENV_PYTHON=".longmemeval-venv/Scripts/python"
fi

Step 3: Clone Upstream (guidance only)

Ask the user to clone LongMemEval next to the project if not already present:

git clone https://github.com/xiaowu0162/longmemeval.git

Verify:

ls longmemeval/src/evaluation/evaluate_qa.py 2>/dev/null && echo "upstream: OK"

If missing, tell the user to run the clone command above and re-run this skill.

Step 4: Install Dependencies

Install the lite deps plus anthropic (the plugin's addition):

$VENV_PIP install -r longmemeval/requirements-lite.txt
$VENV_PIP install anthropic

If requirements-lite.txt is missing, install explicitly:

$VENV_PIP install openai==1.35.1 tqdm==4.66.4 backoff==2.2.1 numpy==1.26.3 nltk==3.9.1 anthropic

Step 5: Download Datasets (guidance)

Tell the user to download one or more dataset variants from HuggingFace (xiaowu0162/longmemeval-cleaned) into longmemeval/data/:

  • longmemeval_s.json (default, ~115k tokens / item)
  • longmemeval_m.json (~500 sessions / item; retrieval required)
  • longmemeval_oracle.json (evidence-only)

Verify at least one exists:

ls longmemeval/data/longmemeval_*.json 2>/dev/null

Step 6: API Keys

Check for ANTHROPIC_API_KEY (default judge + target) and optionally OPENAI_API_KEY (fallback):

echo "ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:+SET}"
echo "OPENAI_API_KEY=${OPENAI_API_KEY:+SET}"

If neither is set, tell the user to set ANTHROPIC_API_KEY before running the benchmark.

Step 7: Initialize Configuration

Create .longmemeval-benchmarks/config.json if missing:

mkdir -p .longmemeval-benchmarks
$VENV_PYTHON -c "
import json, os
from datetime import datetime, timezone
from pathlib import Path

p = Path('.longmemeval-benchmarks/config.json')
if p.exists():
    cfg = json.loads(p.read_text())
    cfg['updated_at'] = datetime.now(timezone.utc).isoformat()
else:
    cfg = {
        'version': '1.0.0',
        'longmemeval_root': 'longmemeval',
        'datasetVariant': 'longmemeval_s',
        'datasetPath': 'longmemeval/data/longmemeval_s.json',
        'runs_dir': '.longmemeval-benchmarks/runs',
        'maxEvals': 500,
        'seed': 0,
        'targetProvider': 'anthropic',
        'targetModel': 'claude-opus-4-6',
        'judgeProvider': 'anthropic',
        'judgeModel': 'claude-opus-4-6',
        'harness': 'claude-code',
        'harness_config': {'model': 'claude-opus-4-6', 'plugins': [], 'skills': [], 'mcp_servers': []},
        'cross_harness': {'result_schema_version': '1.0.0', 'supported_harnesses': ['codex', 'gemini', 'opencode']},
        'created_at': datetime.now(timezone.utc).isoformat(),
        'updated_at': datetime.now(timezone.utc).isoformat(),
    }
p.write_text(json.dumps(cfg, indent=2))
print('config:', p)
"

Step 8: Detect Harness Configuration

Populate harness_config (model, plugins, skills, mcp_servers) best-effort from environment variables and ~/.claude/settings.json. Mirror the logic from arc-agi-benchmarker/skills/setup/SKILL.md Step 7.

Step 9: Print Summary

============================================
  LongMemEval Benchmarker - Setup Summary
============================================
  Python:          {version}
  Virtual Env:     .longmemeval-venv
  Upstream:        longmemeval/  [OK / MISSING]
  Dataset(s):      {list}
  ANTHROPIC_API_KEY: {SET / MISSING}
  OPENAI_API_KEY:    {SET / MISSING}
  Config:          .longmemeval-benchmarks/config.json
  Status:          READY / NOT READY ({reason})
============================================

READY requires: venv present, upstream clone present, at least one dataset file present, at least one API key set, config written.

Idempotency

Safe to re-run. Venv reused, config timestamps updated, no runs touched.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most project setup skills give in ~1.4k tokens

Counted across 999 of the 1,637 authors here whose files we hold, read 2026-08-07

  • Ask one question at a timein 29 of 999, across 28 files
  • Detect the package manager from lockfilesin 28 of 999, across 9 files
  • Present findings to the userin 26 of 999, across 5 files
  • Explore current repo statein 24 of 999, across 3 files
  • Update the agent skills block in place if it existsin 24 of 999, across 3 files
  • Install husky lint-staged and prettierin 23 of 999, across 4 files
  • Create the lintstagedrc filein 22 of 999, across 3 files
  • Commit all changed filesin 22 of 999, across 3 files
  • Run lint-staged to verify it worksin 22 of 999, across 3 files
  • Create the husky pre-commit filein 21 of 999, across 2 files
  • Create a prettierrc file if missingin 21 of 999, across 2 files
  • Initialize huskyin 21 of 999, across 2 files

Said here and by no other author read

  • stop on failure with remediation guidance
  • check python version
  • create or reuse virtual environment
  • guide user to clone upstream repository
  • install upstream dependencies
  • guide user to download datasets

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 327,132. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.