xylocopa
A to-do list that runs your Claude Code agents — capture anywhere, dispatch in parallel, review from your phone.
⚡ Pure-Rust WebGPU inference engine — OpenAI-API compatible, GGUF native, runs on any GPU. No Python. No llama.cpp. Sin…
git clone https://github.com/Michael-A-Kuykendall/shimmy.gitMichael-A-Kuykendall/shimmy
Shimmy will be free forever. No asterisks. No "free for now." No pivot to paid.
🚀 If Shimmy helps you, consider sponsoring — 100% of support goes to keeping it free forever.
🎯 Become a Sponsor | See our amazing sponsors 🙏
Shimmy is a single-binary that provides 100% OpenAI-compatible endpoints for GGUF models. Point your existing AI tools to Shimmy and they just work — locally, privately, and free.
🎉 NEW in v2.0.0: Shimmy now runs on Airframe, a pure-Rust WGSL GPU engine. No C++ toolchain, no backend flags, no compilation required.
⚡ NEW in v2.1.0: TurboShimmy INT4 KV — ~7× less KV cache VRAM with one flag. Run Llama-3.2-3B on 4 GB GPUs.
⚡ NEW in v2.3.0: Adapter selection fix (prefers discrete GPU over integrated), grammar control hooks, 357 passing tests.
Starting in v2.0.0, Shimmy's default inference engine is Airframe — a pure-Rust WebGPU (WGSL) transformer runtime built from scratch. v0.2.10 brings the GPU gibberish fix (dequant front-padding), f16→f32 dequant correction, Q5_0 quant slot, fabric dispatch rules, and golden-vault certification (10/10 models).
See airframe CHANGELOG for full release notes.
Why this matters:
SHIMMY_MAX_CTX — engine allocates KV cache and sets RoPE scale automatically (see Extended Context below)Quick start with Airframe (v2.0.0+):
# Default: 2048-token context SHIMMY_BASE_GGUF=/path/to/TinyLlama-1.1B-Chat-v1.0.Q4_0.gguf ./shimmy serve # Extended context (4096 tokens — YaRN RoPE enabled automatically, KV cache resized) SHIMMY_BASE_GGUF=/path/to/model.gguf SHIMMY_MAX_CTX=4096 ./shimmy serve
TurboShimmy is Shimmy's on-GPU INT4 KV-cache compression system, shipping in v2.1.0. It squeezes the KV cache from 32-bit floats down to per-head-vector 4-bit integers — entirely in WGSL compute shaders with no CPU roundtrips — delivering ~7× less KV VRAM with no measurable quality loss at normal context lengths.
One flag. ~7× less KV VRAM. Same output quality.
# Enable TurboShimmy on any GGUF model ./shimmy serve --kv-quant int4 # Or via environment variable (docker-compose, systemd, etc.) SHIMMY_KV_QUANT=int4 ./shimmy serve # Windows GPU + long prompts: reduce per-dispatch work to prevent TDR resets ./shimmy serve --kv-quant int4 --prefill-chunk 8
Why it matters — TurboShimmy changes what fits on your GPU:
| GPU VRAM | Without TurboShimmy | With TurboShimmy (--kv-quant int4) |
|---|---|---|
| 3 GB | Llama-3.2-1B only | Llama-3.2-3B fits ✅ |
| 4 GB | Llama-3.2-3B, ctx=2048 (tight) | Llama-3.2-3B at ctx=8192 ✅ |
| 6 GB | 3B models, short context | 7B models with reasonable context ✅ |
VRAM comparison (Llama-3.2-3B, ctx=2048):
| Mode | KV cache | Total VRAM | Min GPU needed |
|---|---|---|---|
| Default (f32) | ~512 MB | ~2.4 GB | 3 GB (tight) |
| TurboShimmy (int4) | ~72 MB | ~2.0 GB | 2.5 GB ✅ |
VRAM comparison (TinyLlama 1.1B, ctx=2048):
| Mode | KV cache | Total VRAM |
|---|---|---|
| Default (f32) | 88 MB | ~700 MB |
| TurboShimmy (int4) | ~13 MB | ~650 MB |
When to use TurboShimmy:
| Situation | Recommendation |
|---|---|
| 3B model on a 4 GB GPU | --kv-quant int4 — enables models that wouldn't fit otherwise |
| 7B model at ctx=4096+ | --kv-quant int4 — cuts KV from ~512 MB → ~72 MB |
| Short chat sessions (ctx ≤ 2048) | --kv-quant int4 — safe, no quality tradeoff |
| Long-form generation (ctx > 8192) | Default f32 — keep maximum quality |
| Windows GPU + TDR crashes on long prompts | --kv-quant int4 --prefill-chunk 8 |
How it works: Each K/V head vector is independently quantized to 4-bit integers with a per-vector F32 scale factor, encoded as packed nibbles by WGSL compute shaders. Dequantization happens on-the-fly when computing attention scores — also on GPU. The Airframe engine's helical context-shift operates directly on the packed INT4 representation. No CPU roundtrips at any step. Full architecture details in the Airframe engine.
Quality validation: Needle-in-a-haystack benchmarks on Llama-3.2-3B show zero retrieval degradation vs F32 at ctx≤2048 across all tested depths (15%, 50%, 85%). Full benchmark data and setup guide: TurboShimmy on the wiki.
Windows stability: Airframe v0.2.1 ships a
device.on_uncaptured_errorhandler so GPU validation errors surface as clean HTTP 500 responses instead of crashes. Use--prefill-chunk 8to prevent Windows TDR resets during long prefills on older GPUs (GTX 10xx/16xx series). v0.2.7 adds TDR transport with GPU timestamp pools for accurate dispatch timing, fixing TDR watchdog crashes during long prefill sequences.
Airframe v2.0 ships with GPU-verified support across 7 model architectures and 5 quantization types, covering the models most commonly run on consumer hardware. Context window is read directly from each model's GGUF metadata — no hardcoded limits.
| Model | Architecture | Quant | Size | Context | Min VRAM |
|---|---|---|---|---|---|
| TinyLlama-1.1B-Chat-v1.0 | Llama | Q4_0 | 638 MB | 2048 | ~800 MB |
| Llama-3.2-1B-Instruct | Llama | Q4_K_M | 770 MB | 131072* | ~1 GB |
| Llama-3.2-3B-Instruct | Llama | Q4_K_M | 1.9 GB | 131072* | ~2.5 GB |
| phi-2 | Phi-2 | Q4_K_M | 1.7 GB | 2048 | ~2.2 GB |
| gemma-2-2b-it | Gemma-2 | Q4_K_M | 1.6 GB | 8192 | ~2 GB |
| starcoder2-3b | StarCoder2 | Q4_K_M | 1.8 GB | 16384 | ~2.3 GB |
| gpt2 | GPT-2 | Q4_K_M | 107 MB | 1024 | ~200 MB |
* Llama-3.2's native context is 131072 tokens. Airframe reads this from GGUF and allocates KV cache accordingly. Use
SHIMMY_MAX_CTX=8192for a practical 8K window on consumer hardware (~256 MB KV cache for the 1B model).
GPU Math Verified means the Airframe GPU dequantization shader produces results matching the CPU reference implementation, independently confirmed for every tensor type in each model. This is done via quant_verify, which tests 512 elements per quantization type per model.
| Model | Architecture | Quant | Size | Status |
|---|---|---|---|---|
| deepseek-coder-6.7b-instruct | Llama | Q4_K_M | 3.9 GB | Pending remote GPU validation |
| deepseek-llm-7b-chat | Llama | Q4_K_M | 4.0 GB | Pending remote GPU validation |
| qwen2-7b-instruct | Qwen2 | Q4_K_M | 4.5 GB | Pending remote GPU validation |
| Phi-3.5-mini-instruct | Phi-3 | Q4_K_M | 2.3 GB | Requires fused QKV support (planned) |
| Type | GGML ID | Notes |
|---|---|---|
F32 |
0 | Raw floats — maximum precision |
F16 |
1 | Half-precision floats |
Q4_0 |
2 | 4-bit, 32-element blocks |
Q8_0 |
8 | 8-bit, 32-element blocks |
Q4_K |
12 | 4-bit K-quant superblocks (256 elements) — used in Q4_K_M GGUFs |
Q5_K |
13 | 5-bit K-quant superblocks — used alongside Q4_K in mixed-precision models |
Q6_K |
14 | 6-bit K-quant superblocks — typically used for output/embedding layers |
All types are implemented in both the GPU inference shader and a CPU reference implementation. GPU vs CPU agreement is validated for every type.
Auto-discovery is enabled. If Shimmy finds GGUF models in your HuggingFace cache, Ollama directory, LM Studio cache (~/.cache/lm-studio/models), or local ./models/ folder, it will register and serve them automatically. See docs/MODEL_EXPANSION.md for the full compatibility matrix.
The llama.cpp backend is removed in v2.0.0. The Airframe engine is the only inference path. See docs/MIGRATION_v2.md for the step-by-step migration guide.
Whether you're forking Shimmy or integrating it as a service, we provide complete documentation and integration templates.
# 1) Download pre-built binary
# Windows:
curl -L https://github.com/Michael-A-Kuykendall/shimmy/releases/latest/download/shimmy-windows-x86_64.exe -o shimmy.exe
set SHIMMY_BASE_GGUF=C:\path\to\model.gguf && ./shimmy.exe serve &
# Linux / macOS:
curl -L https://github.com/Michael-A-Kuykendall/shimmy/releases/latest/download/shimmy-linux-x86_64 -o shimmy && chmod +x shimmy
SHIMMY_BASE_GGUF=/path/to/model.gguf ./shimmy serve &
# 2) See registered models
./shimmy list
# 3) Smoke test the OpenAI API
curl -s http://127.0.0.1:11435/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{
"model":"tinyllama-1.1b",
"messages":[{"role":"user","content":"Say hi in 5 words."}],
"max_tokens":32
}' | jq -r '.choices[0].message.content'
No code changes needed - just change the API endpoint:
http://localhost:11435import OpenAI from "openai";
const openai = new OpenAI({
baseURL: "http://127.0.0.1:11435/v1",
apiKey: "sk-local", // placeholder, Shimmy ignores it
});
const resp = await openai.chat.completions.create({
model: "REPLACE_WITH_MODEL",
messages: [{ role: "user", content: "Say hi in 5 words." }],
max_tokens: 32,
});
console.log(resp.choices[0].message?.content);
from openai import OpenAI
client = OpenAI(base_url="http://127.0.0.1:11435/v1", api_key="sk-local")
resp = client.chat.completions.create(
model="REPLACE_WITH_MODEL",
messages=[{"role": "user", "content": "Say hi in 5 words."}],
max_tokens=32,
)
print(resp.choices[0].message.content)
~/.cache/lm-studio/models), and local dirsNote: MoE (Mixture of Experts) CPU offloading is on the Airframe roadmap. See docs/AIRFRAME_MOE_ROADMAP.md for the implementation plan.
Run 70B+ models on consumer hardware — coming to the Airframe engine. Track progress on the roadmap.
Perfect for: Large models (70B+), limited VRAM systems, cost-effective inference
v2.0.0: Download pre-built binaries with Airframe WebGPU engine included!
Pick your platform and download — no compilation needed, GPU acceleration included:
# Windows x64 (Airframe WebGPU engine) curl -L https://github.com/Michael-A-Kuykendall/shimmy/releases/latest/download/shimmy-windows-x86_64.exe -o shimmy.exe # Linux x86_64 (Airframe WebGPU engine) curl -L https://github.com/Michael-A-Kuykendall/shimmy/releases/latest/download/shimmy-linux-x86_64 -o shimmy && chmod +x shimmy # macOS ARM64 (Airframe with Metal backend via wgpu) curl -L https://github.com/Michael-A-Kuykendall/shimmy/releases/latest/download/shimmy-macos-arm64 -o shimmy && chmod +x shimmy # macOS Intel curl -L https://github.com/Michael-A-Kuykendall/shimmy/releases/latest/download/shimmy-macos-intel -o shimmy && chmod +x shimmy # Linux ARM64 (huggingface engine; Airframe cross-compilation not yet supported) curl -L https://github.com/Michael-A-Kuykendall/shimmy/releases/latest/download/shimmy-linux-aarch64 -o shimmy && chmod +x shimmy
That's it! The Airframe WebGPU adapter is selected automatically at runtime.
# Install from crates.io cargo install shimmy # Build from source (huggingface engine, no GPU) git clone https://github.com/Michael-A-Kuykendall/shimmy cd shimmy cargo build --release
Note: The Airframe GPU engine is a public crate on crates.io and builds from source automatically.
cargo install shimmyinstalls the huggingface engine variant from crates.io; for the full GPU build use the pre-built release binaries or clone and build withcargo build --release.
v2.0.0: Airframe uses WebGPU (wgpu) for GPU acceleration. No backend flags, no driver installation beyond standard OS graphics drivers.
Release binaries include the Airframe engine with WebGPU support compiled in:
| Platform | Download | GPU Backend | Notes |
|---|---|---|---|
| Windows x64 | shimmy-windows-x86_64.exe | WebGPU (wgpu) | NVIDIA, AMD, Intel |
| Linux x86_64 | shimmy-linux-x86_64 | WebGPU (wgpu) | NVIDIA, AMD, Intel |
| macOS ARM64 | shimmy-macos-arm64 | Metal (via wgpu) | Apple Silicon |
| macOS Intel | shimmy-macos-intel | Metal (via wgpu) | Intel Mac |
| Linux ARM64 | shimmy-linux-aarch64 | huggingface only | ARM cross-build |
Airframe uses wgpu's adapter enumeration. On first launch it selects the best available GPU adapter for your system — discrete GPU preferred over integrated, integrated over CPU fallback. No configuration needed.
# Check selected adapter shimmy gpu-info # Start serving (GPU adapter auto-selected) shimmy serve
SHIMMY_MAX_CTX overrides the context window at the engine level. When set above the model's native window, Airframe automatically engages YaRN RoPE scaling and resizes the KV cache accordingly.
# 4096-token context with YaRN (2x native window for TinyLlama) SHIMMY_BASE_GGUF=/path/to/model.gguf SHIMMY_MAX_CTX=4096 shimmy serve # 8192 tokens (4x native, higher RoPE compression) SHIMMY_BASE_GGUF=/path/to/model.gguf SHIMMY_MAX_CTX=8192 shimmy serve
Note: Extended context beyond 4096 is functional but not yet as deeply validated as the native 2048-token window. Accepted range is 512–131072. Values outside that range are silently ignored and 2048 is used.
Airframe allocates VRAM at load time: weights + KV cache. The KV cache is F32 and scales linearly with context length (n_layers × n_kv_heads × head_dim × ctx × 2 × 4 bytes).
TinyLlama 1.1B Q4_0 — the v2.0 validated path:
Context (SHIMMY_MAX_CTX) |
KV cache | Weights | Total | Min VRAM |
|---|---|---|---|---|
| 2048 (default) | ~88 MB | ~638 MB | ~726 MB | ~800 MB |
| 4096 | ~176 MB | ~638 MB | ~814 MB | ~900 MB |
| 8192 | ~352 MB | ~638 MB | ~990 MB | ~1.1 GB |
| 16384 | ~704 MB | ~638 MB | ~1.3 GB | ~1.5 GB |
Integrated graphics (Intel Iris, Apple M-series unified memory, AMD Vega) running at 2048 context is ~800 MB — comfortably inside the 2 GB allocation most integrated GPUs share with system RAM.
Scaling up to larger models (architecture and quant support required — see docs/MODEL_EXPANSION.md):
| Model | Quant | Weights | KV @ 2048 ctx | Min VRAM |
|---|---|---|---|---|
| Llama 3.2 1B | Q4_0 | ~636 MB | ~128 MB | ~900 MB |
| Llama 3.2 3B | Q4_0 | ~1.9 GB | ~448 MB | ~2.5 GB |
| Mistral 7B | Q4_K_M | ~4.1 GB | ~512 MB | ~5 GB |
| Llama 3 8B | Q4_K_M | ~4.7 GB | ~512 MB | ~5.5 GB |
The KV cache formula for any model: n_layers × n_kv_heads × head_dim × ctx × 2 × 4 bytes. Multiply the 2048 baseline by your SHIMMY_MAX_CTX multiplier to get the extended context allocation.
Shimmy auto-discovers models from:
~/.cache/huggingface/hub/~/.ollama/models/./models/SHIMMY_BASE_GGUF=path/to/model.gguf# Primary validated model for Airframe v2.0 huggingface-cli download TheBloke/TinyLlama-1.1B-Chat-v1.0-GGUF \ --include "tinyllama-1.1b-chat-v1.0.Q4_0.gguf" --local-dir ./models/ # Alternative 1B — also fits in the same hardware envelope huggingface-cli download bartowski/Llama-3.2-1B-Instruct-GGUF \ --include "*Q4_K_M*" --local-dir ./models/
# Auto-allocates port to avoid conflicts shimmy serve # Or use manual port shimmy serve --bind 127.0.0.1:11435
Point your development tools to the displayed port — VSCode Copilot, Cursor, Continue.dev all work instantly.
cargo install shimmy (installs huggingface engine; for Airframe GPU, use GitHub Releases binaries)npm install -g shimmy-js (planned)pip install shimmy (planned)docker pull shimmy/shimmy:latest (coming soon)Full compatibility confirmed! Shimmy works on macOS with Metal GPU acceleration via wgpu.
# Install from crates.io (huggingface engine) cargo install shimmy # For Airframe GPU engine, download the macOS binary from GitHub Releases: curl -L https://github.com/Michael-A-Kuykendall/shimmy/releases/latest/download/shimmy-macos-arm64 -o shimmy && chmod +x shimmy
✅ Verified working:
{
"github.copilot.advanced": {
"serverUrl": "http://localhost:11435"
}
}
{
"models": [{
"title": "Local Shimmy",
"provider": "openai",
"model": "your-model-name",
"apiBase": "http://localhost:11435/v1"
}]
}
Works out of the box - just point to http://localhost:11435/v1
I built Shimmy to retain privacy-first control on my AI development and keep things local and lean.
This is my commitment: Shimmy stays MIT licensed, forever. If you want to support development, sponsor it. If you don't, just build something cool with it.
💡 Shimmy saves you time and money. If it's useful, consider sponsoring for $5/month — less than your Netflix subscription, infinitely more useful for developers.
GET /health - Health checkPOST /v1/chat/completions - OpenAI-compatible chat (streaming supported)POST /v1/completions - OpenAI-compatible text completionsGET /v1/models - List available modelsPOST /api/generate - Shimmy native APIGET /ws/generate - WebSocket streaming| Variable | Default | Description |
|---|---|---|
SHIMMY_BASE_GGUF |
(auto-discover) | Path to GGUF model file loaded as the default model |
SHIMMY_PORT |
8080 |
Port to listen on (Airframe server binary) |
SHIMMY_BIND_ADDRESS |
0.0.0.0:8080 |
Full bind address (overrides port) |
SHIMMY_MAX_CTX |
(from GGUF) | Override context window; activates YaRN RoPE scaling when above model native |
SHIMMY_MODEL_PATHS |
(see Zero Config) | Colon-separated extra model search paths |
SHIMMY_ENGINE_BACKEND |
airframe |
airframe (only engine; llama.cpp removed v2.0) |
SHIMMY_ROPE_SCALE |
(auto) | Override computed YaRN scale factor |
SHIMMY_KV_QUANT |
f32 |
KV cache quantization: f32 (default) or int4 (TurboShimmy) |
SHIMMY_PREFILL_CHUNK |
64 |
Tokens per prefill dispatch. Set to 8 on Windows if you see GPU TDR resets on long prompts |
RUST_BACKTRACE |
(off) | Set to 1 to print crash backtraces |
shimmy serve # Start server (auto port allocation) shimmy serve --bind 127.0.0.1:8080 # Manual port binding shimmy serve --gpu-backend auto # WebGPU adapter auto-select (default) shimmy serve --gpu-backend cpu # Force CPU (disable GPU) shimmy serve --kv-quant int4 # Enable TurboShimmy INT4 KV cache compression shimmy serve --kv-quant int4 --prefill-chunk 8 # INT4 + Windows TDR prevention shimmy list # Show available models shimmy discover # Refresh model discovery shimmy generate --name X --prompt "Hi" # Test generation shimmy probe model-name # Verify model loads shimmy gpu-info # Show selected WebGPU adapter
scripts/release-coordinated.shDoes Shimmy work on my GPU? Shimmy uses WebGPU (via the Airframe engine) which runs on Vulkan, D3D12, and Metal — covering NVIDIA, AMD, Intel, and Apple Silicon. No CUDA required. See GPU requirements in TROUBLESHOOTING.md if you hit adapter errors.
What's the difference between Shimmy and llama.cpp / Ollama? Shimmy is written in pure Rust with no C++ toolchain dependency. The Airframe engine runs WGSL compute shaders compiled at startup — no pre-built binaries, no driver version pinning. The result is faster startup, lower memory overhead, and deterministic output. See the GPU Pipeline doc for internals.
Why do I need SHIMMY_BASE_GGUF or LIBSHIMMY_MODEL_PATH?
If you don't set these, Shimmy auto-discovers models in standard directories (~/.cache/huggingface, ~/.ollama, ~/lm-studio/models, ~/.cache/lm-studio/models, ~/Library/Application Support/LMStudio). Set SHIMMY_BASE_GGUF to override and point directly at a specific GGUF file.
Can I run multiple models at once? Not currently — Shimmy loads one model per server instance. To serve multiple models, run multiple server instances on different ports. Hot-swapping models (reload without restart) is on the roadmap.
Why does generation stop before max_tokens?
The model reached a natural end-of-sequence token. For chat models this is expected behavior — the model signals it's done. If you want to force longer output, increase max_tokens and set temperature > 0. If generation stops on the wrong token, the model may be using the wrong chat template — see CHAT_TEMPLATES.md.
Is there streaming support?
Set "stream": true in your request. Shimmy returns Server-Sent Events in the standard OpenAI streaming format.
Q4_K_M vs Q4_0 — which should I use?
Q4_K_M (K-quant) is consistently better quality than Q4_0 for the same file size. Use Q4_0 only when you need maximum compatibility or the model isn't available in K-quant. See QUANTIZATION.md for the full analysis.
Can I extend the context window beyond what the model was trained on?
Yes — set SHIMMY_MAX_CTX to any value. Airframe applies YaRN scaling automatically when the requested context exceeds the model's native context. Quality degrades gradually beyond 2× the native context. See EXTENDED_CONTEXT.md.
Full documentation lives in docs/. Use this table to find what you need:
| Document | Description |
|---|---|
| docs/quickstart.md | 5-minute getting started guide |
| docs/MIGRATION_v2.md | Migrating from Shimmy v1.x |
| docs/CONFIGURATION.md | All environment variables and config options |
| docs/WINDOWS_GPU_BUILD_GUIDE.md | Windows-specific build instructions |
| Document | Description |
|---|---|
| docs/API.md | Complete API endpoint reference |
| docs/OPENAI_COMPAT.md | OpenAI compatibility matrix — what's supported |
| docs/INTEGRATION.md | Integrating with LangChain, OpenAI SDKs, etc. |
| docs/EXAMPLES.md | Runnable code examples |
| docs/CROSS_COMPILATION.md | Building for other targets (ARM, Linux from Windows) |
| Document | Description |
|---|---|
| docs/ARCHITECTURE.md | System-level architecture and component map |
| docs/GPU_PIPELINE.md | Bindless GPU architecture, WGSL shaders, dispatch patterns |
| docs/QUANTIZATION.md | Q4_0, Q8_0, K-quant formats — bit-level internals |
| docs/EXTENDED_CONTEXT.md | YaRN RoPE scaling, VRAM math, context extension |
| docs/CHAT_TEMPLATES.md | Chat template auto-detection and format reference |
| docs/MODEL_EXPANSION.md | Model onboarding protocol and acceptance gates |
| Document | Description |
|---|---|
| docs/TROUBLESHOOTING.md | Diagnostic guide for GPU errors, model failures, port conflicts |
| docs/PERFORMANCE.md | Performance tuning and token/sec benchmarks |
| docs/FEATURES.md | Complete feature list |
| Document | Description |
|---|---|
| docs/METHODOLOGY.md | Engineering methodology and quality standards |
| docs/REGRESSION_TESTING.md | Regression testing approach |
| docs/ppt-invariant-testing.md | Property-based and invariant testing details |
| docs/METRICS.md | Observability and metrics reference |
🌟 stars and climbing fast
⏱ <1s startup
🦀 100% Rust, no Python
🔥 Hacker News • Front Page Again • IPE Newsletter
Companies: Need invoicing? Email michaelallenkuykendall@gmail.com
| Tool | Startup Time | Memory Usage | OpenAI API |
|---|---|---|---|
| Shimmy | <100ms | 50MB | 100% |
| Ollama | 5-10s | 200MB+ | Partial |
Shimmy maintains high code quality through comprehensive testing:
Run the complete test suite:
# Full test suite (default features = GPU engine) cargo test --features airframe,huggingface # Quick CPU-only tests (no GPU required) cargo test --lib --no-default-features --features huggingface -- --test-threads=1
See our testing approach for technical details.
MIT License - forever and always.
Philosophy: Infrastructure should be invisible. Shimmy is infrastructure.
Testing Philosophy: Reliability through comprehensive validation and property-based testing.
Forever maintainer: Michael A. Kuykendall Promise: This will never become a paid product Mission: Making local model inference simple and reliable
more like this
A to-do list that runs your Claude Code agents — capture anywhere, dispatch in parallel, review from your phone.
本地优先的 macOS AI Agent 信号灯:状态栏 + 桌面悬浮信号灯,自动监控 Codex / Claude Code。Local menu bar and floating desktop status lights for A…
Open-source Markdown workbench: live preview, GitHub-accurate themes, Mermaid diagrams, and page-perfect PDF export. No…
search projects, people, and tags