From llm-wiki
Per-chat session memory in raw/memory/ — save, recall, list, prune. Use when the user wants continuity across Claude sessions or to audit past work.
npx claudepluginhub skinnnyjay/wiki-llm --plugin llm-wikiThis skill uses the workspace's default tool permissions.
Stores one markdown file per chat session: **`raw/memory/<session-id>.md`**. Optional feature: set **`memory.enabled`** to `true` in **`llm-wiki/config.json`**.
Creates new Angular apps using Angular CLI with flags for routing, SSR, SCSS, prefixes, and AI config. Follows best practices for modern TypeScript/Angular development. Use when starting Angular projects.
Generates Angular code and provides architectural guidance for projects, components, services, reactivity with signals, forms, dependency injection, routing, SSR, ARIA accessibility, animations, Tailwind styling, testing, and CLI tooling.
Executes ctx7 CLI to fetch up-to-date library documentation, manage AI coding skills (install/search/generate/remove/suggest), and configure Context7 MCP. Useful for current API refs, skill handling, or agent setup.
Stores one markdown file per chat session: raw/memory/<session-id>.md. Optional feature: set memory.enabled to true in llm-wiki/config.json.
llm-wiki/config.json. If memory.enabled is false, say so and skip writes (read-only list/show may still work for existing files).Prefer shell commands; use MCP tools only when the agent has no shell (skills/references/mcp-and-kg.md § "CLI > MCP when local").
llm-wiki memory save --current --summary "What we did" --tags "research,ingest"
llm-wiki memory recall "topic" --tag research --limit 5
llm-wiki memory list --json
llm-wiki memory show --current
llm-wiki memory prune --keep 30
--current (or -c) reads llm-wiki/.current-session (updated by Claude Code hooks).
llm-wiki/.agent-memory.md — distilled cross-session patterns (wiki-learn).raw/memory/*.md — per-session raw records; promote recurring patterns into .agent-memory.md when appropriate.memory recall uses the vault search backend (mcp.search_backend in config.json — fts5, grep, chromadb, or hybrid). Results match how wiki_search / CLI search would rank the same text: keyword-heavy notes work well with fts5; broader or conceptual queries improve with chromadb / hybrid (optional pip install chromadb). See skills/references/mcp-and-kg.md § Search backends.
memory.max_sessionsWhen memory.max_sessions is a positive integer, memory save and memory log run an automatic prune after each write: the oldest session files (by file modification time) are deleted until the count is ≤ the cap. Set 0 for unlimited files (manual memory prune only).
Session files may be git-tracked if the user commits raw/. Do not store API keys, tokens, or other secrets in raw/memory/*.md — keep credentials in gitignored config (e.g. .claude/settings.local.json) or env vars per docs/ENV.md.
raw/memory/).memory save ran with --current or an explicit session id.memory recall when wiki lacks an answerllm-wiki memory list from vault root./llm-wiki:memory or open commands/memory.md.memory.enabled, memory.dir, memory.max_sessions in llm-wiki/config.json.