Skip to content

Instantly share code, notes, and snippets.

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@robsteriam
robsteriam / az104studymaterials.md
Last active June 10, 2026 09:45
AZ-104 Study Materials Compilation
@darkedges
darkedges / README.md
Created June 6, 2026 00:10
Claude Opus as orchestrataor and sonnet as implementation/review

Opus Orchestrator + Sonnet Subagent Workflow for Claude Code

Run Claude Code with Opus as the orchestrator and Sonnet as the implementation/review subagents — keeping the main session focused and cheap while delegating the heavy lifting to isolated workers.


File Layout

.claude/
@dbilanoski
dbilanoski / windows11-shell-folders-by-clsid.csv
Last active June 10, 2026 09:41
Complete List Of Windows 11 Shell Folders By CLSID GUIDs
Name Shell Command Shortcut
%UserProfile% explorer "shell:::{59031a47-3f72-44a7-89c5-5595fe6b30ee}"
%UserProfile%\Desktop explorer "shell:::{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}"
%UserProfile%\Documents explorer "shell:::{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}"
%UserProfile%\Downloads explorer "shell:::{088e3905-0323-4b02-9826-5d99428e115f}"
%UserProfile%\Pictures explorer "shell:::{24ad3ad4-a569-4530-98e1-ab02f9417aa8}"
Add Network Location explorer "shell:::{D4480A50-BA28-11d1-8E75-00C04FA31A86}"
Additional Information explorer "shell:::{C58C4893-3BE0-4B45-ABB5-A63E4B8C8651}\resultPage"
Advanced Problem Reporting Settings explorer "shell:::{BB64F8A7-BEE7-4E1A-AB8D-7D8273F7FDB6}\pageAdvSettings"
Advanced sharing settings explorer "shell:::{8E908FC9-BECC-40f6-915B-F4CA0E70D03D}\Advanced"
@shariqriazz
shariqriazz / tavily.ts
Created November 8, 2025 17:21
web search + other shit using tavily in opencode
import { tool } from "@opencode-ai/plugin"
export default tool({
description: "Execute a search query using Tavily Search API to get real-time web search results",
args: {
query: tool.schema.string().describe("The search query to execute with Tavily"),
topic: tool.schema.enum(["general", "news", "finance"]).default("general").describe("The category of the search"),
search_depth: tool.schema.enum(["basic", "advanced"]).default("basic").describe("The depth of the search - advanced costs 2 credits, basic costs 1"),
max_results: tool.schema.number().min(0).max(20).default(5).describe("The maximum number of search results to return"),
include_answer: tool.schema.boolean().default(false).describe("Include an LLM-generated answer to the provided query"),
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active June 10, 2026 09:32
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest