Skip to content

Instantly share code, notes, and snippets.

@BennyC
BennyC / SKILL.md
Created May 23, 2026 19:03
clarify

name: clarify description: > Interviews you with adaptive, one-at-a-time questions (using AskUserQuestion) until Claude has a confident shared understanding of your problem or task, then writes a structured summary inline for you to confirm. Use this whenever a task feels fuzzy, you want to think through something before diving in, or you want to make sure Claude truly understands your situation. Trigger on phrases like "let's clarify", "interview me", "help me think through this", "I need to think through something", "let's get on the same page", "clarify the problem", "understand the context", "ask me questions", or any time the user presents a complex situation that hasn't been fully

import {random} from './../helpers/math.js';
export default class Canvas {
constructor(element, name) {
this._ele = element;
this._ctx = element.getContext('2d');
this._name = name;
}
rect(x, y, width, height, color) {
@BennyC
BennyC / .vimrc
Created September 11, 2013 14:06
My newly improved .vimrc
" Setup
set nocompatible " be iMproved
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Bundles
Bundle "tomasr/molokai"
Bundle 'lsdr/monokai'
Bundle "summerfruit256"
Bundle "scrooloose/nerdtree"