Agent skill

ReasoningBank Intelligence

Implement adaptive learning with ReasoningBank for pattern recognition, strategy optimization, and continuous improvement. Use when building self-learning agents, optimizing workflows, or implementing meta-cognitive systems.

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexMIT
Install
npx skills add ruvnet/ruflo --skill reasoningbank-intelligence --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: .agents/skills/reasoningbank-intelligence/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# ReasoningBank Intelligence ## What This Skill Does Implements ReasoningBank's adaptive learning system for AI agents to learn from experience, recognize patterns, and optimize strategies over time. Enables meta-cognitive capabilities and continuous improvement. ## Prerequisites - agentic-flow v1.5.11+ - AgentDB v1.0.4+ (for persistence) - Node.js 18+ ## Quick Start ```typescript import { ReasoningBank } from 'agentic-flow$reasoningbank'; // Initialize ReasoningBank const rb = new ReasoningBank({ persist: true, learningRate: 0.1, adapter: 'agentdb' // Use AgentDB for storage }); // Record task outcome await rb.recordExperience({ task: 'code_review', approach: 'static_analysis_first', outcome: { success: true, metrics: { bugs_found: 5, time_taken: 120, false_positives: 1 } }, context: { language: 'typescript', complexity: 'medium' } }); // Get optimal strategy const strategy = await rb.recommendStrategy('code_review', { language: 'typescript', complexity: 'high' }); ``` ## Core Features ### 1. Pattern Recognition ```typescript // Learn patterns from data await rb.learnPattern({ pattern: 'api_errors_increase_after_deploy', triggers: ['deployment', 'traffic_spike'], actions: ['rollba

What's inside
Steps it walks through
  1. What This Skill Does
  2. Prerequisites
  3. Quick Start
  4. Core Features
  5. 1. Pattern Recognition
  6. 2. Strategy Optimization
  7. 3. Continuous Learning
  8. Advanced Usage
  9. Meta-Learning
  10. Transfer Learning
  11. Adaptive Agents
  12. Integration with AgentDB
  13. Performance Metrics
  14. Best Practices
More from ruflo
All skills →
About this skill
What does the ReasoningBank Intelligence skill do?

Implement adaptive learning with ReasoningBank for pattern recognition, strategy optimization, and continuous improvement. Use when building self-learning agents, optimizing workflows, or implementing meta-cognitive systems.

How do I install it?

Run `npx skills add ruvnet/ruflo --skill reasoningbank-intelligence --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going