| ❯ let's implement the plan in @docs/plans/ | |
| ⎿ Listed directory docs/plans/ | |
| ∴ Thinking… | |
| User wants to implement a plan from docs/plans, so I should invoke the brainstorming skill first per the superpowers protocol to explore | |
| requirements before implementation. | |
| ⏺ Skill(superpowers:brainstorming) | |
| ⎿ Successfully loaded skill |
| #!/usr/bin/env bash | |
| # Usage: ./mdview filename.md OR cat file.md | ./mdview | |
| # --- Configuration --- | |
| MAX_CELL_WIDTH=${MAX_CELL_WIDTH:-50} | |
| # --- ANSI Colors --- | |
| ESC=$'\033' | |
| RESET="${ESC}[0m" | |
| BOLD="${ESC}[1m" |
Hardware:
Model: unsloth/Qwen3-Coder-Next-GGUF Q3_K_M
Llama.cpp version: llama.cpp@b7940
The command
| #!/bin/bash | |
| screencapture -i ~/clipboard.png | |
| IMAGE_BASE64=$(base64 -i ~/clipboard.png | tr -d '\n') | |
| rm ~/clipboard.png | |
| API_KEY="GEMINI_API_KEY_HERE" | |
| MODEL="gemini-2.0-flash" |
| import { OpenAI } from "https://deno.land/x/openai@v4.68.1/mod.ts"; | |
| import { WebClient } from "npm:@slack/web-api"; | |
| export function parsePermalink(url: string) { | |
| const u = new URL(url); | |
| const [ , , channel, raw ] = u.pathname.split("/"); | |
| const ts = raw.startsWith("p") | |
| ? raw.slice(1).replace(/(\d{10})(\d{6})/, "$1.$2") | |
| : raw; | |
| return { channel, ts, maybeThread: u.searchParams.get("thread_ts") ?? undefined }; |
| /* ─── floating navbar, hidden by default ─── */ | |
| #nav-bar { | |
| opacity: 0; | |
| pointer-events: none; | |
| position: fixed !important; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| width: 600px; | |
| background: rgba(255,255,255,.95); |