comet eval evaluation system, environment preparation, report interpretation, and publish evidence.
Basic Concepts
What exactly does comet eval evaluate
What exactly does comet eval evaluate
comet eval executes real model tasks through a shared eval harness to verify whether a Skill, as a product capability, can pass evaluation, producing pre-release evidence. It wraps pytest, the task registry, profiles, and report generation — you don’t need to assemble parameters by hand. See Evaluation System Overview.What is the difference between comet eval and comet skill check
What is the difference between comet eval and comet skill check
comet eval evaluates a Skill’s product capability and produces pre-release evidence (reads comet/eval.yaml). comet skill check checks whether a specific Skill run is missing artifacts or state, does not execute model tasks, and does not produce publish evidence (reads comet/checks.yaml). Publish readiness only requires comet eval. See Runtime check.Do I need to know pytest or Docker
Do I need to know pytest or Docker
comet eval wraps the underlying details — you only need to know whether to use --manifest or --skill-path. The underlying details are handled by the harness. See Eval harness.What do you mean by two evaluation systems
What do you mean by two evaluation systems
comet eval, reads comet/eval.yaml) and runtime checks (comet skill check, reads comet/checks.yaml). The former is publish evidence; the latter is run-completeness checking. See Evaluation System Overview · Two Evaluation Systems.Environment Preparation
What environment do I need to run eval
What environment do I need to run eval
uv, Python 3.11+, Docker, and ANTHROPIC_API_KEY (or ANTHROPIC_AUTH_TOKEN). The core Comet runtime does not need these — only comet eval does. For full preparation steps, see Evaluation Quickstart · What You Need to Prepare Before Running.The eval "passes" instantly but it doesn't feel like it really ran
The eval "passes" instantly but it doesn't feel like it really ran
claude CLI isn’t on PATH. In these cases the harness will skip rather than fail. Confirm the environment is ready first.How do I install uv
How do I install uv
curl -LsSf https://astral.sh/uv/install.sh | sh. Windows PowerShell: powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex". uv will automatically manage Python versions and eval/.venv.How do I configure the API key
How do I configure the API key
export ANTHROPIC_API_KEY=sk-ant-..., or configure it in eval/.env (the harness loads it automatically). Use ANTHROPIC_AUTH_TOKEN for proxy-type credentials (BigModel / OpenRouter).Two Entry Points
Should I use --manifest or --skill-path
Should I use --manifest or --skill-path
comet/eval.yaml (usually a /comet-any artifact), use --manifest — this is the complete pre-release evaluation. If you only have a local Skill directory and are still in early debugging, use --skill-path --quick. To enter publish readiness you must use --manifest. The two are mutually exclusive.What is --quick and what is the default task
What is --quick and what is the default task
--quick is used with --skill-path; it selects the generic-skill-smoke task by default, suitable for low-cost early smoke testing. It is not equivalent to complete pre-release evidence — you still need the manifest path when preparing to publish.Why collect first, then run
Why collect first, then run
collect only does discovery pre-checks (validates manifest, tasks, paths), consumes no model calls, has the lowest cost, and is suitable for troubleshooting right after generating a Skill. run executes the real evaluation. Collecting first can quickly surface configuration problems and avoid wasting model calls. See Quickstart.What is the difference between authoring-skill and generic profile
What is the difference between authoring-skill and generic profile
Reports and Failures
Where to find the report
Where to find the report
Report path, usually eval/local/logs/experiments/<experiment-id>/summary.html. The experiment id format is <task>_<YYYYMMDD_HHMMSS>. See Reading Evaluation Reports.The evaluation failed, how do I tell where the problem is
The evaluation failed, how do I tell where the problem is
harness indicates an environment/dependency/path problem, workflow indicates the Skill flow didn’t meet expectations, task indicates a task definition/fixture problem, and model indicates unstable model behavior. The attribution determines what you should fix. See Reading Evaluation Reports.collect errors saying it can't find the manifest
collect errors saying it can't find the manifest
comet/eval.yaml file exists. If you’re not in the Comet repo root directory, add --project <dir> to point to the correct root.Should I rerun after a model attribution failure
Should I rerun after a model attribution failure
model attribution means the model behavior or tool usage was unstable — rerunning usually helps. If it fails repeatedly, consider reducing the Skill’s reliance on non-deterministic behavior.The Rubric score is very low but all checks passed, does it count as a pass
The Rubric score is very low but all checks passed, does it count as a pass
[RUBRIC] lines and RubricAvg) and does not directly determine pass or fail. The real pass/fail is determined by the validators and required Skill invocations. A low rubric score is a diagnostic signal you can use to improve the Skill, but it doesn’t affect the publish gate.Publish Evidence
Does passing eval mean I can publish
Does passing eval mean I can publish
/comet-any or the backend will incorporate eval evidence into readiness: no evidence, failures, or matching an old hash all prevent publishing. Only passing with a matching hash lets you proceed to review/publish. See Evaluation System Overview.What does it mean that eval evidence matches an old hash
What does it mean that eval evidence matches an old hash
comet eval ... --html to generate evidence bound to the current hash.Can I manually write the report path into the publish status
Can I manually write the report path into the publish status
/comet-any records structured evidence through the Bundle backend. Manually editing Bundle state or internal JSON will break the hash binding and readiness validation.Can quick smoke be used as publish evidence
Can quick smoke be used as publish evidence
--skill-path --quick is only early smoke testing with limited coverage. Before publishing you must generate comet/eval.yaml via /comet-any, then run the full evaluation with --manifest.
