Skip to content

Instantly share code, notes, and snippets.

@srmdn
srmdn / README.md
Last active May 29, 2026 23:02
Oh My OpenAgent (oMo) config + guide - model routing, free tier notices, and setup instructions

Oh My OpenAgent (oMo) Configuration Guide

For the solo builders out there. Keeping up with AI moves fast — really fast. If you're like me, grinding alone, shipping projects on weekends, and watching your wallet, you know the pain. You need tools that punch above their weight without punching a hole in your bank account. This config is how I stay in the race: premium models when it matters, free tiers when it doesn't. Same quality, fraction of the cost. Let's catch up to this AI era together.

⚠️ Critical: Read Before Using

This config assumes you have both files set up correctly:

  1. oh-my-openagent.json~/.config/opencode/oh-my-openagent.json (this gist)
  2. opencode.json~/.config/opencode/opencode.json — you MUST add the Qwen status override section, otherwise multimodal-looker and ultrabrain fallbacks will fail.
@fazzledev
fazzledev / functions.sh
Created March 14, 2026 12:32
omo-models: Simple bash profile switcher for Oh My OpenCode (Go / Claude / Hybrid)
# OpenCode model family switcher
omo-models() {
local config_dir="$HOME/.config/opencode"
local current=""
# Detect current config
if grep -q "opencode-go" "$config_dir/oh-my-opencode.json" 2>/dev/null && grep -q "anthropic/claude" "$config_dir/oh-my-opencode.json" 2>/dev/null; then
current="hybrid"
elif grep -q "opencode-go" "$config_dir/oh-my-opencode.json" 2>/dev/null; then
current="go"
@cbrunnkvist
cbrunnkvist / oh-my-opencode.json
Last active May 12, 2026 18:26
Low-cost OpenCode Zen defaults for OmO
{
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
"agents": {
"sisyphus": { "model": "opencode/minimax-m2.5" },
"hephaestus": { "model": "opencode/kimi-k2.5" },
"oracle": { "model": "opencode/glm-5" },
"librarian": { "model": "opencode/minimax-m2.5" },
"explore": { "model": "opencode/gpt-5-nano" },
"multimodal-looker": { "model": "opencode/gpt-5.1" },
"prometheus": { "model": "opencode/kimi-k2.5" },
@virattt
virattt / langgraph-financial-agent.ipynb
Created January 8, 2024 22:01
LangGraph-financial-agent.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@CodeByKwakes
CodeByKwakes / README.md
Last active July 12, 2024 20:40
Learn Angular #angular
@usametov
usametov / topics-search.txt
Created February 16, 2021 01:50
how to search github.com for multiple topics
Github.com ui .currently does not natively supoport search for multiple topic tags as of now. However their api allows you to query multiple tags. Below is a simple example to query github.com with ecs and go topic tags.
curl -H "Accept: application/vnd.github.mercy-preview+json" \
https://api.github.com/search/repositories?q=topic:ecs+topic:go
Response from the github can be rather verbose so lets filter only relavant info such repo url and description.
curl -H "Accept: application/vnd.github.mercy-preview+json" \
https://api.github.com/search/repositories\?q\=topic:ecs+topic:go | jq '.items[] | {url:.url, description:.description}'
@umonaca
umonaca / cf-mastodon-proxy.js
Last active July 12, 2023 17:51
Unfinished Mastodon Cloudflare Worker Proxy
// Website you intended to retrieve for users.
//const upstream = 'www.google.com'
const upstream = '5a1eddaec0e1.ngrok.io'
// Custom pathname for the upstream website.
const upstream_path = '/'
// Website you intended to retrieve for users using mobile devices.
//const upstream_mobile = 'www.google.com'
const upstream_mobile = '5a1eddaec0e1.ngrok.io'
@kvnxiao
kvnxiao / awesome-selfhosted-sorted-by-stars.md
Last active July 27, 2026 09:17
awesome-selfhosted-sorted-by-stars.md

Awesome-Selfhosted

Awesome

Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers.

This is a list of Free Software network services and web applications which can be hosted locally. Non-Free software is listed on the Non-Free page.

See Contributing.

@erogol
erogol / tts_example.ipynb
Last active July 19, 2025 20:07
TTS_example.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@krishna-acondy
krishna-acondy / resource.service.ts
Last active July 3, 2024 11:50
Generic Angular HTTP Resource Service
export class ResourceService<T extends Resource> {
constructor(
private httpClient: HttpClient,
private url: string,
private endpoint: string,
private serializer: Serializer) {}
public create(item: T): Observable<T> {
return this.httpClient
.post<T>(`${this.url}/${this.endpoint}`, this.serializer.toJson(item))