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 June 1, 2026 02:45
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 May 8, 2026 16:13
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}"