Agent notes and learnings
  • Nix 39.1%
  • Shell 37%
  • Just 23.9%
Find a file
2026-07-11 12:05:26 +00:00
patterns feat: integrate ck semantic search via nix devshell 2026-07-08 11:22:58 +00:00
projects docs: add clippy-suppression-for-generated-code error from woodpecker-plugins 2026-07-11 12:05:26 +00:00
scripts refactor: comprehensive context vault restructuring and standardization 2026-05-28 18:11:28 +00:00
.ckignore feat: integrate ck semantic search via nix devshell 2026-07-08 11:22:58 +00:00
.gitignore feat: integrate ck semantic search via nix devshell 2026-07-08 11:22:58 +00:00
AGENTS.md docs: switch to nix run . -- instead of nix develop --command ck 2026-07-08 19:32:17 +00:00
flake.lock feat: ck build with naersk + pre-built onnxruntime 1.23.2 2026-07-08 19:27:37 +00:00
flake.nix feat: ck build with naersk + pre-built onnxruntime 1.23.2 2026-07-08 19:27:37 +00:00
index.md refactor: consolidate cluster project directories and fix metadata 2026-07-08 09:55:23 +00:00
justfile chore: suppress nix trace noise and command echo in justfile 2026-07-08 19:38:42 +00:00
README.md fix: update template tag examples to use realistic values 2026-05-28 18:24:37 +00:00
renovate.json Add renovate.json 2026-07-09 00:00:30 +00:00

tags category created updated related
documentation
overview
vault-structure
patterns 2026-05-23 2026-05-28
AGENTS.md
index.md

Context Vault

A self-hosted knowledge base for AI learning, patterns, and conversation summaries. Synced across devices via Git.

Structure

context-vault/
├── projects/           # Project-specific learnings and decisions
├── patterns/           # Reusable code patterns and solutions
├── conversations/      # Session summaries and context snapshots
├── scripts/            # Query and search utilities
└── index.md            # Tag and category registry

File Format

All notes use YAML frontmatter for queryable metadata:

---
tags: [example, keywords, tags]
project: project-name
category: architecture|patterns|errors|learnings
created: 2026-05-23
updated: 2026-05-23
related: [other-file.md]
---

# Note Title

Content in markdown format...

Query Tools

Search by tag

./scripts/query-by-tag.sh typescript

Search by project

./scripts/query-by-project.sh project-name
./scripts/search.sh "search term"

Auto-Save Format

After conversations, notes are automatically saved with:

  • Timestamp-based filename: conversations/2026-05-23-project-summary.md
  • YAML metadata: tags, project, category
  • Content:
    • Code patterns discovered
    • Errors + solutions
    • Architecture decisions
    • File references with line numbers (format: path/file.ts:123)
    • Related learnings

Quick Start

  1. Clone/pull this repo to sync
  2. Use query tools to find context
  3. Review and commit changes locally
  4. Push to main branch