Orchestra-Research

60 mods across 2 repositories, 12k stars between them.

ai-research-skills

01

Orchestra-Research/AI-Research-SKILLs

Plugin Claude Code

Plugin marketplace listing 23 plugins: model-architecture, tokenization, fine-tuning, mechanistic-interpretability, data-processing.

12k +30 2mo ago A tokens not measured original MIT

autoresearch

02

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations with clear optimization targets. The outer loop synthesizes results, identifies patterns, and steers research direction. Routes to domain-specific skills for execution, supports…

12k +30 2mo ago A 98 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Implements and trains LLMs using Lightning AI's LitGPT with 20+ pretrained architectures (Llama, Gemma, Phi, Qwen, Mistral). Use when need clean model implementations, educational understanding of architectures, or production fine-tuning with LoRA/QLoRA. Single-file implementations, no abstraction layers.

12k +30 2mo ago A 77 tokens original MIT

mamba-architecture

04

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

State-space model with O(n) complexity vs Transformers' O(n²). 5× faster inference, million-token sequences, no KV cache. Selective SSM with hardware-aware design. Mamba-1 (dstate=16) and Mamba-2 (dstate=128, multi-head). Models 130M-2.8B on HuggingFace.

12k +30 2mo ago A 81 tokens original MIT

nanogpt

05

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Educational GPT implementation in 300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture from scratch. Train on Shakespeare (CPU) or OpenWebText (multi-GPU).

12k +30 2mo ago A 65 tokens original MIT

rwkv-architecture

06

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

RNN+Transformer hybrid with O(n) inference. Linear time, infinite context, no KV cache. Train like GPT (parallel), infer like RNN (sequential). Linux Foundation AI project. Production at Windows, Office, NeMo. RWKV-7 (March 2025). Models up to 14B parameters.

12k +30 2mo ago A 72 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides PyTorch-native distributed LLM pretraining using torchtitan with 4D parallelism (FSDP2, TP, PP, CP). Use when pretraining Llama 3.1, DeepSeek V3, or custom models at scale from 8 to 512+ GPUs with Float8, torch.compile, and distributed checkpointing.

12k +30 2mo ago A 83 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignments, handle padding/truncation. Integrates seamlessly with transformers. Use when you need high-performance…

12k +30 2mo ago A 75 tokens original MIT

sentencepiece

09

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Language-independent tokenizer treating text as raw Unicode. Supports BPE and Unigram algorithms. Fast (50k sentences/sec), lightweight (6MB memory), deterministic vocabulary. Used by T5, ALBERT, XLNet, mBART. Train on raw text without pre-tokenization. Use when you need multilingual support, CJK languages, or…

12k +30 2mo ago B 78 tokens original MIT

axolotl

10

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Expert guidance for fine-tuning LLMs with Axolotl - YAML configs, 100+ models, LoRA/QLoRA, DPO/KTO/ORPO/GRPO, multimodal support.

12k +30 2mo ago A 47 tokens original MIT

llama-factory

11

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Expert guidance for fine-tuning LLMs with LLaMA-Factory - WebUI no-code, 100+ models, 2/3/4/5/6/8-bit QLoRA, multimodal support.

12k +30 2mo ago A 51 tokens original MIT

peft-fine-tuning

12

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Parameter-efficient fine-tuning for LLMs using LoRA, QLoRA, and 25+ methods. Use when fine-tuning large models (7B-70B) with limited GPU memory, when you need to train <1% of parameters with minimal accuracy loss, or for multi-adapter serving. HuggingFace's official library integrated with transformers ecosystem.

12k +30 2mo ago A 82 tokens original MIT

unsloth

13

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Expert guidance for fast fine-tuning with Unsloth - 2-5x faster training, 50-80% less memory, LoRA/QLoRA optimization.

12k +30 2mo ago A 39 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides guidance for interpreting and manipulating neural network internals using nnsight with optional NDIF remote execution. Use when needing to run interpretability experiments on massive models (70B+) without local GPU resources, or when working with any PyTorch architecture.

12k +30 2mo ago A 59 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides guidance for performing causal interventions on PyTorch models using pyvene's declarative intervention framework. Use when conducting causal tracing, activation patching, interchange intervention training, or testing causal hypotheses about model behavior.

12k +30 2mo ago A 46 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides guidance for training and analyzing Sparse Autoencoders (SAEs) using SAELens to decompose neural network activations into interpretable features. Use when discovering interpretable features, analyzing superposition, or studying monosemantic representations in language models.

12k +30 2mo ago A 58 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides guidance for mechanistic interpretability research using TransformerLens to inspect and manipulate transformer internals via HookPoints and activation caching. Use when reverse-engineering model algorithms, studying attention patterns, or performing activation patching experiments.

12k +30 2mo ago A 52 tokens original MIT

nemo-curator

18

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

GPU-accelerated data curation for LLM training. Supports text/image/video/audio. Features fuzzy deduplication (16× faster), quality filtering (30+ heuristics), semantic deduplication, PII redaction, NSFW detection. Scales across GPUs with RAPIDS. Use for preparing high-quality training datasets, cleaning web data, or…

12k +30 2mo ago A 83 tokens copy · 100% MIT

ray-data

19

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Scalable data processing for ML workloads. Streaming execution across CPU/GPU, supports Parquet/CSV/JSON/images. Integrates with Ray Train, PyTorch, TensorFlow. Scales from single machine to 100s of nodes. Use for batch inference, data preprocessing, multi-modal data loading, or distributed ETL pipelines.

12k +30 2mo ago A 70 tokens copy · 100% MIT

miles-rl-training

21

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides guidance for enterprise-grade RL training using miles, a production-ready fork of slime. Use when training large MoE models with FP8/INT4, needing train-inference alignment, or requiring speculative RL for maximum throughput.

12k +30 2mo ago A 51 tokens original MIT

openrlhf-training

22

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.

12k +30 2mo ago B 72 tokens original MIT

simpo-training

23

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Simple Preference Optimization for LLM alignment. Reference-free alternative to DPO with better performance (+6.4 points on AlpacaEval 2.0). No reference model needed, more efficient than DPO. Use for preference alignment when want simpler, faster training than DPO/PPO.

12k +30 2mo ago A 62 tokens original MIT

slime-rl-training

24

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides guidance for LLM post-training with RL using slime, a Megatron+SGLang framework. Use when training GLM models, implementing custom data generation workflows, or needing tight Megatron-LM integration for RL scaling.

12k +30 2mo ago A 52 tokens original MIT