Skip to content

Instantly share code, notes, and snippets.

@Maciejdziuba
Maciejdziuba / README.md
Last active August 16, 2026 06:49
The Software Factory Playbook — Dex Horthy's 4-gate workflow (Product → Architecture → Program Design → Vertical Slices) as an installable Claude Code skill. From the Dex Horthy episode on David Ondrej's podcast.

The Software Factory Playbook — Dex Horthy's 4-gate workflow as a skill

A Claude Code Agent Skill built from Dex Horthy's (HumanLayer) playbook on David Ondrej's podcast.

"Once the model has written thousands of lines of code, it is harder to change. The sessions that generate design docs are context-light — you get the most model intelligence when you do the hard thinking early."

By default, agents build horizontally: all the backend, then all the frontend, then a 2,000-line diff lands in your lap and reviewing it is your problem. This skill flips that. Every decision that matters gets made before the code exists — where changing your mind costs a sentence, not a rewrite.

What it does

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@JackTYM
JackTYM / tripo3d_model_downloader.js
Created May 13, 2026 05:33
Tripo3d.ai Model Downloader
/**
* tripo3d_model_downloader.js
* ─────────────────────────────────────────────────────────────────────────────
* Extracts the loaded 3D model directly from the TresJS/Three.js renderer on
* studio.tripo3d.ai, bypasses the export tool entirely, and triggers a .glb
* download.
*
* HOW IT WORKS
* ─────────────────────────────────────────────────────────────────────────────
* 1. The site is a Nuxt 3 / Vue 3 app using TresJS (Vue wrapper for Three.js).
@yskzalloc
yskzalloc / trixie-backports.sh
Created August 15, 2026 16:47
Install latest Linux kernel based on trixie-backports.
#!/usr/bin/env bash
set -euo pipefail
# 1. Ensure the script is executed with root privileges
if [[ $EUID -ne 0 ]]; then
echo "[ERROR] This script must be run as root or with sudo." >&2
exit 1
fi
# 2. Detect Debian codename (defaulting to trixie if undetected)
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active August 16, 2026 08:01
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@iam-veeramalla
iam-veeramalla / claude-openrouter-deepseek-v4-flash.md
Created August 7, 2026 08:56
claude-openrouter-deepseek-v4-flash

Claude Code + OpenRouter (DeepSeek V4 Flash) Setup Guide

Step 1: Install Claude Code

npm install -g @anthropic-ai/claude-code

@ohmiler
ohmiler / gist:62641103c2dff90e0d5571c655a7bca1
Last active August 16, 2026 03:59
Prompt ใช้ Cursor AI สร้างระบบ Login/Register แบบปลอดภัยด้วย Next.js + Supabase

1. ติดตั้ง Supabase:

npm install @supabase/supabase-js @supabase/ssr

2. สร้าง Cursor Rules

You are helping me build a secure authentication system using Next.js App Router, TypeScript, Supabase Auth, Supabase SSR, and Tailwind CSS.

Rules:
@0xdevalias
0xdevalias / ai-agent-rule-instruction-context-files.md
Last active August 16, 2026 07:10
Some notes on AI Agent Rule / Instruction / Context files / etc
@kfur
kfur / darkreader.js
Last active August 16, 2026 03:20
Dark Reader userscript for Safari browser
// ==UserScript==
// @name DarkReader
// @match *://*/*
// @grant none
// @run-at document-start
// ==/UserScript==
// MIT License
// Copyright (c) 2019 Alexander Shutau