Skip to content

Instantly share code, notes, and snippets.

@rafaelquintanilha
rafaelquintanilha / slack-ai-teammates-openclaw.md
Created February 24, 2026 19:05
Running Multiple AI Agents as Slack Teammates via OpenClaw

Running Multiple AI Agents as Slack Teammates via OpenClaw

Goal: Run multiple AI agents as real Slack teammates — each with its own identity, able to DM independently or participate in shared channels — while keeping orchestration centralized through one primary agent.

Architecture

Use one Slack app/bot per agent identity. For example, if you have four agents:

Agent role OpenClaw agent ID Slack bot name
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active April 30, 2026 00:44
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@jleclanche
jleclanche / weather.py
Created May 13, 2012 19:05
Quick python weather script using Google's Weather API
#!/usr/bin/env python
# encoding: utf-8
import sys
from argparse import ArgumentParser
from xml.dom import minidom
try:
from urllib.request import urlopen
from urllib.parse import urlencode
except ImportError:
@mattm7n
mattm7n / gist:1405067
Created November 29, 2011 14:54
Monitor DHCP traffic with tcpdump
# Monitoring on interface eth0
tcpdump -i eth0 -n port 67 and port 68