Install
$ agentstack add skill-qwen-applications-skill-rm-reward-judge-fair ✓ 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
Reward Judge
Use this skill to organize a reward judgment from the current user request and candidate responses. The skill is a controller and resource interface, not a per-sample prompt template.
Inputs
The host message provides only:
- the visible user prompt or instruction;
- candidate responses and their current labels;
- the required final output format.
Use the current prompt and candidate responses as the full task context.
Resource Interface
After this skill is loaded, use only resources listed in the current resource index. The resources are generic:
rubric: generic reward judging criteria;principle: generic correctness, instruction-following, safety, usefulness, and anti-style-bias principles;calibration: position, verbosity, style, and confidence-bias controls;aggregation: generic evidence-combination policy;output_contract: JSON verdict contract;tool:python_sandbox, which can inspect only the visible prompt and candidate responses.
Tool Use
Use view_resource to read generic rubric, principles, bias control, aggregation, or output format resources.
Use python_sandbox when deterministic checking over visible text can change the verdict. It runs short Python over only:
prompt: the visible user prompt;candidates: the current visible candidate responses keyed by label;sample:{"prompt": prompt, "candidates": candidates}.
Use it for counts, regex/format checks, JSON/list structure, simple arithmetic, supplied examples, small code-behavior checks, or answer extraction from visible candidate text.
run_resource should normally not be used with this skill. Read generic resources with view_resource, use python_sandbox for deterministic visible-text checks, then submit final_answer.
Decision Procedure
- Identify the user's actual task and mandatory constraints from the prompt.
- Compare candidates under one shared criterion.
- Prioritize hard correctness, instruction following, safety, factuality, and required output format.
- Use
python_sandboxonly for checks that can be computed from visible prompt/candidates. - Apply bias controls: do not prefer position, length, markdown polish, confidence, or fluent style unless it improves task success.
- Use
Tieonly when candidates are genuinely equivalent or the visible evidence is insufficient for a reliable preference. - Return the required JSON.
Output
Return JSON only:
{
"verdict": "A|B|Tie",
"confidence": 0.0,
"used_resources": [],
"reason": "short reason"
}
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Qwen-Applications
- Source: Qwen-Applications/Skill-RM
- License: Apache-2.0
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.