Summary
A contract-first audit found multiple executable tasks whose agent-visible answer language directly supplies the formula, truth value, extremum, implication, or theorem conclusion that the task asks the agent to derive.
The concrete leak appears as JSON Schema const or singleton-enum fields under result, but the root defect is not “misuse of one schema keyword.” The task has modelled an unknown mathematical conclusion as a public protocol constant and often asks the agent to repeat it alongside the actual certificate.
A public task contract should define:
what mathematical object the agent may submit
not:
the unique successful mathematical answer the agent is meant to discover
This is a task-design and benchmark-validity issue. Removing const while retaining a redundant conclusion field may still leave the wrong answer object.
Confirmed examples
convergence-mode-separation
The task asks the agent to establish the typewriter-sequence behavior while the public answer language fixes values such as:
event_mass_formula = 1/2^k
limit = ZERO
relationship = IN_PROBABILITY_NOT_IMPLY_ALMOST_SURE
triplewise-empty-extremal-audit
The answer language supplies the corrected maximum formula and incidence-budget conclusions the agent is asked to derive.
positive-lower-density-separation
The public result fixes the closed form and theorem-level truth values for positivity and nonexistence of natural density.
squarefree-class-independence-audit
The result fixes classification formulas, the final consequence, and the maximum number of squares ruled out.
exponential-moment-rationality
The terminal rationality conclusion is supplied as one fixed accepted label.
bounded-variation-uniform-limit
The public answer language publishes the limiting function, variation behavior, convergence fact, and implication.
Repository-wide search finds many more conclusion-like constants. Some constants are legitimate public branch tags or fixed input echoes; the task contract currently does not distinguish those roles.
Required field classification
Every public result field must be classified as one of:
Frozen problem data
A value known before solving. It belongs in input.json or the problem statement, not in the answer merely to be echoed.
Public structural discriminator
A finite tag that selects a task-local result variant, such as proof_mode = LDL. A constant inside one branch may be legitimate because it identifies shape rather than revealing whether the theorem is true.
Authoritative certificate data
The finite object the agent must construct: points, coefficients, proof steps, table entries, factorization data, search coverage, or another bounded witness. The public contract describes its type and bounds without fixing the successful value.
Derived conclusion or summary
A truth value, theorem label, count, formula, optimum, or implication determined by the certificate/public input. Normally remove it from the submitted answer and derive it in evaluator output.
Explicit classification objective
A conclusion may remain agent-authored only when choosing among multiple meaningful public possibilities is itself the task. The schema may expose the finite type, but not the correct member.
Why removing const alone is insufficient
Changing:
to:
prevents direct leakage but may still create impossible combinations between a certificate and a separately authored truth label. Where the evaluator can derive the boolean, remove it. Where classification is the objective, structurally bind it to the result variant or certificate.
Likewise, moving the same answer literal into generated instruction prose does not repair the task.
Required correction
- Inventory every
const and singleton enum beneath the submitted result.
- Classify it by the roles above.
- Move frozen problem data to the public input/problem statement.
- Keep only legitimate structural discriminators as constants.
- Remove derived conclusions/summaries from the answer where the certificate determines them.
- For explicit classification tasks, expose multiple meaningful choices and replay the evidence independently.
- Update instruction, public declaration, generated schema, hidden solution, evaluator, and metamorphic tests together.
Authoring invariant
Repository validation should flag:
- fixed booleans in truth/existence/optimality/conclusion fields;
- fixed formulas or exact numeric answers;
- fixed theorem/consequence/relationship labels; and
- singleton enums whose only purpose is to tell the agent which answer to return.
A retained constant requires a narrow reviewed classification such as PUBLIC_VARIANT_TAG or FROZEN_INPUT_ECHO, with a reason.
Acceptance criteria
Related
Summary
A contract-first audit found multiple executable tasks whose agent-visible answer language directly supplies the formula, truth value, extremum, implication, or theorem conclusion that the task asks the agent to derive.
The concrete leak appears as JSON Schema
constor singleton-enum fields underresult, but the root defect is not “misuse of one schema keyword.” The task has modelled an unknown mathematical conclusion as a public protocol constant and often asks the agent to repeat it alongside the actual certificate.A public task contract should define:
not:
This is a task-design and benchmark-validity issue. Removing
constwhile retaining a redundant conclusion field may still leave the wrong answer object.Confirmed examples
convergence-mode-separationThe task asks the agent to establish the typewriter-sequence behavior while the public answer language fixes values such as:
triplewise-empty-extremal-auditThe answer language supplies the corrected maximum formula and incidence-budget conclusions the agent is asked to derive.
positive-lower-density-separationThe public result fixes the closed form and theorem-level truth values for positivity and nonexistence of natural density.
squarefree-class-independence-auditThe result fixes classification formulas, the final consequence, and the maximum number of squares ruled out.
exponential-moment-rationalityThe terminal rationality conclusion is supplied as one fixed accepted label.
bounded-variation-uniform-limitThe public answer language publishes the limiting function, variation behavior, convergence fact, and implication.
Repository-wide search finds many more conclusion-like constants. Some constants are legitimate public branch tags or fixed input echoes; the task contract currently does not distinguish those roles.
Required field classification
Every public result field must be classified as one of:
Frozen problem data
A value known before solving. It belongs in
input.jsonor the problem statement, not in the answer merely to be echoed.Public structural discriminator
A finite tag that selects a task-local result variant, such as
proof_mode = LDL. A constant inside one branch may be legitimate because it identifies shape rather than revealing whether the theorem is true.Authoritative certificate data
The finite object the agent must construct: points, coefficients, proof steps, table entries, factorization data, search coverage, or another bounded witness. The public contract describes its type and bounds without fixing the successful value.
Derived conclusion or summary
A truth value, theorem label, count, formula, optimum, or implication determined by the certificate/public input. Normally remove it from the submitted answer and derive it in evaluator output.
Explicit classification objective
A conclusion may remain agent-authored only when choosing among multiple meaningful public possibilities is itself the task. The schema may expose the finite type, but not the correct member.
Why removing
constalone is insufficientChanging:
{"const": true}to:
{"type": "boolean"}prevents direct leakage but may still create impossible combinations between a certificate and a separately authored truth label. Where the evaluator can derive the boolean, remove it. Where classification is the objective, structurally bind it to the result variant or certificate.
Likewise, moving the same answer literal into generated instruction prose does not repair the task.
Required correction
constand singleton enum beneath the submitted result.Authoring invariant
Repository validation should flag:
A retained constant requires a narrow reviewed classification such as
PUBLIC_VARIANT_TAGorFROZEN_INPUT_ECHO, with a reason.Acceptance criteria
Related