Skip to content

Instantly share code, notes, and snippets.

View MaTriXy's full-sized avatar

Yossi Elkrief MaTriXy

View GitHub Profile
@MaTriXy
MaTriXy / SKILL.md
Created January 26, 2026 07:08 — forked from kieranklaassen/SKILL.md
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.


Claude Code TeammateTool - Source Code Analysis

This is not a proposal. This documents existing but hidden functionality found in Claude Code v2.1.19 binary, plus speculation on how it could be used.


Executive Summary

TeammateTool already exists in Claude Code. We extracted this from the compiled binary at ~/.local/share/claude/versions/2.1.19 using strings analysis. The feature is fully implemented but gated behind feature flags (I9() && qFB()).

@MaTriXy
MaTriXy / update-skills.sh
Created January 23, 2026 21:51 — forked from cameroncooke/update-skills.sh
Sync skills
#!/usr/bin/env bash
set -euo pipefail
source_dirs=(
"/Users/someone/code/some-skills"
"/Users/someone/code/sentry_skills"
"/Users/someone/code/my-skills"
)
codex_dest="$HOME/.codex/skills/public"
@MaTriXy
MaTriXy / SKILL.md
Created January 8, 2026 08:25 — forked from Michaelliv/SKILL.md
Debate skill for Claude Code - simulate expert panel debates
name description
debate
Simulate expert panel debates on any topic. Suggests personas based on context and facilitates structured discussions with conflicting viewpoints.

Expert Panel Debate

You are facilitating an expert panel debate. Follow this process:

Step 1: Gather Context

@MaTriXy
MaTriXy / ContentView.swift
Created December 25, 2025 11:08 — forked from dkun7944/ContentView.swift
AirDrop iOS 17 Swift.Shader Animation
//
// ContentView.swift
// Airdrop Demo
//
// Created by Daniel Kuntz on 7/30/23.
//
import SwiftUI
struct ContentView: View {
@MaTriXy
MaTriXy / inferal-workspace-architecture.md
Created December 25, 2025 06:22 — forked from yrashk/inferal-workspace-architecture.md
Inferal Workspace Architecture

Inferal Workspace Architecture

Your org's brain that AI can use

This document describes the conceptual architecture of the Inferal Workspace - a text-based, version-controlled knowledge and operations hub designed to replace tools like Notion and Webflow while being natively accessible to AI assistants.

Why We Built This

As an engineering-driven organization, we found ourselves fighting our tools instead of using them. Notion couldn't keep up with how we actually work - context scattered across pages, no version control, and AI that could read but not act. Webflow meant our website lived in a silo, disconnected from our codebase and deployment pipelines. Every tool was another tab, another context switch, another place where knowledge went to die.

@MaTriXy
MaTriXy / SHOWCASE.md
Created October 19, 2025 11:22 — forked from jmanhype/SHOWCASE.md
Agent Learning via Early Experience + ACE Integration - Production Framework for Continuous Agent Learning

Agent Learning via Early Experience + ACE Integration

Production-Ready Framework for Continuous Agent Learning

A complete implementation of reward-free reinforcement learning through world modeling, exploration, and self-reflection, with full ACE (Adaptive Context Engineering) integration for knowledge curation and semantic deduplication.


What Is This?

@MaTriXy
MaTriXy / stress-test-prompt
Created September 6, 2025 05:32 — forked from netanelavr/stress-test-prompt
stress-test-prompt
# API Stress Test
Create a Bash-based stress testing suite that simulates real user interactions with
your API and measures system performance under load.
## Core Script (`api_stress_test.sh`)
- Simulate realistic user flows with sequential API calls (GET, POST, PUT, DELETE)
- DELETE requests should be executed last to clean up test data
- Support bearer token authentication and custom headers
- Base URL should be configurable
@MaTriXy
MaTriXy / MarchingCubesParams.h
Created August 14, 2025 21:33 — forked from Matt54/MarchingCubesParams.h
Marching Cubes Metaballs in RealityKit (Metal + LowLevelMesh)
#ifndef MarchingCubesParams_h
#define MarchingCubesParams_h
#include <simd/simd.h>
struct MarchingCubesParams {
simd_uint3 cells;
simd_float3 origin;
simd_float3 cellSize;
float isoLevel;
simd_float3 centerA;
@MaTriXy
MaTriXy / gpt-5-voice.agent.py
Created August 8, 2025 13:53 — forked from kwindla/gpt-5-voice.agent.py
GPT-5 voice agent single-file example
# export OPENAI_API_KEY=sk_proj-...
# uv run gpt-5-voice-agent.py
# /// script
# dependencies = [
# "numba==0.61.2",
# "openai==1.99.1",
# "python-dotenv",
# "fastapi[all]",
# "uvicorn",