Install
$ agentstack add skill-neuroanalytics-data-science-harness-run-comparison ✓ 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
Skill: run-comparison
Run the user's analysis script as a provenanced, containerized computation so inputs, command, container image, and outputs are all recorded (Actionability + Tracking) in a disposable, rebuilt-from-spec environment (Portability + Ephemerality). You never run the tool yourself — you delegate to the datalad doer.
When to use
- A comparison branch exists (
analyze/propose-comparison) and the analysis script is written. - Do NOT use for one-off exploratory commands that produce no output files — those need no run
record. Do NOT use to create the branch (that is propose-comparison).
Steps
- Confirm context — verify you are on the comparison's branch (
cmp/) and the script
exists in code/. If not, ask the user which branch/script, or route to propose-comparison.
- Gather run parameters:
command— how to invoke the script (e.g.python code/stats.py)-iinputs — the data files/globs the script reads (e.g.participants.tsv,sub-*/…)-ooutputs — where results land (preferderivatives/cmp-/…)-mmessage — a meaningful description of the run- container — the project container recipe from
containers/(build/register on first use)
- Ensure the container image exists (containers doer) — if no
.sifhas been built yet for the
project recipe, delegate to the containers doer: > "build a .sif from containers/ into containers/.sif." It returns the image path and the datalad containers-add … command to register it. Skip if the image is already built and registered.
- Delegate execution to the datalad doer:
> "container-run ` on branch cmp/ using container (register it with the > containers-add command from step 3 if not yet registered), inputs , outputs , > message `." Wait for its structured result (commit sha, recorded outputs, pass/fail).
- Handle the result:
- ok — note the commit and output paths.
- failed — relay the doer's error + suggested fix; nothing was committed. Stop.
- Log it — append to
project.yaml:
{ ts, op: run-comparison, stage: analyze, note: "container-run ; commit ; outputs ", branch: cmp/ }.
- Report — commit, outputs, and that the run is replayable via the doer (
datalad rerun).
Constraints
- Always run through the datalad doer's
container-runpath so the environment is captured — do
not fall back to a bare datalad run or a raw shell command for an analysis with outputs.
- Require a meaningful
-mmessage; never a placeholder. - Do not write or "fix" the analysis script's science — if it errors on its own logic, surface it
to the user; the harness owns provenance, not the model.
- Keep
project.yamlappend-only; log both successful and (as a note) failed runs if useful.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: neuroanalytics
- Source: neuroanalytics/data-science-harness
- 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.