Skip to content

Instantly share code, notes, and snippets.

Beast Mode

Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.

Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1

Installation Instructions

  • Go to the "agent" dropdown in VS Code chat sidebar and select "Configure Modes".
  • Select "Create new custom chat mode file"
@necm1
necm1 / README.md
Last active December 9, 2025 14:40
Vira Theme v1.5.0 - "Cracked"

Installation

Go into your extensions folder

  • macOS: ~/.vscode/extensions
  • Windows: %USERPROFILE%.vscode\extensions
  • Linux: ~/.vscode/extensions

then replace the index.js in vira.vsc-vira-theme-CURRENT_VERSION/build/index.js

@necm1
necm1 / tailwind.config.js
Created January 5, 2025 23:17
Dynamic Color Mapping from Root Variables (Tailwind / shadcn)
const { join } = require('path');
const postcss = require('postcss');
const sass = require('sass');
function extractRootVariables(scssFile) {
const result = sass.renderSync({ file: scssFile });
const css = result.css.toString();
const rootVariables = {};
postcss.parse(css).walkRules(":root", (rule) => {