---
title: RFC: [title of proposal]
authors: [individual or team accountable for this proposal]
state: [draft / feedbac_requested / active / abandoned / retired]
---
## Need
*Describe the specific need, problem, or opportunity this proposal addresses.*Arch Linux is officially supported on WSL 2
Step 1 – Ensure WSL 2 is Installed
wsl --installStep 2 – Install Arch Linux
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.
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.
| services: | |
| postgres-db: | |
| image: postgres:latest | |
| container_name: postgres-db | |
| environment: | |
| POSTGRES_USER: admin | |
| POSTGRES_PASSWORD: pass | |
| POSTGRES_DB: postgres | |
| TZ: UTC | |
| ports: |
| enum WarehouseLocationERP { | |
| Thaphra = 'WH02', | |
| Thairath = 'WH03', | |
| Province = 'WH90', | |
| MachineInventory = 'WH25' | |
| } | |
| enum VirtualWarehouseERP { | |
| ReadyToUseWarehouse = '02', | |
| Machine = '03', |
| import re | |
| txt = """<|python_tag|><function=spotify_song_artist>{"n": "[\"BIRDS OF A FEATHER\", \"Espresso\", \"Please Please Please\", \"Not Like Us\", \"Gata Only\"]"}</function>""" | |
| x = re.search("<function=(\w+)>(.*?)</function>", txt) | |
| if x: | |
| print("YES! We have a match!") | |
| print(x.group()) | |
| else: | |
| print("No match") |
| # shorten path at prompt to only 1 level above current file | |
| export PROMPT_DIRTRIM=1 | |
| # start and stop docker-destop (in case clicking icon not working) | |
| alias docker-desktop-start='systemctl --user start docker-desktop' | |
| alias docker-desktop-stop='systemctl --user stop docker-desktop' |