Skip to content

Instantly share code, notes, and snippets.

View ayamir's full-sized avatar
🎯
For Free

ayamir

🎯
For Free
View GitHub Profile
@MarlonPassos-git
MarlonPassos-git / README.md
Last active July 17, 2026 07:44
grill-me-codex

grill-me-codex

Small Codex skills for better planning with request_user_input.

This is a tiny adaptation of the grill-me workflow for Codex.

The goal is simple: make Codex ask better planning questions before writing code, without forcing you into a heavier workflow like a full spec system.

Why

@william8th
william8th / .tmux.conf
Last active July 16, 2026 17:39
Tmux open new pane in same directory
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B)
set -g prefix C-space
unbind-key C-b
bind-key C-space send-prefix
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"