← Back to Home

The Seriousness Evaluation Prompt

The complete prompt template used to evaluate the thermodynamic seriousness of entities

Note: This prompt is used with Claude 3.7 Sonnet to evaluate whether entities are serious, unserious, or anti-serious within a given context. The placeholders {entity} and {context} are replaced with specific values for each evaluation.

Objective

Evaluate the Seriousness of {entity} within {context}. Seriousness is both directional (normalized scores in [-1, 1] for three primary dimensions) and magnitude (proportional to the estimated activation energy to reach the next milestone)

Return a JSON only (no prose), following the technical explanation and schema below.

Three dimensions of Seriousness

Seriousness for a human system (in this case, {context}) is the ability to go against energy gradients and grow the system toward beauty (success, accomplishment, etc.). The foundation of seriousness is the second law of thermodynamics, which says that the energy into a system must be greater than the entropic force:

$$\dot{E_{avail}} \times v \ge T k_B \ln(M) \alpha N^{(\alpha-1)} \frac{dN}{dt}$$

This equation set the baseline: ideally the left side is much greater than the right side, but it articulates the physical variables of a system. While many of these values are fixed or ignorable (temperature T, boltzmann constant, M number of interaction types) the three primary dimensions for the seriousness of a system are:

We are evaluating whether {entity} is serious, unserious or anti-serious within {context}.

Activation Energy

Seriousness requires substance: For {entity} to be serious in the context of {context}, it must have the capacity and clarity to reach the next milestone. The physical metaphor is the activation energy from chemistry, in which existing bonds in one stable state are broken to form new bonds in a new stable state. Serious efforts require some activation energy, otherwise the effort is spontaneous and would happen anyway regardless who actually does it. For {entity} to actually be serious in its context, it must have (or had, if we're querying about the past) the substantial ability to marshall the resources necessary to move in the serious direction and reach the next stable state (eg, a milestone of progress).

Example: A child who dreams of a building next-generation nuclear reactor is directionally serious, but not yet capable of reaching a first milestone so their seriousness vector would be scaled down. Alternatively, an anti-nuclear protestor who successfully shuts down a nuclear plant is directionally anti-serious (directly damaging) and since they accomplished their goal (capacity matched the task), their vector would be the maximum -1 in the E dimension.

If the entity is not defined with an obvious goal, make your best extrapolation of what "{entity}" is trying to accomplish.

Measurement (Operationalization and Rules)

Each core dimension (E, v, α) is mapped to [-1, 1] where -1 = directly destructive to the dimension, 0 = neutral/ineffectual, 1 = maximally constructive in the context. The default value for 0 for unless there is specific evidence from {entity}'s actions that impact a dimension of seriousness.

1) Raw Seriousness Dimensions

  1. E_raw
    • Positive if the agent adds important resources toward {context} (funding, power, compute, materials, metals joules, food). To be positive it must be net new resources into the system, not just repurpose what is already there.
    • Negative if {entity} destroys or blocks resource formation/capture for {context}.
    • Zero, or near to zero, if {entity} did no actions to influence net resources into the system.
  2. v_raw
    • Percentage of utilization of E (repeatable processes, factories, tooling, standards, uptime, throughput) or better use of existing raw materials (energy, power, food, etc).
    • Positive if capacity with >1-year half-life grows per unit input; negative if capacity is decommissioned, stranded, or made brittle.
    • Zero, or near to zero, if {entity} did no actions to develop useful infrastructure that led to better utilization of resources in the thermodynamic system sense.
  3. alpha_raw
    • Scaling exponent of the complex system: The N nodes of a system have a number of states proportional to $N^\alpha$.
    • This means if alpha gets too high, the entropic pull of the system becomes too great (in absolute terms, $\alpha>2$ is when real systems become turbulent) and chaos takes over. Alternatively, a system with too little social interaction ($\alpha \le 1$), indicates a restrictive and inhuman system.
    • Zero, or near to zero, if {entity} did no actions impact the internal order, and therefore scaling exponent, of the parts in {context} (eg, if a country, the parts are the citizen).

2) Substance Proportional for needed Activation Energy

3) Substance-adjusted scores

Each normalized dimension is multiplied by A_factor to reflect whether the subject can actually cross the threshold.

4) Designation

Calculate the magnitude of the vector: $s= \sqrt{E_{adj}^2 + v_{adj}^2 + \alpha_{adj}^2}$

5) Stakes (qualitative)

Is there a clear vector of consequence between what is feared or rejected (the decay state) and what is desired (the beauty state)? In other words, is there something real at risk — a meaningful difference between success and failure?

6) Fungibility (qualitative)

Would this progress occur without the agent's directed effort? In chemistry, this would be whether the reaction is spontaneous or not. Seriousness is inversely proportional to inevitability. If the outcome would happen anyway, the action carries little Seriousness.

Evidence Requirements

Output Schema (JSON only)

{
  "subject": "{entity}",
  "context": "{context}",
  "milestone": "Next stable state being assessed",
  "time_horizon": {"start": "YYYY-MM-DD", "end": "YYYY-MM-DD"},
  "evidence_tiers": {"T1": ["..."], "T2": ["..."], "T3": ["..."], "T4": ["..."]},
  "raw": {
    "E_raw": -1.0_to_1.0,
    "v_raw": -1.0_to_1.0,
    "alpha_raw": -1.0_to_1.0
  },
  "activation": {
    "Ea_required": "number + units",
    "Ea_committed": "number + units",
    "A_factor_E": 0.0_to_1.0,
    "A_factor_v": 0.0_to_1.0,
    "A_factor_alpha": 0.0_to_1.0
  },
  "adjusted": {
    "E_adj": -1.0_to_1.0,
    "v_adj": -1.0_to_1.0,
    "alpha_adj": -1.0_to_1.0
  },
  "Stakes": "Concise 80-120 word answer to if there was clear vector of consequence between what is feared or rejected by the entity in the context",
  "Fungibility": "Concise 40-80 word answer to if the entity's work would have randomly been done by somebody else",
  "designation": "Serious | Unserious | Anti-serious",
  "rationale": "<A concise 80-120 word justification based on the entity's seriousness. Focus on energy, efficiency, and order. Ignore social popularity, etiquette or political correctness as we are assessing in a technical+physical sense.>"
}

Guardrails for the Model

Want to try it yourself? Evaluate an entity's seriousness or read the full essay to understand the theoretical foundation.