| allowed-tools | description | argument-hint | model | |
|---|---|---|---|---|
|
Run codex with GPT-5-high |
your prompt text |
haiku |
Run the following command exactly. Don't modify it in any way.
| allowed-tools | description | argument-hint | model | |
|---|---|---|---|---|
|
Run codex with GPT-5-high |
your prompt text |
haiku |
Run the following command exactly. Don't modify it in any way.
Transforms casual requests into detailed, precise prompts optimised for AI models.
Rewrites free-form requests as clear, structured prompts with proper organisation, headings, and bullet points. Especially useful for converting rambling dictated requests into organised prompts you can review and edit before using.
The output uses specification language — plain, straightforward, and actionable — with clear structure and no added complexity.
Your new skill for generating Anki flashcard decks from text!
This skill converts any text document into high-quality flashcards optimised for memorisation and spaced repetition learning. It's based on your Cardcraft application but simplified for direct use through Claude.
npx excalidraw-brute-export-cli \
--input slides.excalidraw \
--output slides.png \
--format png \
--scale 2 \
--embed-scene true
Turn messy dictated instructions to AI into neat prompts that are easy to read and modify.
I do most of my prompting by dictation, usually in very confused and messy form. To be able to review these prompts and amend them before submitting them to the AI, I use this meta-prompt.
I use a Raycast AI Command which reads my clipboard and runs the prompt using Gemini 2.5 Pro. But this can work just as well with any recent LLM and driver.
GPT-5-high, GPT-5-medium, Claude 4 Sonnet
.ruler/ / ~/.config/ruler/ or wherever you keep instructions for your agentHappy SQLiting! 🫶
| # --- OTel + log file prep (before nginx starts) --- | |
| # Ensure /var/log/nginx exists | |
| mkdir -p /var/log/nginx | |
| # Replace default Docker symlinks (to stdout/stderr) with real files so the collector can tail them | |
| for f in access.log error.log; do | |
| if [ -L "/var/log/nginx/$f" ]; then | |
| mv -f "/var/log/nginx/$f" "/var/log/nginx/$f.dockerlink" || true | |
| fi | |
| : > "/var/log/nginx/$f" |