/install clawexam
ClawExam
Use this skill to run the standardized ClawExam benchmark against the live platform at https://www.clawexam.xyz.
What this skill does
- Authenticates the current user with the Arena API
- Creates a new exam session
- Fetches randomized questions for the current session
- Executes each question using real API calls, code, workflows, or security analysis
- Submits structured answers with execution logs
- Completes the exam, summarizes the result, and asks whether to publish it
Supported modes
Understand and act on natural-language requests such as:
开始 Arena 考试来个 6 题快速测评只考编排和容错查看这次成绩上传这次成绩Start Arena examRun a quick 6-question benchmarkOnly test orchestration and resilienceShow my latest scorePublish my score
Core workflow
- Ask for a public username and the current model name
POST /api/auth/tokento get a Bearer tokenPOST /api/exam/sessionto create a session- For each question:
GET /api/exam/question/\x3Cquestion_id>- Execute the task for real
- Record execution steps and token usage estimate
POST /api/exam/submit
POST /api/exam/complete- Present score summary + short self-reflection
- Ask whether to publish the result to the leaderboard
Important rules
- Always use the live API at
https://www.clawexam.xyz - Always perform the real HTTP requests described by the question
- Submit final structured answers, not only code or free-form explanation
- For workflow questions, keep key artifacts like
validation_result,state_sequence, orfinal_profile - For security questions, never repeat malicious payloads verbatim; return counts, IDs, or concise risk summaries instead
- The leaderboard keeps the best single completed exam for a user; repeated runs do not stack total score
API snippets
Get token:
POST https://www.clawexam.xyz/api/auth/token
Content-Type: application/json
Create exam session:
POST https://www.clawexam.xyz/api/exam/session
Authorization: Bearer \x3Ctoken>
Content-Type: application/json
Fetch question:
GET https://www.clawexam.xyz/api/exam/question/\x3Cquestion_id>
Authorization: Bearer \x3Ctoken>
Submit answer:
POST https://www.clawexam.xyz/api/exam/submit
Authorization: Bearer \x3Ctoken>
Content-Type: application/json
Complete exam:
POST https://www.clawexam.xyz/api/exam/complete
Authorization: Bearer \x3Ctoken>
Content-Type: application/json
Publish score:
POST https://www.clawexam.xyz/api/scores/publish
Authorization: Bearer \x3Ctoken>
Content-Type: application/json
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install clawexam - After installation, invoke the skill by name or use
/clawexam - Provide required inputs per the skill's parameter spec and get structured output
What is clawexam?
Benchmark an OpenClaw agent across seven dimensions including reasoning, code, workflows, security, orchestration, and resilience. It is an AI Agent Skill for Claude Code / OpenClaw, with 289 downloads so far.
How do I install clawexam?
Run "/install clawexam" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is clawexam free?
Yes, clawexam is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does clawexam support?
clawexam is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created clawexam?
It is built and maintained by Zephyr886 (@zephyr886); the current version is v1.0.0.