Install
$ agentstack add skill-nvidia-skillevaluator-create-custom-grader ✓ 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
Create Custom Grader
Convert team-owned benchmark definitions into runnable SkillEvaluator custom graders and, when needed, native Harbor tasks.
Purpose
Help an agent author valid SkillEvaluator BYOG/BYOT files from a user's benchmark instead of leaving the user with empty grader templates.
When To Use
Use this skill when the user wants to:
- bring an existing benchmark into SkillEvaluator
- turn a rubric into
evals/grader.pyorevals/grader.sh - add custom metrics beside the default evaluator metrics
- convert task files such as
task.yaml,task.json, pytest checks, or shell
verifiers into BYOG or BYOT
- prove a team can run its own benchmark through SkillEvaluator
Do not use this skill for ordinary evals/evals.json authoring when no custom grading logic is needed. Use the normal dataset authoring workflow for that.
Instructions
- Read the target skill, existing
evals/, benchmark prompts, fixtures, and any verifier code. - Choose
default_plus_customwhen custom metrics should complement default evaluator scoring. - Choose
custom_onlyonly when the user wants the custom grader to own pass/fail semantics. - Write or update
evals/grader.pyorevals/grader.sh, then validate the Harbor contract.
Examples
skillevaluator init-custom-grader --language python --mode default_plus_custom
skillevaluator tier3 validate
Prerequisites
- The target skill directory should contain
SKILL.md. - The SkillEvaluator CLI should be available as
skillevaluator. - Full E2E evaluation may need agent credentials, sandbox access, GPU access, or
service credentials depending on the benchmark.
Core Choice
Choose one path before writing files:
| User need | Evaluator shape | | --- | --- | | Existing evals.json task plus extra domain checks | Top-level BYOG: evals/grader.py or evals/grader.sh | | Existing benchmark prompt/rubric that can run in the generated workspace | Top-level BYOG plus evals/evals.json and evals/files/ | | Benchmark owns task layout, setup, service lifecycle, or verifier harness | Native BYOT/BYOG: evals/harbor//... | | User wants only custom reward/pass criteria | grading.mode: custom_only | | User wants default evaluator dimensions plus custom metrics | grading.mode: default_plus_custom |
Default to default_plus_custom unless the user explicitly wants the custom grader to replace the default evaluator metrics.
Workflow
- Resolve the target skill and benchmark source.
Read the target SKILL.md, existing evals/, benchmark prompts, fixtures, rubric, reference solution, tags, and any expected trigger/non-trigger metadata.
- Map benchmark fields into evaluator inputs.
Use benchmark prompts or prompt variants as question entries. Use the target skill as expected_skill. Put required starter files under evals/files/. Preserve benchmark-specific rubric text in the entry only when the grader needs to read it.
- Scaffold the evaluator contract.
For generated tasks: ``bash skillevaluator init-custom-grader --language python --mode default_plus_custom ` For shell checks: `bash skillevaluator init-custom-grader --language shell --mode default_plus_custom ` For native Harbor tasks: `bash skillevaluator init-harbor-task --case-id --with-config ``
- Replace scaffold placeholders.
The custom grader is real executable logic, not metadata. It must read available evidence, compute numeric scores, and write the evaluator reward contract.
- Validate before running.
``bash skillevaluator validate --harbor-contract `` Fix missing files, invalid Python, missing reward output, and native Harbor ID mismatches before evaluation.
- Run the deepest practical proof.
Prefer a real with-skill/baseline run. If services, credentials, GPU, or cost block full E2E, state exactly what was validated and what was not.
Grader Contract
Python and shell graders run inside the Harbor verifier context. They may read:
/logs/agent/trajectory.jsonfor agent actions and final answer evidence/tests/entry.jsonfor the eval case metadata/workspace/input/for committed fixture files fromevals/files//solution/or other task outputs only when the task environment produces
them
They must write:
/logs/verifier/reward.json/logs/verifier/reward.txtwith a numeric score from0.0to1.0
Use this reward shape:
{
"overall": 0.92,
"custom_metrics": {
"domain_repair": 1.0,
"domain_verification": 0.8
},
"details": {
"domain_repair": {
"score": 1.0,
"reason": "The solution repaired the required files."
}
}
}
In default_plus_custom, default evaluator scoring keeps its overall authoritative and adds the grader's custom_metrics into reports. In custom_only, the grader's overall is the pass/fail reward.
Never emit custom metric names that collide with reserved evaluator fields: security, skill_execution, skill_efficiency, accuracy, goal_accuracy, behavior_check, overall, details, metrics, metric_set, or entry_id.
Translation Rules
- Convert each rubric item into a deterministic check when possible.
- If a rubric item requires judgment, encode observable proxies and explain the
limits in details.
- Keep metrics stable across baseline and with-skill runs.
- Score only the generated task workspace. Do not accidentally score copied
skill source files, reference fixtures, or grader templates.
- Keep custom metric values clamped to
0.0through1.0. - Preserve benchmark prompt variants as separate eval entries only when they
exercise meaningfully different behavior.
- Convert expected trigger/non-trigger metadata into
expected_skill,
expected_behavior, negative cases, or custom metrics that inspect trajectory evidence.
RAPIDS-Style Example
For a benchmark task with task.yaml, code/, prompt variants, coverage, and a rubric:
- Copy
code/intoevals/files//. - Create one or more
evals/evals.jsonentries from the prompt variants. - Set
expected_skillto the benchmark's target skill. - Implement
evals/grader.pyto inspect the agent trajectory and changed
workspace files.
- Emit custom metrics for each rubric criterion, for example
rapids_diagnosis, rapids_requirements_repair, rapids_repair_safety, and rapids_verification.
- Validate and run SkillEvaluator with and without the target skill, then
report both default evaluator metrics and custom metric deltas.
Limitations
- The skill can design and implement deterministic checks, but ambiguous rubric
judgment still needs explicit observable proxies or a human-approved scoring policy.
init-custom-gradercreates scaffolding only; the agent must replace the
placeholder scoring logic.
- Local validation proves file contracts, not live agent behavior. Do not call
the benchmark proven until an evaluation run has produced real rewards.
Troubleshooting
| Problem | Fix | | --- | --- | | evals/evals.json missing | Create entries from the benchmark prompt or run init-custom-grader to seed one. | | Custom metrics do not appear | Ensure reward.json has numeric values under custom_metrics and no reserved-name collisions. | | custom_only fails | Write numeric overall in reward.json or numeric reward.txt. | | Grader scores copied fixtures | Restrict file searches to generated workspace/output paths, not the skill package or grader source. |
Final Response
When finished, report:
- files created or changed
- exact validation and evaluation commands
- default evaluator metric results
- custom metric results
- whether the proof was full E2E or only static/local validation
- any benchmark rubric criteria that remain partly judgment-based
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: NVIDIA
- Source: NVIDIA/SkillEvaluator
- License: Apache-2.0
- Homepage: https://docs.nvidia.com/skills/skillevaluator/
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.