Skip to content

Instantly share code, notes, and snippets.

View 24601's full-sized avatar

Basit Mustafa 24601

View GitHub Profile
@kieranklaassen
kieranklaassen / SKILL.md
Last active February 6, 2026 02:19
Claude Code Swarm Orchestration Skill - Complete guide to multi-agent coordination with TeammateTool, Task system, and all patterns
name description
orchestrating-swarms
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns.

Claude Code Swarm Orchestration

Master multi-agent orchestration using Claude Code's TeammateTool and Task system.


@emschwartz
emschwartz / README.md
Last active February 6, 2026 01:42
The Most Popular Blogs of Hacker News in 2025

This is an OPML version of the HN Popularity Contest results for 2025, for importing into RSS feed readers.

Plug: if you want to find content related to your interests from thousands of obscure blogs and noisy sources like HN Newest, check out Scour. It's a free, personalized content feed I work on where you define your interests in your own words and it ranks content based on how closely related it is to those topics.

@yrashk
yrashk / inferal-workspace-architecture.md
Last active January 27, 2026 08:57
Inferal Workspace Architecture
@Dicklesworthstone
Dicklesworthstone / gist:107ab1767b188544819fb0c39d7ac3fd
Last active November 30, 2025 17:17
Session using BV to figure out best beads order

❯ cd /data/projects/coding_agent_session_search ❯ cc

▐▛███▜▌ Claude Code v2.0.54 ▝▜█████▛▘ Opus 4.5 · Claude Max ▘▘ ▝▝ /data/projects/coding_agent_session_search

read AGENTS.md and the README and explore the project deeply. Use ultrathink

● I'll start by reading the AGENTS.md and README files, then explore the project structure in depth.

@arianvp
arianvp / SSH_MACOS_SECURE_ENCLAVES.md
Last active February 4, 2026 23:23
Native Secure Enclaved backed ssh keys on MacOS

Native Secure Enclave backed ssh keys on MacOS

It turns out that MacOS Tahoe can generate and use secure-enclave backed SSH keys! This replaces projects like https://github.com/maxgoedjen/secretive

There is a shared library /usr/lib/ssh-keychain.dylib that traditionally has been used to add smartcard support to ssh by implementing PKCS11Provider interface. However since recently it also implements SecurityKeyProivder which supports loading keys directly from the secure enclave! SecurityKeyProvider is what is normally used to talk to FIDO2 devices (e.g. libfido2 can be used to talk to your Yubikey). However you can now use it to talk to your Secure Enclave instead!

@phhusson
phhusson / infer-qwen3-omni-rtx3090.py
Created September 23, 2025 11:04
Infer Qwen3 Omni 30b-a3b on RTX3090 with 4bits bitsandbytes
import os
os.environ['PYTORCH_CUDA_ALLOC_CONF']='expandable_segments:True'
import soundfile as sf
from transformers import Qwen3OmniMoeForConditionalGeneration, Qwen3OmniMoeProcessor, BitsAndBytesConfig
from qwen_omni_utils import process_mm_info
import torch
MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Instruct"
@RexYuan
RexYuan / strix-compare.md
Last active January 24, 2026 20:39
True-to-scale dimension comparison chart of every AMD Strix Halo Al Max+ 395 MiniPC

  1. Bosgame, Peladn, and XPlus use the exact same case just with different branding.
  2. Corsair, Nimo, Linglong, Colorful, MINIX, and SEAVIV are based on the same SIXUNITED XB35-H02/03-BQ case.
  3. GMKtec, FEVM FA-EX9, Bosgame, Peladn, XPlus, Corsair, Nimo, Linglong, Colorful, MINIX, and SEAVIV are based on the same SIXUNITED AXB35 motherboard.

Here are the exact dimensions placed horizontally measured in mm and volume in liters rounded to 2 decimals:

@0xs34n
0xs34n / THE_DEATH_OF_THE_USER_INTERFACE.md
Created August 23, 2025 10:41
The Death of the User Interface

The Death of the User Interface

TL;DR: We're witnessing the end of graphical user interfaces. AI agents like Claude Code are eliminating the need for windows, menus, and clicks, replacing them with natural language. The computer is finally learning to speak human, not the other way around.


🔮 A Personal Revelation

Last week, I realized something profound: I haven't opened Finder in months. Not once.

#!/usr/bin/env bun
"use strict";
const fs = require("fs");
const { execSync } = require("child_process");
const path = require("path");
// ANSI color constants
const c = {
cy: '\033[36m', // cyan
@24601
24601 / Autonomous.md
Created July 11, 2025 22:12 — forked from ruvnet/Autonomous.md
PyTorch-Based AI Agent System with Advanced Reasoning and Autonomy

Designing a PyTorch-Based AI Agent System with Advanced Reasoning and Autonomy

Overview and Goals

We propose an AI agent architecture in PyTorch that integrates state-of-the-art components to meet the following goals: (1) advanced reasoning with transformer models, (2) ingestion of large documents or histories via long context windows, (3) persistent memory without traditional vector-database RAG, (4) tool use for actions (API calls, code execution, etc.) similar to Anthropic’s MCP standard, and (5) declarative, goal-driven behavior with autonomous planning. The system will be compatible with both CPU and GPU environments. Below, we detail recommended models, libraries, and design choices for each aspect, followed by an overall architecture and example implementation steps.

1. Transformer Models for Advanced Reasoning

Model Selection: Use modern transformer-based LLMs known for strong reasoning and multitasking. For example, Meta’s LLaMA 2 (open-source, 7B–70B parameters) or **Mist