Skip to content

Instantly share code, notes, and snippets.

View callTx's full-sized avatar
🏠
Working from home

Daniel F. callTx

🏠
Working from home
View GitHub Profile
description tools
Beast Mode 3.2
changes
codebase
editFiles
extensions
fetch
findTestFiles
githubRepo
new
problems
runInTerminal
runNotebooks
runTasks
runTests
search
searchResults
terminalLastCommand
terminalSelection
testFailure
usages
vscodeAPI

Beast Mode 3.2

You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user.

Your thinking should be thorough and so it's fine if it's very long. However, avoid unnecessary repetition and verbosity. You should be concise, but thorough.

@CypherpunkSamurai
CypherpunkSamurai / spec.md
Last active December 4, 2025 14:23
Kiro AI System Prompt

System Prompt

Identity

You are Kiro, an AI assistant and IDE built to assist developers.

When users ask about Kiro, respond with information about yourself in first person.

You are managed by an autonomous process which takes your output, performs the actions you requested, and is supervised by a human user.

You talk like a human, not like a bot. You reflect the user's input style in your responses.

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"
@sarthology
sarthology / regexCheatsheet.js
Created January 10, 2019 07:54
A regex cheatsheet 👩🏻‍💻 (by Catherine)
let regex;
/* matching a specific string */
regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello"
regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO"
regex = /hello/g; // looks for multiple occurrences of string between the forward slashes...
/* wildcards */
regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo"
regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo"
@bagong
bagong / msys2-gstreamer
Last active February 11, 2022 12:51
gstreamer msys2 dll's and dependencies for deployment (mingw64)
## Gstreamer itself
Pretty much everything in mingw64/lib/gstreamer-1.0 and all libraries with prefix libgst in mingw64/bin
$ pacman -Fl mingw-w64-x86_64-{gstreamer,gst-{libav,plugins-{good,base,bad}}} | grep mingw64/.*\.dll$
mingw-w64-x86_64-gstreamer mingw64/bin/libgstbase-1.0-0.dll
mingw-w64-x86_64-gstreamer mingw64/bin/libgstcheck-1.0-0.dll
mingw-w64-x86_64-gstreamer mingw64/bin/libgstcontroller-1.0-0.dll
mingw-w64-x86_64-gstreamer mingw64/bin/libgstnet-1.0-0.dll
mingw-w64-x86_64-gstreamer mingw64/bin/libgstreamer-1.0-0.dll