Skip to content

Instantly share code, notes, and snippets.

View Bortus-AI's full-sized avatar
💭
Plugging away

Bortus-AI

💭
Plugging away
View GitHub Profile
@Bortus-AI
Bortus-AI / gist:c9a79371b561c716874ba2cc2bd2f3cf
Created February 28, 2026 06:49
Intel Arc Pro B50 (Battlemage) on Linux — Setup Guide
Debian 12 Guide
# Intel Arc Pro B50 (Battlemage) on Linux — Setup Guide
Getting Intel Arc Pro B50 GPUs working on Debian 12 (Bookworm) with SR-IOV passthrough.
## The Problem
The Intel Arc Pro B50 uses the **Battlemage G21** GPU (`8086:e212`), which requires the
**`xe` kernel driver**. Out of the box on Debian Bookworm, you'll hit two issues:
@Bortus-AI
Bortus-AI / SKILL.md
Created February 22, 2026 17:48 — forked from LuD1161/SKILL.md
codex-review - claude skill file
name description user_invocable
codex-review
Send the current plan to OpenAI Codex CLI for iterative review. Claude and Codex go back-and-forth until Codex approves the plan.
true

Codex Plan Review (Iterative)

Send the current implementation plan to OpenAI Codex for review. Claude revises the plan based on Codex's feedback and re-submits until Codex approves. Max 5 rounds.

@@||claude.ai^
@@||anthropic.com^
@@||cloudfront.net^
@@||clerk.com^
@@||statsigapi.net^
@@||statsig.com^
@@||sentry.io^
@@||intercom.io^
@@||intercomcdn.com^
@@||npmjs.org^
@Bortus-AI
Bortus-AI / feature-flag-bypass-pure.mjs
Created February 2, 2026 23:40 — forked from gastonmorixe/feature-flag-bypass-pure.mjs
Claude Code Feature Flag Bypass - Enable swarm features with npx
/**
* Pure Feature Flag Bypass Injector (Zero Disk Writes)
*
* Enables swarm features by intercepting fs.readFileSync calls and injecting
* the tengu_brass_pebble feature flag into the returned settings content.
*
* This version:
* - NEVER writes to ~/.claude/ or any global path
* - NEVER writes log files to disk
* - Only modifies data IN MEMORY
@Bortus-AI
Bortus-AI / claude.md
Created February 2, 2026 00:10 — forked from OmerFarukOruc/claude.md
AI Agent Workflow Orchestration Guidelines

AI Coding Agent Guidelines (claude.md)

These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.


Operating Principles (Non-Negotiable)

  • Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
  • Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
#For Build a KASM Workspace
#GET SUDO ACCESSS
sudo -i
#SWAP AREA CRETING
sudo dd if=/dev/zero bs=1M count=5024 of=/mnt/swapfile.swap
sudo chmod 600 /mnt/swapfile.swap
sudo mkswap /mnt/swapfile.swap
sudo swapon /mnt/swapfile.swap
@Bortus-AI
Bortus-AI / ssh-copy-id.sh
Created January 12, 2023 18:04 — forked from netoxico/ssh-copy-id.sh
Shell script to install your public key on a remote machine
#!/bin/sh
# Shell script to install your public key on a remote machine
# Takes the remote machine name as an argument.
# Obviously, the remote machine must accept password authentication,
# or one of the other keys in your ssh-agent, for this to work.
ID_FILE="${HOME}/.ssh/id_rsa.pub"
if [ "-i" = "$1" ]; then
@Bortus-AI
Bortus-AI / jellyfin-app-installation.sh
Last active May 30, 2022 14:01
PM Jellyfin App install script
#!/bin/bash
mkdir -p $HOME/.config/jellyfin
## To update uncomment following line
#rm -rf $HOME/.bin
## change version number to update JELLYFIN
JELLYFIN_VERSION="10.7.7"
## to update ASPDOTNET find new url at https://dotnet.microsoft.com/en-us/download/dotnet/5.0