Get Aerospace from nikitabobko/AeroSpace.
openpgp4fpr:065602DAF36C71E6AB3A8D7014E5DFDDDAF9DBBF
| set shell := ["fish", "-c"] | |
| ask backend model +prompt: | |
| @cd {{invocation_directory()}}; just ask-{{backend}} {{model}} "{{prompt}}" | prettier --parser=markdown | glow | |
| ask-copilot model +prompt: | |
| @cd {{invocation_directory()}}; copilot --model {{model}} --silent --allow-all-paths --allow-all-tools --stream on -p "{{prompt}}\\n\\nOutput Markdown." 2>/dev/null | |
| ask-claude model +prompt: | |
| @cd {{invocation_directory()}}; claude --model {{model}} --permission-mode bypassPermissions --dangerously-skip-permissions -p "{{prompt}}\\n\\nOutput Markdown." 2>/dev/null |
| ffmpeg -i stream1.m3u8 -i stream2.m3u8 ... -i stream12.m3u8 \ | |
| -filter_complex " | |
| [0:v]scale=640:360[v0]; | |
| [1:v]scale=640:360[v1]; | |
| ... | |
| [11:v]scale=640:360[v11]; | |
| [v0][v1][v2][v3][v4][v5][v6][v7][v8][v9][v10][v11]xstack=inputs=12:layout=0_0|640_0|1280_0|1920_0|0_360|640_360|1280_360|1920_360|0_720|640_720|1280_720|1920_720[out] | |
| " -map "[out]" output.m3u8 |
The snippet above is from my global ~/.justfile. I also have abbr -a j 'just' in my Fish configuration.
The original version streamed the output. This version sacrifices that streaming for pretty output formatting with charmbracelet/glow. It pipes the output Markdown through prettier/prettier to make up for any wonky formatting; Claude in particular likes to skip blank lines after headings.
This means that charmbracelet/glow and prettier/prettier are dependencies, alongside any AI backends like github/copilot-cli or anthropics/claude-code.
The Gemini and Codex CLI backends are not yet implemented.
| <<< System >>> | |
| Manufacturer: rainx | |
| Model: theloop | |
| Brand: rainx | |
| Board: tb8791p1_64 | |
| Device: theloop | |
| Hardware: mt6877 | |
| Platform: mt6877 | |
| Product: theloop |
Your day was a deep dive into the Charlie Kirk controversy, culminating in you building a research page on Neocities to document his statements. You spent considerable time gathering quotes, analyzing data, and even started scripting a tool to pull all his YouTube video transcripts. Alongside this intense research, you managed several of your personal projects like jig and myriad, dealing with dependencies and Git worktrees. You also had a cluster of medical appointments on your mind, including an MRI scheduled for Saturday.
- You dedicated a significant portion of the day to researching controversial statements by Charlie Kirk, using Perplexity AI.
- You created a webpage, "Charlie Kirk's Record of Discrimination," on your Neocities site to compile your findings.
Because @builder-io/ai-shell is terrible. Not their fault, really, OpenAI's models just aren't as good.
| Tool | Notes | URL |
|---|---|---|
| Claude Code | You need it set up and functional. | docs.anthropic.com |
| A JavaScript package manager | We try all of them in order, see NOTES | oven-sh/bun |