원클릭으로
import-ai-memex
Import AI Memex entries from other projects into the central lqdev.me store for publishing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Import AI Memex entries from other projects into the central lqdev.me store for publishing
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
Build and validate the lqdev.me static site generator — dotnet build, dotnet run, and output verification
Search and retrieve knowledge from the AI Memex — find patterns, research, and references across projects
Write knowledge entries to the AI Memex — capture patterns, research, decisions, and project outcomes during any coding session
| name | import-ai-memex |
| description | Import AI Memex entries from other projects into the central lqdev.me store for publishing |
Consolidate AI Memex entries from other projects' .ai-memex/ directories into
the central store at _src/resources/ai-memex/ in the lqdev.me repo.
PersonalSite.fsproj exists)~/.agents/skills/import-ai-memex/import-sources.jsonRun from the lqdev.me repo root:
# Normal import (new entries + updates where spoke is newer)
& "$HOME/.agents/skills/import-ai-memex/scripts/import.ps1"
# Preview what would change
& "$HOME/.agents/skills/import-ai-memex/scripts/import.ps1" -DryRun
# Force-overwrite all spoke entries (bulk resync)
& "$HOME/.agents/skills/import-ai-memex/scripts/import.ps1" -Force
.md files in the .ai-memex/ directory_src/resources/ai-memex/_src/resources/ai-memex/, adding source_project if missinglast_updated_date — update hub if spoke is newerAfter importing, remind the user:
dotnet run to generate the site (knowledge graph will seed related_entries)The import-sources.json file is user-local (never committed to any repo).
Location: ~/.agents/skills/import-ai-memex/import-sources.json
See assets/import-sources.example.json for the format.
When a file already exists in the hub:
last_updated_date in spoke vs hub YAML frontmatter.
If spoke is newer, update the hub copy while preserving hub-only data.-Force: Overwrite all entries regardless of dates (useful for bulk resync).related_entries from both spoke and hub are merged (union of unique values).
The hub's knowledge-graph-seeded entries are preserved alongside spoke's explicit entries.related_entries field in hub entries is seeded by the knowledge graph at build time.
The import script merges spoke + hub values to avoid losing graph-generated connections.install-skills.ps1 -Force preserves import-sources.json (user-local config)._src/resources/ai-memex/ with no spoke equivalent are hub-only entries
(written directly in this repo). The import script never touches these.