From thumbgate
Gives Claude persistent cross-session memory: recall past failures before starting tasks, capture success/failure feedback, and auto-generate prevention rules from repeated mistakes. Runs locally via ThumbGate MCP server.
How this skill is triggered — by the user, by Claude, or both
Slash command
/thumbgate:agent-memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Give your agent persistent memory across sessions. Before starting any task, recall what went wrong last time. After completing work, capture whether it succeeded or failed. Prevention rules are auto-generated from repeated mistakes.
Give your agent persistent memory across sessions. Before starting any task, recall what went wrong last time. After completing work, capture whether it succeeded or failed. Prevention rules are auto-generated from repeated mistakes.
Add the MCP server (one-time):
claude mcp add thumbgate -- npx -y thumbgate serve
No API key needed. All data stays local.
Call the recall MCP tool with a description of your current task. The tool returns:
Read the prevention rules carefully. These are patterns that failed before — follow them.
Complete the task as normal. Keep track of what you did and whether it worked.
Call the capture_feedback MCP tool:
If succeeded:
upIf failed:
downVague feedback like "it failed" will be rejected. Be specific.
Call the feedback_stats MCP tool to see approval rate, top failure domains, and whether the agent is trending better or worse.
| Tool | What it does |
|---|---|
recall | Search past feedback and prevention rules for current task |
capture_feedback | Record what worked or failed with structured context |
prevention_rules | View auto-generated rules from repeated mistakes |
feedback_stats | Approval rate, trend analysis, top failure domains |
feedback_summary | Human-readable summary of recent signals |
| Profile | Tools | Use case |
|---|---|---|
essential | 5 core tools | Default — start here |
commerce | 6 tools + commerce_recall | Agentic commerce agents |
default | 12 tools | Full pipeline including DPO export |
Set profile: THUMBGATE_MCP_PROFILE=essential npx thumbgate serve
down feedbackdown feedback againrecall returns the rule → agent follows itThis is the core value. The agent doesn't learn — but it reads the rules and follows them.
npx claudepluginhub igorganapolsky/thumbgateCaptures thumbs-up/down feedback on AI agent actions, auto-converts repeated failures into prevention rules, and blocks known-bad tool calls via MCP PreToolUse hooks. Useful for safety guardrails with any MCP-compatible agent.
Guides agents to deliberately search or skip memory using dejavu MCP tools, with query strategies and metadata filters for decisions, user preferences, conventions, and anti-patterns.