Home Tutorials Categories Skills About
ZH EN JA KO
πŸ€–

Moltron

Self-Learning AI Models & Routing

Install Command

npx clawhub@latest install moltron

Installation Guide

1
Check Environment

Make sure Node.js 22+ and OpenClaw are installed. Run openclaw --version in your terminal to verify.

2
Run Installation

Run the install command above in your terminal. ClawHub will automatically download and install Moltron to the ~/.openclaw/skills/ directory.

3
Verify Installation

Run openclaw skills list to check your installed skills and confirm Moltron appears in the list.

4
Configure (Optional)

Follow the configuration instructions in the description below to add skill settings to ~/.config/openclaw/openclaw.json5.

Manual Installation: Copy the Skill folder to ~/.openclaw/skills/ or the skills/ directory in your project root. Make sure the folder contains a SKILL.md file.
Autonomous Learning Skill Discovery Capability Expansion

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.