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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " 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" |