summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-17 17:55:19 -0600
committerCraig Jennings <c@cjennings.net>2026-01-17 17:55:19 -0600
commit91c8e32100b1062529451cc5466aca669f31fd6c (patch)
treeb699527aa06b578f734a88a1ff596b8ac79b43fd
parentc1a98d820da06476d459e47ba012c8a9f557e31c (diff)
dotfiles: update hey alias, add phenom RAG function
-rw-r--r--dotfiles/system/.profile8
1 files changed, 6 insertions, 2 deletions
diff --git a/dotfiles/system/.profile b/dotfiles/system/.profile
index d63cee5..b6df5ac 100644
--- a/dotfiles/system/.profile
+++ b/dotfiles/system/.profile
@@ -87,7 +87,7 @@ alias whereami="curl ipinfo.io"
alias xterm="xterm -ti 340"
# claude code
-alias hey='claude "Please read ./docs/NOTES.org"'
+alias hey='claude "Read ./docs/protocols.org and ./docs/NOTES.org, follow their instructions, then run session startup workflow."'
# general utility
# alias mount="sudo mount -o uid=$(id -u),gid=$(id -g),umask=0022 "
@@ -131,4 +131,8 @@ fi
# if [ -z "$DISPLAY" ] && [ "$(tty)" = /dev/tty1 ]; then
# startx
# fi
-. "/home/cjennings/.deno/env" \ No newline at end of file
+. "/home/cjennings/.deno/env"
+# Phenomenology RAG alias - queries cogito with deepseek-r1:70b
+phenom() {
+ aichat --rag phenom -m ollama:deepseek-r1:70b "$@"
+}