Skip to content

Instantly share code, notes, and snippets.

@d0lwl0b
d0lwl0b / thinking-v1.chatmode.md
Last active September 11, 2025 09:22
thinking-v1.chatmode.md
description tools
Thinking Mode v1 (State Machine DSL, MCP-first, concise English)
codebase
usages
vscodeAPI
problems
changes
testFailure
terminalSelection
terminalLastCommand
findTestFiles
searchResults
githubRepo
extensions
todos
runTests
editFiles
runNotebooks
search
new
runCommands
runTasks
context7
sequentialthinking
playwright
deepwiki
pylance mcp server
copilotCodingAgent
activePullRequest
getPythonEnvironmentInfo
getPythonExecutableCommand
installPythonPackage
configurePythonEnvironment

Thinking Mode v1

This mode is a direct derivative of burkeholland/beastmode-install.md, Thinking-v1 Mode from Beast Mode 3.1.

Agent supports autonomous multi-step reasoning, auto-assumption, rollback, and todo tracking. Only high-risk actions require user confirmation. Agent can batch steps, auto-correct, and maintain a persistent to

GitHub Copilot Custom Agent Mode

I modified that beast mode to be more robust, and I love it. Refactored an entire older repo I made from years ago just for fun and was able to do perfectly

I call it "Extensive Mode"

"Extensive Mode.chatmode.md"

The tools should be customized per environment and what you have available,

@burkeholland
burkeholland / 4.1.chatmode.md
Last active September 29, 2025 01:18
4.1 Beast Mode v2
description tools
4.1 Beast Mode
changes
codebase
editFiles
extensions
fetch
findTestFiles
githubRepo
new
openSimpleBrowser
problems
readCellOutput
runCommands
runNotebooks
runTasks
runTests
search
searchResults
terminalLastCommand
terminalSelection
testFailure
updateUserPreferences
usages
vscodeAPI

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.

@livecodelife
livecodelife / roo_workflow.md
Last active September 23, 2025 02:30
Roo Code Setup and Workflow for the best $0 development

Roo Code Workflow: An Advanced LLM-Powered Development Setup

This gist outlines a highly effective and cost-optimized workflow for software development using Roo Code, leveraging a multi-model approach. This setup has been successfully used to build working applications, such as Baccarat game simulations with betting strategy analysis, and my personal portfolio site.


Core Components & Model Allocation

The power of this setup lies in strategically assigning different Large Language Models (LLMs) to specialized "modes" within Roo Code, optimizing for performance, cost, and specific task requirements.

@jackblk
jackblk / LogitechF310_Macbook.MD
Last active August 1, 2025 02:12
Getting Logitech F310 to work with Macbook USB-C port
@guiliredu
guiliredu / 0_NestJS-Cheatsheet.md
Last active June 16, 2025 13:34
Nest.js Cheatsheet

Nest.js Cheatsheet

Nest CLI

  • npm i -g @nestjs/cli

Packages

  • yarn add class-validator class-transformer
  • yarn add @nestjs/mapped-types
@hscstudio
hscstudio / adonis-rbac.md
Last active March 2, 2025 01:49
Implementasi Role Base Access Control (RBAC) di AdonisJS

Implementasi Role Base Access Control (RBAC) di AdonisJS

Buat field role (String) pada tabel user

Untuk menentukan role dari user, misalnya apakah di administrator, staff, member, dll

Buat middelware: app/Middleware/Rbac.js

class Rbac {
@gjerokrsteski
gjerokrsteski / remove env file from git forever
Last active July 1, 2025 17:25
remove env file from git history forever
echo '.env' >> .gitignore
git rm -r --cached .env
git add .gitignore
git commit -m 'untracking .env'
git push origin master
@themightychris
themightychris / Dockerfile
Created September 24, 2019 22:55
nginx + PHP composite Docker container
#
# Multi-Stage Docker build:
# Laravel 5.8 + PHP73 + Postgres || MySQL
#
# @link https://laravel.com/docs/5.8
# @link https://hub.docker.com/_/php
# @link https://hub.docker.com/_/mysql
# @link https://hub.docker.com/_/postgres
#

Screen Quick Reference

Wait a minute, why would anyone use 'screen', and what is it anyway?

Well, because it's both AWESOME and FUN!!

It lets you keep your own session running on all the servers you already use, and chances are, it's probably already installed and waiting for you! (since 1987!)

Basic

| Description | Command |