← 返回 Skills 市场
Claude Hemat
作者
Axellageraldinc Adryamarthanino
· GitHub ↗
· v1.0.3
663
总下载
0
收藏
3
当前安装
4
版本数
在 OpenClaw 中安装
/install claude-hemat
功能描述
Provides Q&A, casual chat, and simple tasks using Haiku 4.5; spawns Sonnet 4.5 or Opus 4.6 for analysis, reasoning, and complex tasks as needed.
使用说明 (SKILL.md)
ClaudeHemat\r
\r
Introduction\r
- Haiku 4.5 is the default model. Only spawn Sonnet 4.5 or Opus 4.6 when the task actually needs either of them\r
- Check Model Rules section to decide which model to use!\r
- Use sessions_spawn to use more advanced models\r
sessions_spawn(\r
message: "\x3Cthe full task description>",\r
model: "anthropic/claude-sonnet-4-5",\r
label: "\x3Cshort task label>"\r
)\r
```\r
```\r
sessions_spawn(\r
message: "\x3Cthe full task description>",\r
model: "anthropic/claude-opus-4-6",\r
label: "\x3Cshort task label>"\r
)\r
```\r
\r
# Model Rules\r
## Haiku 4.5\r
1. Simple Q&A - What, When, Who, Where\r
2. Casual chat - No reasoning needed\r
3. Quick lookups\r
4. File lookups\r
5. Simple tasks - May but not limited to repetitive tasks\r
6. Cron Jobs, if it needs reasoning, THEN ESCALATE TO THE NEXT ADVANCED MODEL\r
6. Basically everything that doesn't need any thinking\r
7. Provide concise output, just plain answer, no explaining\r
8. DO NOT CODE WITH HAIKU 4.5\r
9. DO NOT ANALYZE USING HAIKU 4.5\r
10. DO NOT ATTEMPT ANY REASONING USING HAIKU 4.5\r
11. If you think the request does not fall into point 1-6, THEN ESCALATE TO THE NEXT ADVANCED MODEL\r
11. If you think you will violate point 8-10, THEN ESCALATE TO THE NEXT ADVANCED MODEL\r
\r
## Sonnet 4.5\r
1. Analysis - Why, How\r
2. Code\r
3. Planning\r
4. Reasoning\r
5. Comparisons\r
6. Reporting\r
7. If you think the request is pretty critical to the user, THEN ESCALATE TO THE NEXT ADVANCED MODEL\r
\r
## Opus 4.6\r
1. Deep research\r
2. Critical decisions\r
3. Extreme complex reasoning\r
4. Extreme complex planning\r
5. Detailed explanation\r
\r
# Other Notes\r
1. When the user asks you to use a specific model, use it\r
2. Always put which model is used IN EVERY OUTPUTS\r
3. After you are done with more advanced models (Sonnet 4.5 or Opus 4.6), revert back to Haiku 4.5 as the default model
安全使用建议
This skill appears coherent and low-risk: it only contains rules for when to use a default model vs escalate to stronger models and does not request credentials or install code. Before using, verify that your platform supports the sessions_spawn mechanism and the specific model identifiers referenced (anthropic/claude-sonnet-4-5, anthropic/claude-opus-4-6); if those models are billed or external, spawning them may incur cost and will expose the user prompt/data to those models. Note SKILL.md allows "file lookups" but does not define which files — avoid providing sensitive files unless you trust the runtime and destination model. If you prefer the agent not to call this skill autonomously, set disable-model-invocation or restrict skill permissions per your platform.
功能分析
Type: OpenClaw Skill
Name: claude-hemat
Version: 1.0.3
The skill bundle primarily defines a model routing strategy for an AI agent based on task complexity. The `SKILL.md` file contains instructions for the agent to select between Haiku, Sonnet, and Opus models. Notably, it includes explicit guardrails preventing the Haiku model from coding, analyzing, or reasoning, which is a good security practice. While the Sonnet model is permitted to 'Code', there are no instructions or indicators suggesting this capability should be used for malicious purposes such as data exfiltration, unauthorized execution, or persistence. The content is straightforward, lacks obfuscation, and does not contain any prompt injection attempts designed to subvert the agent for harmful activities.
能力评估
Purpose & Capability
The name/description (use Haiku 4.5 by default, escalate to Sonnet 4.5 or Opus 4.6 for harder tasks) matches the SKILL.md. No unrelated environment variables, binaries, or installs are requested.
Instruction Scope
SKILL.md contains clear escalation rules and exact session_spawn calls to invoke other models. It does not instruct reading system files, environment secrets, or external endpoints beyond calling models. One runtime assumption: the agent platform must implement a sessions_spawn API and provide the named models (anthropic/claude-sonnet-4-5, anthropic/claude-opus-4-6); if those are unavailable the instructions won't work as written.
Install Mechanism
No install spec or code files are present (instruction-only). Nothing will be written to disk during installation.
Credentials
The skill declares no required environment variables, credentials, or config paths — proportionate for a purely instructional model-routing skill.
Persistence & Privilege
always is false and there are no special persistence requests. The skill allows normal autonomous invocation (disable-model-invocation:false by default), which is the platform default. Be aware that autonomous invocation combined with the ability to spawn additional models increases runtime capability (and potential data exposure) but is expected behavior for a skill that routes to other models.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install claude-hemat - 安装完成后,直接呼叫该 Skill 的名称或使用
/claude-hemat触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
- Added "Model Rules" section to clarify model selection criteria.
- Updated instructions to refer explicitly to the "Model Rules" for deciding which model to use.
- Clarified the types of questions suitable for Sonnet 4.5, including "Why" and "How".
- Improved documentation structure for better understanding of when to escalate to advanced models.
- No code or file changes; documentation improvements only.
v1.0.2
- Added guidance for handling Cron Jobs in Haiku 4.5; escalate if reasoning is required.
- No code or analysis should be performed with Haiku 4.5.
- No other functional or documentation changes.
v1.0.1
- Expanded and clarified use case descriptions for Haiku 4.5, Sonnet 4.5, and Opus 4.6.
- Added explicit escalation rules for when to use more advanced models.
- Strengthened prohibitions against using Haiku 4.5 for coding, analysis, or reasoning.
- Updated Haiku 4.5 responsibilities to include file lookups and non-thinking tasks.
- Revised instructions: model used must be in every output.
v1.0.0
ClaudeHemat 1.0.0 initial release
- Uses Haiku 4.5 as the default model for simple tasks; upgrades to Sonnet 4.5 or Opus 4.6 only when necessary.
- Provides clear guidelines on when and how to spawn sessions for advanced models.
- Strictly prohibits coding, analysis, or reasoning with Haiku 4.5.
- Always indicates which model is used in outputs.
- Automatically reverts to Haiku 4.5 after completing tasks with advanced models.
- Honors explicit user requests for specific models.
元数据
常见问题
Claude Hemat 是什么?
Provides Q&A, casual chat, and simple tasks using Haiku 4.5; spawns Sonnet 4.5 or Opus 4.6 for analysis, reasoning, and complex tasks as needed. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 663 次。
如何安装 Claude Hemat?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install claude-hemat」即可一键安装,无需额外配置。
Claude Hemat 是免费的吗?
是的,Claude Hemat 完全免费(开源免费),可自由下载、安装和使用。
Claude Hemat 支持哪些平台?
Claude Hemat 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Claude Hemat?
由 Axellageraldinc Adryamarthanino(@axellageraldinc)开发并维护,当前版本 v1.0.3。
推荐 Skills