Jump to related tools in the same category or review the original source on GitHub.

Coding Agents & IDEs @wanng-ide Updated 7/20/2026 2,443 downloads 0 stars Security: Pass

Evolution State Analyzer OpenClaw Plugin & Skill | ClawHub

Looking to integrate Evolution State Analyzer into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.

What this skill does

Analyzes the evolution memory graph for stagnation patterns, recurring failures, and success plateaus. Generates actionable insights to guide future evolution cycles.

Install

ClawHub CLI
openclaw skills install @wanng-ide/evolution-state-analyzer
Node.js (npx)
npx clawhub@latest install evolution-state-analyzer

Full SKILL.md

Open original
Metadata table.
namedescription
evolution-state-analyzerAnalyzes the evolution memory graph for stagnation patterns, recurring failures, and success plateaus. Generates actionable insights to guide future evolution cycles.

SKILL.md content below is scrollable.

Evolution State Analyzer

This skill provides meta-analysis of the evolution process itself by examining the memory_graph.jsonl file.

Capabilities

  • Stagnation Detection: Identifies repetitive cycles without improvement.
  • Gene Efficacy Analysis: Tracks which genes yield the highest success rates.
  • Failure Cluster Analysis: Groups failure reasons to pinpoint systemic issues.
  • Trend Reporting: Visualizes evolution score trends over time.

Usage

const analyzer = require('./index');
const insights = await analyzer.analyzeState();
console.log(JSON.stringify(insights, null, 2));

Example Output

{
  "total_cycles": 120,
  "success_rate": 0.75,
  "stagnation_detected": true,
  "top_genes": [
    { "id": "gene_repair_v2", "success_rate": 0.95 },
    { "id": "gene_innovate_v1", "success_rate": 0.40 }
  ],
  "recommendations": [
    "Switch to INNOVATE intent (stagnation streak: 5)",
    "Deprecate gene_innovate_v1 (success rate < 0.5)"
  ]
}
ClawHub Registry URL: https://clawhub.ai/wanng-ide/skills/evolution-state-analyzer

Related skills

If this matches your use case, these are close alternatives in the same category.