Skip to content

Commit 402e647

Browse files
committed
docs: add 30s VHS terminal demo GIF to README
1 parent 2b95a13 commit 402e647

5 files changed

Lines changed: 58 additions & 0 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# ContextForge RAG
22

3+
<p align="center">
4+
<img src="demos/demo.gif" alt="30-second demo: profile validation, SOUL, skills, and install" width="100%">
5+
</p>
36

47
<p><strong>Docs:</strong> <a href="https://graphtheory.xyz/context-forge-rag/">https://graphtheory.xyz/context-forge-rag/</a></p>
58

demos/demo.gif

1.19 MB
Loading

demos/vhs/demo-30s.tape

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Output demos/demo.gif
2+
Set Shell "bash"
3+
Set FontSize 20
4+
Set Width 1280
5+
Set Height 720
6+
Set Theme "Catppuccin Mocha"
7+
Set TypingSpeed 50ms
8+
9+
Type "# ContextForge RAG · production retrieval" Enter
10+
Sleep 600ms
11+
12+
Hide
13+
Type "python3 scripts/validate_profile.py ." Enter
14+
Sleep 5s
15+
Type "head -16 SOUL.md" Enter
16+
Sleep 5s
17+
Type "ls skills | head -10" Enter
18+
Sleep 4s
19+
Show
20+
21+
Type "hermes profile install github.com/codegraphtheory/context-forge-rag --name context-forge-rag --yes" Enter
22+
Sleep 4s
23+
Type "# RAG architecture · eval gates · observability" Enter
24+
Sleep 3s

demos/vhs/render_demo_gif.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
4+
cd "$ROOT"
5+
command -v vhs >/dev/null || { echo "Install: brew install vhs ffmpeg" >&2; exit 1; }
6+
mkdir -p demos
7+
vhs demos/vhs/demo-30s.tape
8+
ls -la demos/demo.gif

demos/vhs/theme.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "HeavyCoder",
3+
"black": "#0a0e14",
4+
"red": "#ff6b9d",
5+
"green": "#5eca89",
6+
"yellow": "#fdd877",
7+
"blue": "#65aef7",
8+
"magenta": "#c678dd",
9+
"cyan": "#56d4e8",
10+
"white": "#e6e8eb",
11+
"brightBlack": "#3d4450",
12+
"brightRed": "#ff8ab3",
13+
"brightGreen": "#7ee0a8",
14+
"brightYellow": "#ffe08a",
15+
"brightBlue": "#8bc4ff",
16+
"brightMagenta": "#d8a0f0",
17+
"brightCyan": "#7ee8ff",
18+
"brightWhite": "#ffffff",
19+
"background": "#0a0e14",
20+
"foreground": "#e6e8eb",
21+
"selection": "#1a2332",
22+
"cursor": "#56d4e8"
23+
}

0 commit comments

Comments
 (0)