Moltron
Self-Learning AI Models & RoutingInstall Command
npx clawhub@latest install moltron
Installation Guide
Make sure Node.js 22+ and OpenClaw are installed. Run openclaw --version in your terminal to verify.
Run the install command above in your terminal. ClawHub will automatically download and install Moltron to the ~/.openclaw/skills/ directory.
Run openclaw skills list to check your installed skills and confirm Moltron appears in the list.
Follow the configuration instructions in the description below to add skill settings to ~/.config/openclaw/openclaw.json5.
~/.openclaw/skills/ or the skills/ directory in your project root. Make sure the folder contains a SKILL.md file.
Detailed Description
Moltron is a self-evolving AI agent system skill that empowers OpenClaw with the ability to autonomously learn and expand its capabilities.
Core Features
- Skill Discovery: Automatically searches ClawHub for potentially useful new skills
- Autonomous Installation: Automatically installs missing skills based on task requirements
- Learning Optimization: Learns from conversation history to optimize handling of common tasks
- Capability Assessment: Periodically evaluates its own performance and deficiencies across various capabilities
- Safety Constraints: All autonomous behaviors are governed by security policies to prevent runaway behavior
Configuration
{
skills: {
moltron: {
autoInstall: false, // Allow automatic skill installation
learningRate: "slow", // slow, medium, fast
approvalRequired: true // Autonomous actions require user approval
}
}
}
Use Cases
- Let OpenClaw automatically discover and recommend skills suited to your work scenarios
- AI agent self-improvement experiments
- Build a long-term AI companion that evolves over time
Notes
The default approvalRequired is true, meaning all autonomous actions require user confirmation. It is recommended to fully understand this skill before enabling automatic mode.