Skip to content

Instantly share code, notes, and snippets.

View 0x4a5e1e4baab's full-sized avatar
💭
Coding the next web

0x4a5e1e4baab

💭
Coding the next web
View GitHub Profile
@0x4a5e1e4baab
0x4a5e1e4baab / openclaw-guide.md
Created February 9, 2026 23:55 — forked from digitalknk/openclaw-guide.md
Running OpenClaw Without Burning Money, Quotas, or Your Sanity

Running OpenClaw Without Burning Money, Quotas, or Your Sanity

TL;DR

OpenClaw is useful, but most of the pain people run into comes from letting one model do everything, chasing hype, or running expensive models in places that don't need them.

What worked for me was treating OpenClaw like infrastructure instead of a chatbot. Keep a cheap model as the coordinator, use agents for real work, be explicit about routing, and make memory and task state visible. Cheap models handle background work fine. Strong models are powerful when you call them intentionally instead of leaving them as defaults.

You don't need expensive hardware, and you don't need to host giant local models to get value out of this. Start small, get things stable before letting it run all the time, and avoid the hype train. If something feels broken, check the official docs and issues first. OpenClaw changes fast, and sometimes it really is just a bug.

@0x4a5e1e4baab
0x4a5e1e4baab / inventory2json.py
Created July 8, 2020 15:37 — forked from sivel/inventory2json.py
Ansible inventory to dynamic inventory JSON output, accepts all inventory input formats
import sys
import json
from ansible.parsing.dataloader import DataLoader
try:
from ansible.inventory.manager import InventoryManager
A24 = True
except ImportError:
from ansible.vars import VariableManager
@0x4a5e1e4baab
0x4a5e1e4baab / README.md
Last active August 8, 2019 19:50 — forked from kenny-evitt/add-dynamic-group-var.bash
Files for Ansible for supporting dynamic host variables retrieved from a local SQLite database