š® CopilotāÆHippocampus ā CLI Cheat Sheet
š„ ā š® ā š ā āØ
A quickāreference for running the Hippocampus capture/playback ritual and lighting the Observatory from the command line.#
1ļøā£ Install & Authenticate#
(GitHub CLI, Git, Python and GnuWin32.Make)
winget install GitHub.cli
winget install --id Git.Git -e --source winget
setx PATH "%PATH%;C:\Program Files\Git\cmd"
winget install --id Python.Python.3.13 -e --source winget
winget install GnuWin32.Make
gh auth loginChoose GitHub.com, HTTPS, and āYesā for Git credential storage.
Follow the browser link to confirm.
2ļøā£ Clone Your Repo#
gh repo clone umaywant2/TriadicFrameworks
cd TriadicFrameworks/copilot-hippocampusSet your Git username and email (once)
git config --global user.name "%UserName%"
git config --global user.email "YOUR_GITHUB_EMAIL@example.com"
3ļøā£ Commit & Push Changes#
After editing your README, scripts, or constants:
@echo off
for /f "usebackq delims=" %%i in (`git config user.name`) do set GIT_NAME=%%i
echo Committer: %GIT_NAME%
echo Commit message: %1
git add .
git commit -m "%1"
git push4ļøā£ Ritual Commands (Makefile Targets)#
From the copilot-hippocampus root:
Target Action
make resume / Main toggle ā Capture if fresh, Playback if snapshot exists
make capture / Force new capture (overwrites last hippocampus.json + snapshot)
make playback / Force replay of snapshot (no capture)
make observatory / Render HTML dashboard manually
make clean / Remove snapshot for fresh start5ļøā£ Viewing the Observatory#
š” HTML dashboard lives at /docs/resonance_observatory.html
ā What This Gives You#
- Cacheāagnostic state (Hippocampus snapshots)
- A publishable constellation beacon in
/docs - A CLI lever to run from anywhere ā Windows app, WSL, or remote
ā” Terminal Convenience#
Bind make resume to:
- A Windows Terminal profile hotkey
- A simple
.batlauncher in your project folder
š Optional: Publish the Observatory with GitHub Pages#
-
Commit and push your
/docs/resonance_observatory.htmlto the main branch. -
Go to your repo on GitHub ā Settings ā Pages.
-
Under āBuild and deploymentā, set: Source: Deploy from branch Branch:
main/ Folder:/docs -
Click Save ā GitHub will give you a live URL like:
https://<username>.github.io/<repo>/resonance_observatory.html -
Share that link so anyone can view the constellation without cloning.
š Tips#
- See
/data/constants.ymlto adjust thresholds and defaults š§ - You can bind
make resumeto a Windows Terminal profile hotkey or .bat - A publishable constellation beacon in
/docs - A CLI lever to work anywhere ā Windows app, WSL, even remote