Skip to content

Instantly share code, notes, and snippets.

name ux-flow-plan
description Create UX-first plans as flow trees, then attach concrete function names, files, and implementation anchors after the high-level flow is clear.
user-invocable true

UX Flow Plan

Create a high-level architecture plan that starts from the user experience and only then maps to code-level anchors.

@jnsahaj
jnsahaj / prepare-branch-context.md
Created March 5, 2026 18:30
prepare-branch-context skill
name prepare-branch-context
description Analyze the current branch's diff from main and related PR to build context for followup requests
user-invocable true

Prepare Branch Context

Build a comprehensive understanding of the current branch so you can handle followup requests with full context.

@jnsahaj
jnsahaj / .zshrc
Created January 16, 2026 21:11
Peter Steinberger's Multiple Checkout aliases
# Create a new clone and branch for parallel development.
# Usage: ga <branch-name> [base-branch]
ga() {
if [[ -z "$1" ]]; then
echo "Usage: ga <branch-name> [base-branch]"
return 1
fi
local branch="$1"
local repo_name="$(basename "$PWD")"
local repo_url="$(git remote get-url origin)"