Verify
How to build and drive memex (a bubbletea TUI CLI) to verify changes end-to-end.From its SKILL.md
npx -y skills add kocieusz/memex --skill verifyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.1 KB, 297 tokens by cl100k_base, as published. Nobody here has run it
Verifying memex
Build from the repo root: task build → bin/memex. Tests: task test.
memex is a bubbletea TUI, so drive it in an isolated tmux session and point
MEMEX_SOURCE at a temp dir so the real library (and any config file) is
never touched:
tmux -L memexv new-session -d -x 110 -y 30 \
"MEMEX_SOURCE=/path/to/tmp-lib /path/to/bin/memex <cmd>; sleep 120"
tmux -L memexv send-keys j # one key per send-keys call
tmux -L memexv capture-pane -p # capture after each step
tmux -L memexv kill-server
Gotchas:
- Send keys one at a time with a short sleep between; batching several keys
in one
send-keyscall (e.g.send-keys ' ' Enter) misfires. - Space is
send-keys Space, enter issend-keys Enter. - For
memex clone,anthropics/skillsis a good public fixture (many skills, nested underskills/, plus a root-leveltemplate). - Non-TUI paths (
ls, error cases) run fine directly in Bash; check exit codes withecho "exit=$?".
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.