Generate Judgements

PassAudited by ClawScan on May 10, 2026.

Overview

The visible artifacts describe a coherent instruction-only helper for generating evaluation judge YAML, with only minor cautions around user-approved file edits and optional API-key placeholders.

This looks safe for its stated purpose. Use it only on the intended skill directory, review any YAML diff before approving writes, and do not store real API keys in generated config files. The supplied SKILL.md excerpt is marked truncated, so review the complete SKILL.md if available before relying on this assessment.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A wrong target path or unreviewed generated YAML could alter an evaluation config the user did not intend to change.

Why it was flagged

The skill is intended to create or update YAML files, which is local file mutation. The workflow explicitly requires user approval before writing, making this purpose-aligned rather than suspicious.

Skill content
confirm_judge [label="User approves?" shape=diamond];
  write [label="Phase 5\nWrite / Update YAML"];
Recommendation

Confirm the target YAML path and review the generated changes before approving the write.

What this means

If a user fills real API keys into generated YAML and commits or shares it, those credentials could be exposed.

Why it was flagged

The reference config includes empty placeholders for provider environment variables. This is common for evaluation configs, but real API keys would be sensitive if inserted into files.

Skill content
environment:
  OPENAI_API_KEY: ""
  OPENAI_BASE_URL: ""
Recommendation

Keep real API keys in a secret manager or local environment variables, and avoid committing populated credential values.