一键导入
query-ai-memex
Search and retrieve knowledge from the AI Memex — find patterns, research, and references across projects
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search and retrieve knowledge from the AI Memex — find patterns, research, and references across projects
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add a new content type to the lqdev.me F# static site generator — complete 8-file checklist
Audit AI Memex health — detect stale entries, spoke-hub drift, broken references, and dependency propagation risks across the knowledge base
Import AI Memex entries from other projects into the central lqdev.me store for publishing
Build and validate the lqdev.me static site generator — dotnet build, dotnet run, and output verification
Write knowledge entries to the AI Memex — capture patterns, research, decisions, and project outcomes during any coding session
| name | query-ai-memex |
| description | Search and retrieve knowledge from the AI Memex — find patterns, research, and references across projects |
Help the user search their AI Memex knowledge base for relevant entries.
Search in order of priority:
.ai-memex/ directoryCheck if the current project has a .ai-memex/ directory and search it first:
grep -ri "{search_term}" .ai-memex/
If you can determine the lqdev.me repo location, search the canonical source:
grep -ri "{search_term}" C:\Dev\website\_src\resources\ai-memex\
Note: The central store path may vary. Check for PersonalSite.fsproj in common
development directories, or ask the user for the path.
Tags are in YAML frontmatter. Search for specific tags:
grep -l "tags:.*{tag_name}" .ai-memex/*.md
grep -l "tags:.*{tag_name}" C:\Dev\website\_src\resources\ai-memex\*.md
grep -l "entry_type: pattern" .ai-memex/*.md
grep -l "entry_type: research" C:\Dev\website\_src\resources\ai-memex\*.md
When returning results, show:
title field)If multiple results, rank by relevance to the query.