.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/bayramannakov/claude-reflect
home/skills/bayramannakov/claude-reflect
bayramannakov avatar

claude-reflect

bybayramannakov· 33 skills

Installs

407

Stars

1.3k

Forks

109

Category

Productivity & Workflow

View on GitHub

TL;DR

Self-learning system that captures corrections during sessions and reminds users to run /reflect to update CLAUDE.md. Use when discussing learnings, corrections, or when the user mentions remembering something for future sessions.

How to install claude-reflect?

bayramannakov/claude-reflect
$npx -y skills add bayramannakov/claude-reflect --skill claude-reflect

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/bayramannakov/claude-reflect" --skill "bayramannakov/claude-reflect"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/bayramannakov/claude-reflect" that are relevant to the current task. Run `npx skills add "https://github.com/bayramannakov/claude-reflect"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# claude-reflect
2 
3[![GitHub stars](https://img.shields.io/github/stars/BayramAnnakov/claude-reflect?style=flat-square)](https://github.com/BayramAnnakov/claude-reflect/stargazers)
4[![Version](https://img.shields.io/badge/version-2.6.0-blue?style=flat-square)](https://github.com/BayramAnnakov/claude-reflect/releases)
5[![License: MIT](https://img.shields.io/badge/License-MIT-green?style=flat-square)](https://opensource.org/licenses/MIT)
6[![Tests](https://img.shields.io/badge/tests-160%20passing-brightgreen?style=flat-square)](https://github.com/BayramAnnakov/claude-reflect/actions)
7[![Platform](https://img.shields.io/badge/platform-macOS%20%7C%20Linux%20%7C%20Windows-lightgrey?style=flat-square)](https://github.com/BayramAnnakov/claude-reflect#platform-support)
8 
9A self-learning system for Claude Code that captures corrections and discovers workflow patterns — turning them into permanent memory and reusable skills.
10 
11## What it does
12 
13### 1. Learn from Corrections
14 
15When you correct Claude ("no, use gpt-5.1 not gpt-5"), it remembers forever.
16 
17```
18┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
19│ You correct │ ──► │ Hook captures │ ──► │ /reflect adds │
20│ Claude Code │ │ to queue │ │ to CLAUDE.md │
21└─────────────────┘ └─────────────────┘ └─────────────────┘
22 (automatic) (automatic) (manual review)
23```
24 
25### 2. Discover Workflow Patterns (NEW in v2)
26 
27Analyzes your session history to find repeating tasks that could become reusable commands.
28 
29```
30┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
31│ Your past │ ──► │ /reflect-skills │ ──► │ Generates │
32│ sessions │ │ finds patterns │ │ /commands │
33└─────────────────┘ └─────────────────┘ └─────────────────┘
34 (68 sessions) (AI-powered) (you approve)
35```
36 
37Example: You've asked "review my productivity" 12 times → suggests creating `/daily-review`
38 
39## Key Features
40 
41| Feature | What it does |
42|---------|--------------|
43| **Permanent Memory** | Corrections sync to CLAUDE.md — Claude remembers across sessions |
44| **Skill Discovery** | Finds repeating patterns in your history → generates commands |
45| **Multi-language** | AI understands corrections in any language |
46| **Skill Improvement** | Corrections during `/deploy` improve the deploy skill itself |
47 
48## Installation
49 
50```bash
51# Add the marketplace
52claude plugin marketplace add bayramannakov/claude-reflect
53 
54# Install the plugin
55claude plugin install claude-reflect@claude-reflect-marketplace
56 
57# IMPORTANT: Restart Claude Code to activate the plugin
58```
59 
60After installation, **restart Claude Code** (exit and reopen). Then hooks auto-configure and commands are ready.
61 
62> **First run?** When you run `/reflect` for the first time, you'll be prompted to scan your past sessions for learnings.
63 
64### Prerequisites
65 
66- [Claude Code](https://claude.ai/code) CLI installed
67- Python 3.6+ (included on most systems)
68 
69### Platform Support
70 
71- **macOS**: Fully supported
72- **Linux**: Fully supported
73- **Windows**: Fully supported (native Python, no WSL required)
74 
75## Commands
76 
77| Command | Description |
78|---------|-------------|
79| `/reflect` | Process queued learnings with human review |
80| `/reflect --scan-history` | Scan ALL past sessions for missed learnings |
81| `/reflect --dry-run` | Preview changes without applying |
82| `/reflect --targets` | Show detected config files (CLAUDE.md, AGENTS.md) |
83| `/reflect --review` | Show queue with confidence scores and decay status |
84| `/reflect --dedupe` | Find and consolidate similar entries in CLAUDE.md |
85| `/reflect --include-tool-errors` | Include tool execution errors in scan |
86| `/reflect-skills` | Discover skill candidates from repeating patterns |
87| `/reflect-skills --days N` | Analyze last N days (default: 14) |
88| `/reflect-skills --project <path>` | Analyze specific project |
89| `/reflect-skills --all-projects` | Scan all projects for cross-project patterns |
90| `/reflect-skills --dry-run` | Preview patterns without generating skill files |
91| `/skip-reflect` | Discard all queued learnings |
92| `/view-queue` | View pending learnings without processing |
93 
94## How It Works
95 
96![claude-reflect in action](assets/reflect-demo.jpg)
97 
98### Two-Stage Process
99 
100**Stage 1: Capture (Automatic)**
101 
102Hooks run automatically to detect and queue corrections:
103 
104| Hook | Trigger | Purpose |
105|------|---------|---------|
106| `session_start_reminder.py` | Session start | Shows pending learnings reminder |
107| `capture_learning.py` | Every prompt | Detects correction patterns and queues them |
108| `check_learnings.py` | Before compaction | Backs up queue and informs user |
109| `post_commit_reminder.py` | After git commit | Reminds to run /reflect after completing work |
110 
111**Stage 2: Process (Manual)**
112 
113Run `/reflect` to review and apply queued learnings to CLAUDE.md.
114 
115### Detection Methods
116 
117Claude-reflect uses a **hybrid detection approach**:
118 
119**1. Regex patterns (real-time capture)*

Preview

bayramannakov/claude-reflectbayramannakov/claude-reflect

$ npx -y skills add bayramannakov/claude-reflect --skill claude-reflect

▸ installing to .claude/skills…

✓ claude-reflect ready

Repobayramannakov/claude-reflect
TypeSkills
CategoryProductivity & Workflow
ForDeveloper
UpdatedMar 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. juliusbrussee avatarcavemanUltra-compressed communication mode. Cuts output tokens 65% (measured) by speaking like caveman while keeping full technical accuracy.SkillsJul 2026391k93k
  2. larksuite avatarlark-im飞书即时通讯:收发消息和管理群聊。发送和回复消息、搜索聊天记录、管理群聊成员、上传下载图片和文件(支持大文件分片下载)、管理表情回复、发送应用内/短信/电话加急、发送和处理交互卡片(Interactive…SkillsJul 2026390k16k
  3. larksuite avatarlark-calendar飞书日历:管理日历日程和会议室。查看/搜索日程、创建/更新日程、管理参会人、查询忙闲和推荐时段、预定会议室。当用户需要查看日程安排、创建/修改会议、查询/预定会议室时使用。不负责:查询过去的视频会议记录(走 lark-vc)、待办任务(走 lark-task)。SkillsJul 2026388k16k
  4. larksuite avatarlark-contact飞书 / Lark 通讯录:按姓名 / 邮箱解析成 open_id,或按 open_id 反查姓名 / 部门 / 邮箱 / 联系方式 / 个人状态 / 签名。当用户提到某人姓名要下一步发消息 / 排日程,或拿到 open_id 想查具体信息时使用。不负责部门树遍历、按部门列员工、组织架构图,这类需求走原生…SkillsJul 2026387k16k
  5. larksuite avatarlark-workflow-meeting-summary会议纪要整理工作流:汇总指定时间范围内的会议纪要并生成结构化报告。当用户需要整理会议纪要、生成会议周报、回顾一段时间内的会议内容时使用。SkillsJul 2026386k16k
  6. larksuite avatarlark-workflow-standup-report日程待办摘要:编排 calendar +agenda 和 task +get-my-tasks,生成指定日期的日程与未完成任务摘要。适用于了解今天/明天/本周的安排。SkillsJul 2026386k16k