Skip to content

Instantly share code, notes, and snippets.

View tamuratak's full-sized avatar

Takashi Tamura tamuratak

  • Osaka Metropolitan University
  • Osaka, Japan
View GitHub Profile

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"
@bdash
bdash / action-modifiers.scm
Created December 1, 2024 21:17
macOS sandbox action modifiers, filters, and operations
;; Current as of macOS 15.1
(with send-signal …)
(with errno …)
(with report)
(with no-report)
(with no-sandbox)
(with grant)
(with sip-override)
(with no-times)
@woxtu
woxtu / ocr.js
Last active October 16, 2024 01:05 — forked from doraTeX/ocr.sh
A JavaScript (JXA) to perform OCR on images/PDFs using macOS built-in OCR engine
#!/usr/bin/osascript -l JavaScript
ObjC.import("stdlib");
ObjC.import("AppKit");
ObjC.import("PDFKit");
ObjC.import("Vision");
const scriptName = $.NSProcessInfo.processInfo.arguments.objectAtIndex(3).lastPathComponent.js;
console.error = (obj) => {
@doraTeX
doraTeX / ocr.sh
Last active November 16, 2025 14:36
A shell script to perform OCR on images/PDFs using macOS built-in OCR engine -- https://doratex.hatenablog.jp/entry/20230629/1687977178
#!/bin/bash
SCRIPTNAME=$(basename "$0")
function realpath () {
f=$@;
if [ -d "$f" ]; then
base="";
dir="$f";
else
base="/$(basename "$f")";
@manzt
manzt / README.md
Last active December 7, 2023 07:10
esbuild-plugin-inline-webworker

esbuild-plugin-inline-webworker

Usage

// ./index.ts
import workerSrc from 'inline-worker:./worker.ts';
let worker = new Worker(workerSrc);
worker.onmessage = e => console.log(e.data); // 'world'