← Back to Skills Marketplace
Claude Hemat
by
Axellageraldinc Adryamarthanino
· GitHub ↗
· v1.0.3
663
Downloads
0
Stars
3
Active Installs
4
Versions
Install in OpenClaw
/install claude-hemat
Description
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.
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install claude-hemat - After installation, invoke the skill by name or use
/claude-hemat - Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Frequently Asked Questions
What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 663 downloads so far.
How do I install Claude Hemat?
Run "/install claude-hemat" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Claude Hemat free?
Yes, Claude Hemat is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Claude Hemat support?
Claude Hemat is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Claude Hemat?
It is built and maintained by Axellageraldinc Adryamarthanino (@axellageraldinc); the current version is v1.0.3.
More Skills