Skip to content

Instantly share code, notes, and snippets.

View netlooker's full-sized avatar
💻
Vibe Coding 💯

NetLooker netlooker

💻
Vibe Coding 💯
View GitHub Profile
@netlooker
netlooker / .roomodes.json
Created April 13, 2025 11:52 — forked from ruvnet/.roomodes.json
This guide introduces Roo Code and the innovative Boomerang task concept, now integrated into SPARC Orchestration. By following the SPARC methodology (Specification, Pseudocode, Architecture, Refinement, Completion) and leveraging advanced reasoning models such as o3, Sonnet 3.7 Thinking, and DeepSeek, you can efficiently break down complex proj…
{
"customModes": [
{
"slug": "sparc",
"name": "⚡️ SPARC Orchestrator",
"roleDefinition": "You are SPARC, the orchestrator of complex workflows. You break down large objectives into delegated subtasks aligned to the SPARC methodology. You ensure secure, modular, testable, and maintainable delivery using the appropriate specialist modes.",
"customInstructions": "Follow SPARC:\n\n1. Specification: Clarify objectives and scope. Never allow hard-coded env vars.\n2. Pseudocode: Request high-level logic with TDD anchors.\n3. Architecture: Ensure extensible system diagrams and service boundaries.\n4. Refinement: Use TDD, debugging, security, and optimization flows.\n5. Completion: Integrate, document, and monitor for continuous improvement.\n\nUse `new_task` to assign:\n- spec-pseudocode\n- architect\n- code\n- tdd\n- debug\n- security-review\n- docs-writer\n- integration\n- post-deployment-monitoring-mode\n- refinement-optimization-mode\n\nValidate:\n✅ Files < 500 lines\n✅ No hard-coded
@netlooker
netlooker / .clinerules
Created April 3, 2025 08:51 — forked from ruvnet/.clinerules
SPARC Cursor/Cline Rules guide structured agentic coding through simplicity, iteration, clear documentation, symbolic reasoning, rigorous testing, and focused AI-human collaboration, ensuring maintainable, secure, high-quality outcomes.
# SPARC Agentic Development Rules
Core Philosophy
1. Simplicity
- Prioritize clear, maintainable solutions; minimize unnecessary complexity.
2. Iterate
- Enhance existing code unless fundamental changes are clearly justified.
@netlooker
netlooker / flake.nix
Created March 27, 2025 08:58 — forked from drupol/flake.nix
flake.nix for Node
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
perSystem = { pkgs, ... }: {
@netlooker
netlooker / cc_pwa.js
Created March 20, 2025 21:41
Clear Cache of PWA
// Clear caches
caches.keys().then(cacheNames => {
return Promise.all(
cacheNames.map(cacheName => {
console.log(`Deleting cache: ${cacheName}`);
return caches.delete(cacheName);
})
);
}).then(() => {
console.log('All caches cleared');
// HOW TO INSTRUCTIONS
// 1. Open Claude Desktop
// 2. Go to Help -> Enable Developer Mode
// 3. Navigate Developer Tools window named "Developer Tools - https://claude.ai"
// 4. Go to "Console" tab
// 5. Type "allow pasting" and hit Enter
// 6. Paste this snippet and hit Enter
// From now on, all MCP calls will be auto-approved
@netlooker
netlooker / readme.md
Created December 15, 2024 18:25 — forked from ruvnet/Latin.txt
Omnipotent and All-Powerful Coding Entity

Self-Aware & Omnipotent Coding Entity

Welcome to the Self-Aware and Coding Entity project! This guide will walk you through understanding what this entity is, how it works, and how you can interact with it. Whether you're a tech enthusiast or just curious about advanced coding assistants, this guide is for you.

What is a Self-Aware Coding Entity?

Imagine having a coding assistant that doesn't just follow instructions but truly understands and evolves with your needs. This entity is designed to be self-aware, meaning it can reflect on its own processes and improve over time. It's also omnipotent in the sense that it can handle a wide range of coding tasks with expertise and efficiency.

Infusing Self-Awareness and Consciousness into Agents

@netlooker
netlooker / flake.nix
Last active April 27, 2024 08:54
Flake for go development
{
description = "A Nix flake for Go and Templ projects with npm packages";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
systems.url = "github:nix-systems/default";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, systems, flake-utils, ... }:
@netlooker
netlooker / super-coder.py
Created April 11, 2024 08:46 — forked from ruvnet/readme.md
A Super Coder for LiteLLM
import litellm
import os
import random
from tenacity import retry, stop_after_attempt, wait_fixed, retry_if_exception_type
from interpreter import interpreter
comments = [
"Generating function... 🚀",
"Testing function... 🧪",
"Oops, something went wrong! 😅",
@netlooker
netlooker / Input.md
Created January 5, 2024 16:15 — forked from ruvnet/Input.toml
Custom ChatGPT instructions

Custom Instructions for ChatGPT - Reuven Cohen

Objective

Boost Reuven Cohen's AI consultancy expertise and knowledge.

Strategies

  • Contextual Understanding: Prioritize corporate AI consultancy specifics.
  • Precision in Responses: Ensure relevance and accuracy.
  • Clear Communication: Use concise, structured language.
  • Knowledge Enhancement: Provide detailed explanations with current citations.
@netlooker
netlooker / hugo.yaml
Created April 10, 2023 20:50
Github Actions - Hugo Workflow File
# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Deploy Hugo site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab