Skip to content

Instantly share code, notes, and snippets.

View thimslugga's full-sized avatar
:octocat:

Adam Kaminski thimslugga

:octocat:
View GitHub Profile
@thimslugga
thimslugga / INSTALL.md
Created April 2, 2026 03:50 — forked from kibotu/INSTALL.md
How to Run Qwen3.5 Locally With Claude Code (No API Bills, Full Agentic Coding)

Run Qwen 3.5 Locally with Claude Code — Zero API Bills, Full Agentic Coding

Your Mac has a GPU. Your Mac has RAM. Why are you paying someone else to think?

This guide gets you a fully local agentic coding setup: Claude Code talking to Qwen 3.5-35B-A3B via llama.cpp, all running on your Apple Silicon Mac. No API keys. No cloud. No surprise invoices. Just you, your M-series chip, and 35 billion parameters doing your bidding on localhost.

Based on this article.


@thimslugga
thimslugga / tmux_cheat_sheet.md
Created March 29, 2026 11:55 — forked from karenyyng/tmux_cheat_sheet.md
common work flow of tmux

Title: Tmux project sessions
Date: 2014-12-24 17:00 Tags: Tmux, learn-X-in-Y-minutes
Author: K. Y. Ng

This is a tutorial for setting up Tmux for saving terminal project sessions.

Tmux helps you emulate several shell sessions within the same terminal window.

@thimslugga
thimslugga / README.md
Last active March 29, 2026 13:08
Agent Teams Setup

Claude Code Agents

Overview

mkdir -p ~/workspace/myproject

cd ~/workspace/myproject

claude-agents.sh # start or reattach a session

Second Brain: Obsidian + Claude (2026)

Research notes for @adam__isom's project — building a personal Second Brain from an empty directory, Claude, and a minimal Skill.


Why Obsidian over bare markdown

You already run a bare-markdown system at work. Obsidian is the same .md files in a folder — the .obsidian/ config directory is the only addition. What you actually gain:

@thimslugga
thimslugga / claude-code-presentation.md
Created March 27, 2026 14:34 — forked from enachb/claude-code-presentation.md
Claude Code Extension Points - Team Presentation

Claude Code Extension Points

A Team Presentation (30-45 min)


Agenda

  1. Prerequisites & Setup (5 min)
  2. What is Claude Code? (5 min)
  3. Extension Points Overview (5 min)

Obsidian MCP Setup — FactoryLM_OS

Overview

Connected Claude Code to the FactoryLM_OS Obsidian vault via MCP (Model Context Protocol), enabling AI-powered vault search, reading, and interaction directly from the CLI.

What Was Done

1. Obsidian Local REST API Plugin (already installed)

@thimslugga
thimslugga / README.md
Created March 27, 2026 13:57 — forked from mrf/README.md
Claude Code multi-session worktree skills — tmux + git worktrees for parallel AI coding sessions

Claude Code Multi-Session Worktree Skills

A collection of Claude Code custom skills for managing parallel coding sessions using tmux and git worktrees. Each task gets its own isolated branch, directory, and tmux window — no conflicts, easy cleanup.

What's Included

File Type Description
tmux-spawn.md Command Spawn a new tmux window with Claude Code in an isolated git worktree
worktree-SKILL.md Skill Manage worktree lifecycle: create, list, clean, clean-all
@thimslugga
thimslugga / claude-code-agent-playbook.md
Created March 27, 2026 13:49 — forked from potomak/claude-code-agent-playbook.md
Claude Code Agent Playbook — how to bootstrap autonomous agents with Claude Code

Claude Code Agent Playbook

A distilled guide for bootstrapping autonomous agents on top of Claude Code.

TL;DR: An agent is a directory with a CLAUDE.md that gives Claude a role, a startup/shutdown ritual, and a map of files and skills. The rest is just files.


Table of Contents

@thimslugga
thimslugga / data.json
Created March 17, 2026 14:25
Obsidian Agent Client Configuration (ACP)
{
"claude": {
"id": "claude-code-acp",
"displayName": "Claude Code",
"apiKey": "",
"command": "",
"args": [],
"env": []
},
"codex": {
@thimslugga
thimslugga / kiro-cli-dispatch-failure-rca.md
Created March 14, 2026 19:39 — forked from Chen188/kiro-cli-dispatch-failure-rca.md
Deep Investigation: `error: dispatch failure` in Kiro CLI / Amazon Q Developer CLI

Deep Investigation: error: dispatch failure in Kiro CLI / Amazon Q Developer CLI

Executive Summary

The error: dispatch failure is a network-level error that occurs when the HTTP client fails to send a request to the AWS backend services. This error originates from the AWS Smithy SDK's HTTP client layer and indicates a failure in the network transport layer, not an application-level error.

Error Origin and Code Path

1. Error Definition Location