Install
$ agentstack add skill-naveedharri-benai-skills-autoresearch ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
AutoResearch — Autonomous Optimization Loop
USE WHEN the user runs /autoresearch, says "autoresearch", "optimize this prompt", "improve this overnight", "run an optimization loop", "iterate on this", "auto-improve", or wants to autonomously refine a file against measurable criteria.
Architecture: Separation of Roles
This skill supports two mutually exclusive evaluation modes. Both maintain four-way separation.
Deterministic Mode (default) — Four-Way Separation
| Role | Who | Knows Eval Code? | Knows Prompt History? | |------|-----|-----------------|----------------------| | Main Agent | You (optimizer) | NO — reads metric number only | Yes — reads logs, plans changes | | Eval Agent | autoresearch-eval-agent sub-agent | Yes — writes eval.py | No | | Test Runner | autoresearch-test-runner sub-agent | NO — fresh context | NO | | Judge Script | eval.py (deterministic Python) | IS the eval | No |
Metric: pass_rate. Best for tasks with clear, mechanical quality checks (word count, format, keywords, structure).
AI Judge Mode (opt-in) — Four-Way Separation
| Role | Who | Knows Rubric? | Knows Prompt History? | |------|-----|---------------|----------------------| | Main Agent | You (optimizer) | Criteria names only | Yes — reads logs, plans changes | | Eval Agent | autoresearch-eval-agent sub-agent | Yes — writes rubric.md | No | | Test Runner | autoresearch-test-runner sub-agent | NO — fresh context | NO | | Judge Agent | autoresearch-judge sub-agent | Follows rubric | NO — fresh context |
Metric: quality_score. Best for creative/subjective tasks where mechanical checks miss the point (tone, authenticity, narrative, emotional resonance).
The modes are mutually exclusive. Deterministic mode uses eval.py only. AI judge mode uses the judge agent only. There is no combined score.
Key isolation (both modes):
- The optimizer never writes eval artifacts, never generates outputs
- The eval agent writes the eval system once (eval.py OR rubric.md), then disappears
- The test runner never sees the eval or rubric — fresh context every time
- The judge (script or agent) evaluates without knowing iteration history or optimizer intent
User Interaction: Always Use AskUserQuestion
Whenever you need user input or confirmation, use the AskUserQuestion tool. This shows an interactive popup in Cowork.
CRITICAL: Keep popup text SHORT. The popup is small — long text becomes unreadable. Follow this pattern:
- Write details in chat FIRST (assertions list, eval code, explanations)
- Then use AskUserQuestion with ONLY a short question — one sentence max
Good:
[In chat]: Here are 7 proposed assertions:
1. Covers all 4 search clusters
2. Each entry has title, channel, views
3. Contains opportunity mapping
...
[AskUserQuestion]: "Do these assertions look right?"
Options: "These look good" / "Adjust some" / [free text]
Bad:
[AskUserQuestion]: "Here are 7 proposed assertions for what a 'good' output looks like: 1. Covers all 4 search clusters (Core, Tools, Niche, Competitors)... [giant paragraph]"
Never put lists, explanations, or details inside AskUserQuestion. The popup is for the QUESTION only.
The Three Rules
Every criterion — whether proposed by you or provided by the user — MUST pass these three rules before entering the loop. This is the most important step in the process. Bad criteria produce bad evals, and bad evals waste every iteration.
Rule 1: State the exact condition, not the goal. Don't describe what you want. Describe what you can measure.
| Bad | Good | |-----|------| | "Make sure the hook is short" | "The first line must be under 136 characters including spaces" | | "Should be professional" | "Contains no exclamation marks and no ALL CAPS words (3+ letters)" | | "Include relevant data" | "Contains at least one specific number or statistic with a source" |
Rule 2: One criterion, one variable. Each criterion tests exactly one thing. If you're tempted to use "and" to connect two checks, split them into two separate criteria.
| Bad | Good | |-----|------| | "Under 150 words and ends with a question" | Criterion 1: "Under 150 words" / Criterion 2: "Last sentence ends with a question mark" | | "Professional tone with no jargon" | Criterion 1: "No words from the banned jargon list" / Criterion 2: "No sentences over 25 words" |
Rule 3: Define the test (optional). Describe how to verify the criterion — what to count, what regex to match, what structure to look for. This helps the eval agent write better checks and helps the judge agent score more consistently.
| Criterion | Test definition | |-----------|----------------| | "First line under 136 characters" | `len(lines[0]) The Three Rules — every criterion must pass these before we start: > > 1. State the exact condition, not the goal. "First line under 136 characters" not "keep the hook short." > 2. One criterion, one variable. If it has "and", split it into two. > 3. Define the test (optional). How to check it — what to count, match, or look for.
- Propose 5-7 quality criteria. Every criterion MUST pass The Three Rules. Write the list in chat (not in the popup). For each criterion, show it passes the rules — be specific with thresholds, counts, and patterns.
- Use
AskUserQuestion— short text only:
- Question:
"Do these quality criteria look right?" - Options:
"These look good"/"Adjust some"
- SEPARATE STEP — always ask this. Use
AskUserQuestion:
- Question:
"Which evaluation mode?" - Options:
"Deterministic"/"AI Judge" - In chat before the question, briefly explain: "Deterministic checks things mechanically (word count, keywords, format). AI Judge uses an LLM to score against a rubric — best for creative content where quality is subjective (tone, authenticity, narrative)."
- SEPARATE STEP — always ask this. Use
AskUserQuestion:
- Question:
"How many iterations? (Recommended: 5)" - Options:
"5 (recommended)"/"10"/"20" - In chat before the question, briefly explain: "Each iteration edits the prompt, generates outputs with real tools, and evaluates. 5 iterations is a good starting point — you can always run more later."
- Store the chosen iteration count for the loop's stop condition.
- Spawn the
autoresearch-eval-agentsub-agent to generate the eval system:
- Pass it: the target prompt/skill path, the confirmed criteria list, the working directory, and the chosen eval mode (deterministic or ai_judge)
- Deterministic: it generates
eval.pyandtest_cases.json - AI Judge: it generates
rubric.mdandtest_cases.json(no eval.py) - You (the optimizer) do NOT read the eval artifacts. You only read their output (metric numbers and criteria names).
- Show the user the generated eval.py (deterministic) or rubric.md (AI judge) in chat. Then use
AskUserQuestion:
- Question:
"Does this eval look right?" - Options:
"Looks good"/"Adjust"
- Mark the eval artifacts as READ-ONLY — you MUST NOT modify them during the loop:
- Deterministic:
eval.py+test_cases.json - AI Judge:
rubric.md+test_cases.json
- Run baseline (iteration 0): generate outputs via test runner (always live — using real tools and data), then evaluate (run eval.py or spawn judge agent), record the score
- Start the loop — stop after the chosen iteration count
If the user says "improve this" without criteria, suggest 5 reasonable ones (all passing The Three Rules) and use AskUserQuestion to confirm. If the user says "go" or "start", default to deterministic mode + 5 iterations, spawn the eval agent, and begin immediately.
Phase 0: Session Setup
When the user pastes a skill, prompt, or template:
- Save it to a file (e.g.,
target-skill.md) - Analyze the content and propose 5-7 quality criteria
- Ask the user to confirm or adjust
- Confirm the session config:
| Field | Description | Example | |-------|-------------|---------| | Goal | What are we optimizing? | "Improve cold email reply-rate signals" | | Eval Mode | deterministic or ai_judge | deterministic | | Metric | pass_rate (deterministic) or quality_score (AI judge) | pass_rate | | Direction | Higher is better | higher | | Criteria | The quality checks (confirmed by user) | "Under 150 words", "Contains a question CTA" | | Modifiable File | The prompt/skill file ONLY | target-skill.md | | Guard | Optional regression check | None |
Phase 1: Generate the Eval System (via Eval Agent Sub-Agent)
Before any optimization begins, spawn the autoresearch-eval-agent sub-agent:
Deterministic mode:
Design an eval system for the prompt/skill at [path to target skill].
Eval mode: Deterministic.
Assertions (confirmed by user):
1. [assertion 1]
2. [assertion 2]
...
The prompt expects these inputs: [list input fields from the prompt].
Save eval.py and test_cases.json to [working directory path].
AI Judge mode:
Design an eval system for the prompt/skill at [path to target skill].
Eval mode: AI Judge.
Quality criteria (confirmed by user):
1. [criterion 1]
2. [criterion 2]
...
The prompt expects these inputs: [list input fields from the prompt].
Save rubric.md and test_cases.json to [working directory path].
The eval agent will:
- Deterministic: generate
test_cases.json+eval.py(deterministic Python with proxy heuristics), verify no syntax errors - AI Judge: generate
test_cases.json+rubric.md(scoring rubric with 1-5 scale per criterion)
IMPORTANT: You (the optimizer) MUST NOT read the eval artifacts in detail. You only interact with them by running the evaluation and reading the output (metric number and criteria names). This prevents you from gaming the evaluation.
After the eval agent finishes:
- Show the user the generated eval.py or rubric.md (read it for them to review) and ask: "Does this eval capture what you mean?"
- If the user wants changes, spawn the eval agent again with adjustments
- Once the user confirms, the eval artifacts are READ-ONLY for the rest of the session
See references/example-eval.py for what a generated eval.py looks like.
Phase 2: Baseline (Iteration 0)
- Create the
outputs/directory - Spawn the
autoresearch-test-runnersub-agent with this prompt:
`` Generate outputs using the prompt at [path to target skill]. Test cases are at [path to test_cases.json]. Save each output to outputs/output_00.txt through outputs/output_09.txt (zero-padded index matching test case order). Follow the prompt exactly. One output per test case. No commentary — just the raw output in each file. ` **IMPORTANT: Output file naming must be output_XX.txt` (zero-padded index).** Both the eval agent (when writing eval.py) and the test runner must use this convention. If eval.py uses a different naming scheme, the files won't be found.
- Evaluate:
- Deterministic: Run
python eval.py outputs/, parse theMETRIC pass_rate=X.XXXXline from stdout - AI Judge: Spawn the
autoresearch-judgesub-agent againstoutputs/+rubric.md, parsequality_scorefromjudge-scores.json
- Record as the baseline in
autoresearch-log.jsonl - Create the initial
autoresearch-dashboard.html(use template fromreferences/dashboard-template.html)
Phase 3: The Loop (Repeat)
Each iteration follows this exact sequence:
Step 1 — Review
- Read the current state of the modifiable file
- Read the last 5 entries from
autoresearch-log.jsonl - Read
autoresearch-ideas.mdif it exists - Read the failure details from the last eval run
- Identify patterns: which criteria score lowest? Which test cases are hardest?
Step 2 — Ideate
- Pick ONE idea to try this iteration
- The idea must be atomic — one change, one hypothesis
- Write the hypothesis in plain English before making the change
- Target the weakest area from the last eval
Step 3 — Modify
- Save a backup: copy the modifiable file to
[filename].backup - Make exactly ONE change to the modifiable file
Step 4 — Execute Prompt (via Test Runner Sub-Agent)
- Before spawning, scan the target skill file for any references to other files (e.g.,
references/, linked files, imported data). List all file paths the skill depends on. - Spawn the
autoresearch-test-runnersub-agent with:
``` Execute the prompt at [path to target skill]. Test cases are at [path to test_cases.json]. The working project is at [project path].
Reference files the prompt depends on (read these first):
- [path to references/file1.md]
- [path to references/file2.md]
- [... list ALL referenced files]
Use all available tools (web search, file access, APIs) to produce real outputs. Save each output to outputs/output00.txt through outputs/output[N].txt. Follow the prompt exactly. One output per test case. No commentary. ```
- IMPORTANT: Always pass reference file paths explicitly. The test runner has fresh context — it cannot resolve relative paths or guess where files are. Scan the skill for patterns like
references/,see also, file paths,[[wikilinks]], or any mentions of other files, and pass their full absolute paths. - The sub-agent runs the prompt live with real tools — not mocked
- It has fresh context — it does not know:
- What the eval checks for
- What iteration we're on
- What changes were made
- What the optimization goal is
- You (the optimizer) MUST NOT generate outputs yourself. Always use the sub-agent.
Step 5 — Evaluate
- Deterministic mode: Run
python eval.py outputs/, parse theMETRIC pass_rate=X.XXXXline. If eval.py crashes, mark this iteration as "crash". - AI Judge mode: Spawn the
autoresearch-judgesub-agent with:
`` Score the outputs in [path to outputs/] against the rubric at [path to rubric.md]. Save your scores to judge-scores.json in the working directory. ` The judge agent has **fresh context** — it does not know iteration count, prompt changes, or optimization goals. Parse quality_score from judge-scores.json`.
Step 6 — Guard Check (if guard is set)
- Run the guard check
- If the guard fails, this iteration is automatically "discard"
Step 7 — Decide
| Condition | Action | |-----------|--------| | Metric improved (pass_rate or quality_score) | KEEP — the change stays, update .backup to the new version | | Metric same or worse | DISCARD — restore from .backup | | Eval crashed | CRASH — restore from .backup, note the error |
Step 8 — Log
- Append a line to
autoresearch-log.jsonl(see JSONL format below) - Update
autoresearch-worklog.mdwith a human-readable entry - Update
autoresearch-dashboard.htmlwith current stats
Step 9 — Repeat
- Go back to Step 1
- If stuck (3+ discards in a row on similar ideas), try a radically different approach
- If the user sends a message, pause the loop, respond, then resume
The Separation Rules
Rule 1: You are the optimizer. You NEVER generate outputs, write eval code, or score quality.
- You edit the prompt, read metrics, decide keep/discard
- You spawn the test runner sub-agent to produce outputs
- You spawn the eval agent sub-agent to write eval.py or rubric.md (Phase 1 only)
- In AI judge mode, you spawn the judge agent each iteration
- You do NOT read eval.py source code or rubric.md scoring details
Rule 2: The eval agent writes the eval system once, then disappears.
- It receives the criteria and the prompt
- Deterministic: it generates eval.py + test_cases.json
- AI Judge: it generates rubric.md + test_cases.json
- It is NEVER called again during the loop
- The optimizer never sees how the heuristics or scoring examples are
…
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: naveedharri
- Source: naveedharri/benai-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.