用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill memgentic命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | memgentic |
| description | >- Use when this capability is needed. |
Memgentic captures knowledge from all your AI tools and makes it searchable. Every memory carries full provenance: which tool, which session, when it happened.
Search memory before doing work, not after:
When in doubt, search. It costs little and prevents repeated work.
# Search memories by meaning
memgentic search "database migration strategy"
# Compact output — fewer tokens, good for scanning
memgentic search "database migration strategy" --format compact
# Filter by platform
memgentic search "auth implementation" -s claude_code
memgentic search "API design" -s chatgpt
# Filter by content type
memgentic search "why we chose PostgreSQL" -t decision
memgentic search "user coding style" -t preference
# Save an important fact or decision
memgentic remember "We chose Qdrant over Pinecone for local-first vector storage"
# Memory type is auto-classified from content
memgentic remember "Always use UV for package management"
# See which platforms have memories and how many
memgentic sources
# Generate standalone context file with recent activity
memgentic update-context
# Explore knowledge graph around an entity
memgentic graph "authentication"
# Check system health
memgentic doctor
If the Memgentic MCP server is running, these tools are available directly:
| Tool | Purpose |
|---|---|
memgentic_recall | Semantic search with source filtering |
memgentic_remember | Store a new memory |
memgentic_search | Full-text keyword search |
memgentic_recent | Recent memories by timestamp |
memgentic_briefing | Cross-agent briefing of recent activity |
memgentic_sources | List platforms and memory counts |
memgentic_configure_session | Set session-level source filters |
memgentic_stats | Memory statistics and analytics |
memgentic_forget | Archive (soft-delete) a memory |
memgentic_export | Export memories as JSON |
memgentic_recall(query="authentication flow", limit=5)
memgentic_recall(query="auth", sources=["claude_code", "chatgpt"])
memgentic_remember(content="Project uses JWT with refresh tokens", memory_type="decision")
memgentic_search(query="PostgreSQL", content_type="decision")
memgentic_configure_session(exclude_sources=["codex_cli"])
memgentic_briefing(hours=24)
Minimize token usage with a progressive approach:
--format compact for an overview of what exists.-s claude_code) or type filter (-t decision)
when you know what you are looking for.--format compact only when you need the complete memory content.--limit to cap the number of results returned.# Step 1: Quick scan
memgentic search "deployment" --format compact --limit 10
# Step 2: Found relevant results, get details from a specific platform
memgentic search "deployment" -s claude_code --limit 3
Memories are classified into types for filtering:
| Type | Contains |
|---|---|
decision | Architectural and technical decisions with rationale |
learning | Things learned during development |
preference | User preferences, conventions, coding style |
fact | General knowledge and project context |
bug_fix | Bug fixes, root causes, and solutions |
conversation_summary | Summaries of complete sessions |
Filter by type to get precise results:
memgentic search "database" -t decision # Only decisions about databases
memgentic search "testing" -t preference # Only testing preferences
memgentic search "auth" -t bug_fix # Only auth-related bug fixes
Memgentic captures from multiple AI tools. Each memory records its source platform:
| Platform | Source ID |
|---|---|
| Claude Code | claude_code |
| Gemini CLI | gemini_cli |
| ChatGPT | chatgpt |
| Aider | aider |
| Codex CLI | codex_cli |
| Copilot CLI | copilot_cli |
| Claude Web/Desktop | claude_web |
| Antigravity | antigravity |
Use source filtering to scope searches:
# What did we discuss in Claude Code about this project?
memgentic search "project architecture" -s claude_code
# What did ChatGPT suggest about this topic?
memgentic search "caching strategy" -s chatgpt
# See all available sources
memgentic sources
Memories enter the system through:
memgentic remember.# Check prerequisites
memgentic doctor
# Interactive setup (model selection, configuration)
memgentic setup
# Import existing conversations from all detected AI tools
memgentic import-existing
# Start background capture daemon
memgentic daemon
# Start MCP server for AI tool integration
memgentic serve
Source: Chariton-kyp/Memgentic — distributed by TomeVault.