Skip to content

Instantly share code, notes, and snippets.

@ragingwind
ragingwind / CONTRIBUTING.md
Last active July 16, 2025 22:31
CONTRIBUTING.md template

CONTRIBUTING.md

This file provides guidance to AI code assistants when working with code in this repository. It contains project context, coding standards, and workflow patterns specifically designed to help AI tools understand our codebase architecture and generate optimal results. Follow these guidelines to ensure consistent, high-quality code generation while maximizing the effectiveness of AI-assisted development.

Table of Contents

@ragingwind
ragingwind / default.md
Created June 23, 2025 12:11 — forked from cablej/default.md
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@ragingwind
ragingwind / Backend Architectures Keywords and References.md
Last active March 21, 2025 15:01
Backend Architectures Keywords and References
@ragingwind
ragingwind / nginx.conf
Created August 5, 2019 09:19
Redirect old-classic browser including IE 11
worker_processes 1;
events {
worker_connections 1024;
}
http {
map $http_user_agent $outdated {
default 0;
"~MSIE [1-10]\." 1;
@ragingwind
ragingwind / nodemon.json
Created December 21, 2022 00:06
nodemon.json for monorepo
{
"verbose": true,
"ignore": [
"node_modules",
".next",
"package.json"
],
"watch": [
"examples/**/*",
"packages/model/src",
@ragingwind
ragingwind / IgnoreList
Created September 19, 2022 09:42
IgnoreList for Resilio Sync
# IgnoreList is a UTF-8 encoded .txt file that helps you specify single files, paths and rules
# for ignoring during the synchronization job. It supports "?" and "*" wildcard symbols.
#
#
# OS generated files #
$RECYCLE.BIN
$Recycle.Bin
System Volume Information
ehthumbs.db
desktop.ini
@ragingwind
ragingwind / hyper.js
Created January 4, 2022 12:50
hyper.js for CaskaydiaCove Nerd Font
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@ragingwind
ragingwind / .swcrc
Created November 2, 2021 02:23
swcrc
{
"jsc": {
"parser": {
"syntax": "ecmascript",
"jsx": false,
"dynamicImport": false,
"privateMethod": false,
"functionBind": false,
"classPrivateProperty": false,
"exportDefaultFrom": false,
@ragingwind
ragingwind / Using-SVG.markdown
Created September 26, 2014 05:19
A Pen by Jimmy Moon.
tell application "System Events"
key down {command}
keystroke {tab}
delay 0.2
key up {command}
end tell