بنقرة واحدة
learn
Diagnose and fix agent behavioral surfaces when the user corrects a mistake — connects to Claude native memory.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Diagnose and fix agent behavioral surfaces when the user corrects a mistake — connects to Claude native memory.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Dispatch trace subagent to investigate unknown issues — reproduces, traces, and reports root cause for /fix handoff.
Investigate bugs comprehensively — cascade through /trace, capture browser evidence, extract observability data, and auto-create a GitHub issue with all findings.
Wire a Genie agent to an Omni channel in one canonical flow — register the agent, bind to an instance, verify the round-trip. Replaces the 5+ command legacy chain.
Full PM playbook — triage backlog, prioritize, assign, track, report, escalate. Copilot, autopilot, or pair modes.
Convene real AI agents for multi-perspective deliberation on architecture, design, and strategy decisions.
Entry point for all genie operations — auto-routes natural language to the right skill, detects lifecycle state, and handles operational commands. Use when planning features, reporting bugs, managing teams, or asking about genie.
| name | learn |
| description | Diagnose and fix agent behavioral surfaces when the user corrects a mistake — connects to Claude native memory. |
When a user corrects a mistake, /learn diagnoses which behavioral surface caused it and applies a minimal, targeted fix.
/learnThis is an interactive skill. The user invokes /learn directly, and the agent runs in the foreground, conversing with the user throughout.
.claude/memory/ so Claude native memory retains it across sessions.The learn agent diagnoses which surface needs the fix:
| Surface | Path | What It Controls |
|---|---|---|
| Project conventions | CLAUDE.md | Commands, gotchas, project rules, coding style |
| Agent identity | AGENTS.md | Agent role, preferences, team behavior |
| Agent personality | SOUL.md / IDENTITY.md | Tone, communication style |
| Global rules | ~/.claude/rules/*.md | Cross-project behavioral rules |
| Claude native memory | .claude/memory/ | Feedback, user prefs, project context |
| Project memory | memory/ | Project-scoped knowledge files |
| Hooks | .claude/settings.json | Event-driven automation, permission gates |
| Any config file | varies | Any file that shapes agent behavior |
plugins/genie/skills/ — framework skills (maintained by framework developers)plugins/genie/agents/ — framework agents (maintained by framework developers)When a learning is applied, also save it as a feedback memory:
.claude/memory/ with frontmatter:
---
name: <concise-name>
description: <one-line description for relevance matching>
type: feedback
---
<The rule itself>
**Why:** <reason the user gave or the incident that caused it>
**How to apply:** <when/where this guidance kicks in>
.claude/memory/MEMORY.md index with a pointer to the new file.This ensures the learning persists across conversations via Claude's native memory system.
User corrects the agent: "Stop using pip install — this system only has uv."
The agent runs /learn:
pip install python-dotenv which failed because pip isn't installed.~/.claude/rules/ about Python tooling.~/.claude/rules/python-tooling.md) — applies to all projects.Create ~/.claude/rules/python-tooling.md:
- NEVER use pip or pip3 — not installed
- Use uv tool install for persistent CLI tools
- Use uv pip install inside venvs
# ~/.claude/memory/feedback_python_tooling.md
---
name: use-uv-not-pip
description: System uses uv for Python package management, pip is not installed
type: feedback
---
Use uv instead of pip for all Python operations.
**Why:** pip is not installed on this system; uv is the only package manager.
**How to apply:** Any time a Python package needs installing, use uv tool install or uv pip install.
plugins/genie/skills/ and plugins/genie/agents/ are off limits.