Skip to content

Instantly share code, notes, and snippets.

# Solo MCP multi-agent orchestrator guide
Last investigated: 2026-04-30
Project: `Desktop 2` (`project_id: 3`), path `/Users/aaron/Code/soloterm/desktop-2`Current actor: Solo agent process `2992` (`Codex W`), actor `mcp-e0f2bae3b20314f1`
## Mental model
Solo is a project-scoped control plane for commands, terminals, and agent sessions. The MCP tools let an orchestrator agent discover processes, spawn workers, send prompts or shell input, read terminal output, coordinate shared state, and schedule wake-ups without running polling loops.
Use Solo as the durable outer loop:
@logical-and
logical-and / README.md
Last active March 7, 2026 23:08 — forked from pcworld/_README.md
Linux Spotify Ad Mute

We all love Spotify, but sometimes people (like us) want to throw a party without having to listen to interrupting ads before having bought Spotify Premium. Well, with this killer project, now you can!

This is for testing purposes ONLY! Spotify is a fantastic service and worth every penny. This script is NOT meant to circumvent buying premium! Please do consider switching to premium to support Spotify - especially if you're going to use it on mobile. If the script does not work for you, help us improve it!

Usage

wget -O spotify-mute-ads.sh https://gist.githubusercontent.com/logical-and/825bab160d604d82bf6ad9ebd3a6410d/raw/84f77518f6fa8980e73fcf1fadd30d223f2100a1/spotify-mute-ads.sh
chmod ug+x spotify-mute-ads.sh
./spotify-mute-ads.sh 
@dbfin
dbfin / grub2_options_update_f.sh
Last active April 16, 2026 17:26
Update grub in Fedora
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
@ryanpitts
ryanpitts / gist:1304725
Created October 21, 2011 19:34
GROUP BY and Select MAX from each group in Django, 2 queries
'''
given a Model with:
category = models.CharField(max_length=32, choices=CATEGORY_CHOICES)
pubdate = models.DateTimeField(default=datetime.now)
<other fields>
Fetch the item from each category with the latest pubdate.
'''