一键导入
remembering-conversations
Search previous Claude Code conversations for facts, patterns, decisions, and context using semantic or text search
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search previous Claude Code conversations for facts, patterns, decisions, and context using semantic or text search
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
电商数据分析(商品/订单/用户三表分析)。当用户需要对商品表(products)、订单表(orders)、用户表(users)进行数据分析时触发此技能。支持根据用户问题动态生成分析脚本,涵盖:商品销售排行、库存预警、分类销售分析;用户消费排行、复购率、注册趋势;订单状态分布、销售额趋势、客单价分析;以及商品关联购买分析、用户品类偏好等交叉分析。输出包括:Markdown格式统计摘要。触发词包括:数据分析、电商分析、商品分析、订单分析、用户分析、销售分析、复购率、库存预警、商品排行、销售趋势、关联分析等。数据来源为PostgreSQL数据库,数据源地址通过动态变量从agent记忆中获取。
Sets up {module-name} module in a project. Use when the user requests to 'install {module-code} module', 'configure {module-name}', or 'setup {module-name}'.
Plans, creates, and validates BMad modules. Use when the user requests to 'ideate module', 'plan a module', 'create module', 'build a module', or 'validate module'.
Builds, converts, and analyzes workflows and skills. Use when the user requests to "build a workflow", "modify a workflow", "quality check workflow", "analyze skill", or "convert a skill".
轻量级网站/应用开发指南。适用于搭建各类Web系统、数据分析报表、数据管理后台、数据增删改查功能。包含完整项目结构、前端HTML/JS/Vue、后端Python FastAPI+SQLite的开发指引与代码模板。
当沙箱中有 Web 应用启动并有 URL 地址时自动打开沙箱浏览器。触发场景:检测到 Python Web 服务启动(uvicorn/fastapi/flask/streamlit/gradio/http.server 等)并生成了 URL;用户说'打开浏览器'/'访问这个地址'/'打开网页看看'/'打开链接'/'打开 VNC'等;需要让用户通过 VNC 查看 Web 界面时。核心动作:探测服务端口就绪 → 启动沙箱 chromium 浏览器 → 返回 VNC 访问链接给用户。
| name | Remembering Conversations |
| description | Search previous Claude Code conversations for facts, patterns, decisions, and context using semantic or text search |
| when_to_use | when partner mentions past discussions, debugging familiar issues, or seeking historical context about decisions and patterns |
| version | 1.1.0 |
Search archived conversations using semantic similarity or exact text matching.
Core principle: Search before reinventing.
Announce: "I'm searching previous conversations for [topic]."
Setup: See INDEXING.md
Search when:
Don't search when:
Always use subagents (50-100x context savings). See skills/using-skills for workflow.
Manual/CLI use: Direct search (below) for humans outside Claude Code sessions.
Tool: ${SUPERPOWERS_SKILLS_ROOT}/skills/collaboration/remembering-conversations/tool/search-conversations
Modes:
search-conversations "query" # Vector similarity (default)
search-conversations --text "exact" # Exact string match
search-conversations --both "query" # Both modes
Flags:
--after YYYY-MM-DD # Filter by date
--before YYYY-MM-DD # Filter by date
--limit N # Max results (default: 10)
--help # Full usage
Examples:
# Semantic search
search-conversations "React Router authentication errors"
# Find git SHA
search-conversations --text "a1b2c3d4"
# Time range
search-conversations --after 2025-09-01 "refactoring"
Returns: project, date, conversation summary, matched exchange, similarity %, file path.
For details: Run search-conversations --help