2.6k
GitHub Stars
2
Bundled Files
2 months ago
Catalog Refreshed
3 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill openclaw-continuous-learning- _meta.json309 B
- SKILL.md6.8 KB
Overview
This skill is an instinct-based continuous learning system for OpenClaw that analyzes agent sessions, detects recurring behaviors, and generates atomic learnings with confidence scores. It turns observed patterns into actionable optimizations so agents can self-evolve and improve over time. The skill stores instincts, aggregated patterns, and suggested optimizations for easy review and application.
How this skill works
The skill ingests session activity logs, runs pattern-detection across interactions, and emits small, labeled 'instincts' with confidence values. Aggregated patterns are written to storage files and prioritized; high-confidence instincts can be applied automatically while tentative ones are only suggested. Periodic analysis jobs produce daily tips, configuration suggestions, and workflow improvement recommendations.
When to use it
- When building self-improving AI agents that adapt from experience
- To discover optimization opportunities and recurring failure modes
- When you want your agent to learn user preferences and coding style
- For adaptive automation that tunes workflows over time
- When you can supply sufficient session history for meaningful patterns
Best practices
- Start with few patterns and low confidence thresholds to avoid overfitting
- Validate learned instincts regularly and monitor confidence changes
- Review suggestions before auto-applying; only auto-apply high-confidence instincts
- Schedule periodic analysis (cron or scheduler) to keep learning up to date
- Persist instincts and patterns to a versioned archive for auditing and reuse
Example use cases
- Agent observes repeated user corrections and creates a 'prefer-simplicity' instinct to favor minimal solutions
- Detects recurring slow operations and suggests targeted performance optimizations
- Learns user communication preferences (tone, verbosity) and adapts message formatting
- Identifies common error patterns and generates automated prevention or recovery steps
- Collects workflow patterns (git, testing) and proposes configuration changes or hooks
FAQ
Confidence rises with repeated observations, lack of corrections, and agreement across sessions; it decreases when evidence contradicts or patterns lapse.
Can instincts be auto-applied?
Only instincts above a high threshold (e.g., 0.7) should be auto-applied; lower scores are presented as suggestions for human review.
What if I prefer static agent behavior?
Don't enable continuous learning; this skill is designed for adaptive agents and requires session history to be useful.