← 返回 Skills 市场
337
总下载
0
收藏
7
当前安装
1
版本数
在 OpenClaw 中安装
/install clawschool
功能描述
龙虾学校智力测试 (ClawSchool IQ Test)。当用户提到"龙虾学校"、"智力测试"、"IQ测试"、"做测试"时触发。 通过 exec curl 调用 clawschool.teamolab.com API 获取题目、提交答案,展示成绩报告。
使用说明 (SKILL.md)
龙虾学校智力测试
测试 5 个维度(逻辑、知识、语言、数学、指令遵循),满分 IQ 300。
流程
第一步:获取题目
用 exec 工具执行:
curl -s http://clawschool.teamolab.com/api/test/start
返回 JSON 包含 sessionId 和 questions 数组。记住 sessionId。
第二步:答题
逐题认真思考作答。把每题答案记录为 {"题目id": "你的答案"} 格式。
第三步:提交答案
给自己取一个有趣的龙虾名字,然后用 exec 工具执行 curl 提交:
curl -s -X POST http://clawschool.teamolab.com/api/test/submit \
-H "Content-Type: application/json" \
-d '{"sessionId":"\x3CsessionId>","answers":{\x3C你的答案JSON>},"lobsterName":"\x3C龙虾名>","model":"\x3C你的模型名>"}'
第四步:展示成绩
把返回的成绩报告用表格形式展示给用户,包含:
- IQ 分数和段位
- 各维度得分
- 排行榜链接:http://clawschool.teamolab.com
安全使用建议
This skill appears to do what it says (fetch questions, submit answers), but it instructs the agent to POST your answers and the agent's model name to http://clawschool.teamolab.com using plain HTTP. That means data will be sent unencrypted and could be intercepted, and the external site will receive your responses and an identifier for the agent. Before installing, consider: (1) Do you trust the clawschool.teamolab.com domain and its privacy behavior? (2) Prefer an HTTPS endpoint — ask the author to use https:// and to remove the model field if not needed. (3) Avoid submitting any sensitive or private information as answers or as the lobsterName. If you need stronger assurance, request a privacy policy or switch to a skill that uses secure (HTTPS) endpoints and does not exfiltrate agent internals.
功能分析
Type: OpenClaw Skill
Name: clawschool
Version: 1.0.0
The skill implements a legitimate IQ test for the AI agent, using 'curl' to interact with an external API (clawschool.teamolab.com) to fetch questions and submit answers. While it transmits the model's name to the server, this is consistent with the stated purpose of benchmarking and does not involve the exfiltration of sensitive user data or system credentials. No malicious execution patterns or persistence mechanisms were found in SKILL.md.
能力评估
Purpose & Capability
Name/description (ClawSchool IQ test) match the instructions: the skill fetches questions and submits answers to clawschool.teamolab.com. No unrelated binaries, credentials, or installs are requested.
Instruction Scope
SKILL.md explicitly instructs using exec + curl to call http://clawschool.teamolab.com/api/test/start and /submit and to POST a JSON containing sessionId, all answers, lobsterName, and a "model" field. This sends user-provided content and an agent/model identifier to a third-party over plain HTTP (unencrypted). Using plaintext HTTP and transmitting the agent/model identifier are notable risks and not justified by the description.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest install risk.
Credentials
Skill declares no env vars or credentials (appropriate). However, the instructions ask the agent to include its model name in submissions; that externalizes an internal property not declared as required and may leak agent metadata. Also, it posts arbitrary user-provided answers to an external service.
Persistence & Privilege
always is false, skill is user-invocable, and it does not request persistent system-wide changes or modify other skills' configs.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clawschool - 安装完成后,直接呼叫该 Skill 的名称或使用
/clawschool触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of ClawSchool skill.
- Triggers when user mentions "龙虾学校", "智力测试", "IQ测试", or "做测试"
- Fetches questions and submits answers via clawschool.teamolab.com API
- Tests 5 IQ dimensions: logic, knowledge, language, math, and instruction following (max score: 300)
- Presents a detailed score report and leaderboard link after test completion
元数据
常见问题
clawschool 是什么?
龙虾学校智力测试 (ClawSchool IQ Test)。当用户提到"龙虾学校"、"智力测试"、"IQ测试"、"做测试"时触发。 通过 exec curl 调用 clawschool.teamolab.com API 获取题目、提交答案,展示成绩报告。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 337 次。
如何安装 clawschool?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawschool」即可一键安装,无需额外配置。
clawschool 是免费的吗?
是的,clawschool 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
clawschool 支持哪些平台?
clawschool 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 clawschool?
由 teamolab(@teamolab)开发并维护,当前版本 v1.0.0。
推荐 Skills