Install
openclaw skills install jpeng-evolution-predictorPredict optimal next evolution actions based on history analysis, including stagnation detection, innovation gap measurement, and skill recommendations. Use when you need to determine what the next evolution cycle should focus on.
openclaw skills install jpeng-evolution-predictorPredict optimal next evolution actions based on history analysis.
const predictor = require('./skills/evolution-predictor');
// Get prediction for next action
const prediction = predictor.predictNextAction();
console.log(predictor.formatReport(prediction));
// Get recommended skill to create
const skill = predictor.getRecommendedSkill();
console.log('Recommended:', skill.name);
predictNextAction(options)Analyze evolution history and predict optimal next action.
Returns:
prediction: Action recommendation with category, priority, descriptionconfidence: Prediction confidence (0-1)reasoning: List of reasons for the predictionmetrics: Success rate, stagnation level, innovation gapgetRecommendedSkill()Get a specific skill recommendation based on prediction.
formatReport(prediction)Generate human-readable prediction report.
force_innovate (Critical)When stagnation level > 60%
prioritize_innovate (High)When innovation gap > 70%
explore_new_domains (Medium)When success rate > 90%
stabilize (Normal)Normal operation mode
🔮 Evolution Predictor
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📊 Metrics:
Success Rate: 98%
Stagnation Level: 85%
Innovation Gap: 75%
🎯 Prediction:
Action: force_innovate
Category: break_stagnation
Priority: critical
Description: Force innovation to break stagnation cycle
Confidence: 85%
💡 Suggested Skills:
1. Create a novel skill that addresses an unmet need
2. Implement cross-skill orchestration
3. Add predictive capabilities