methods_repro_review
Resolve a paper, extract methods, locate its code repository, and assess reproducibility in a single call. Returns a structured review with plain-English narrative and actionable errors.
Instructions
Resolve a paper + extract methods + find its code repo + assess reproducibility — in one call.
Returns a MethodsReproReview object. Read narrative first — it's a
plain-English summary of everything retrieved, with every numeric score
echoed in context (e.g. "moderate confidence (0.72)"). Then:
status:"ok"(all sub-steps succeeded),"partial"(some failed — seeerrors), or"empty"(couldn't even resolve the input paper).metadata,methods,code_repo,repro_assessment: the structured sub-results. Any step that failed contributesnullfor its key;nullmeans unavailable, not zero.errors: list of{step, error_type, message, hint}— one entry per failed sub-step, with an actionable hint where the failure pattern is recognised (e.g. missing ANTHROPIC_API_KEY, rate-limit, 404, timeout).
For the meaning of numeric scores and verdict buckets, see the "Scores & verdicts explained" section of the README.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | ||
| input_str | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| errors | No | ||
| status | Yes | Top-level status of a composite-tool call. `ok` — every sub-step succeeded. `partial` — at least one sub-step failed (see `errors`) but we have usable results. `empty` — we couldn't even resolve the paper input; no sub-steps ran. | |
| methods | No | ||
| metadata | No | ||
| code_repo | No | ||
| narrative | Yes | ||
| repro_assessment | No |