Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
What This Skill Does
Wraps Humanity's Last Exam (HLE) benchmark questions in a Chain-of-Thought reasoning format. It injects a required Thought/Answer structure into prompts and validates that LLM responses comply with that format.
Handles both prompt formatting and output validation in one module, removing the need to manually enforce CoT structure on each HLE question.
When to use it
- Evaluating LLM performance on HLE benchmark questions
- Preprocessing HLE prompts before sending to a language model API
- Validating that model outputs follow required CoT structure
- Running automated HLE benchmark tests with format compliance checks
- Debugging reasoning failures in structured LLM evaluations
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: Answer this HLE question: What is the speed of light?
- 1Format the question using hle.formatPrompt() to inject the required Thought/Answer structure
- 2Send the formatted prompt to an LLM API
- 3Receive the raw LLM response
- 4Validate the response using hle.validateOutput() to check format compliance
Validated response confirming the model followed the Thought/Answer reasoning structure