Skip to content

Instantly share code, notes, and snippets.

View Incipiens's full-sized avatar

Incipiens

View GitHub Profile
@Incipiens
Incipiens / lcc.sh
Created March 20, 2026 16:10
This is my script that I use for launching an instance of Claude Code using my local LLM, and it was written for an XDA article. Save it, edit the IP and port, and mark as executable to use.
#!/usr/bin/env bash
# lcc - Local Claude Code launcher
# Points Claude Code at a local LLM served by llama.cpp on your GB10 device
#
# Usage:
# lcc <modelname> — launch Claude Code with the specified model
# lcc <modelname> [args] — pass additional arguments to claude
# lcc — show help/launch with model if one is available
#
# Prerequisites:
#!/bin/sh
# Proxmox VE 9.1 - LanguageTool LXC creator and installer
# Written by Adam Conway 2025
set -u
# ============================================================================
# COLORS & OUTPUT HELPERS
# ============================================================================
GN="$(printf '\033[0;32m')" YW="$(printf '\033[0;33m')" CY="$(printf '\033[0;36m')"