Skip to content

Instantly share code, notes, and snippets.

View ChaoLiangSuper's full-sized avatar

Chao Liang ChaoLiangSuper

  • Melbourne
View GitHub Profile
@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
@Kartones
Kartones / postgres-cheatsheet.md
Last active March 13, 2026 05:30
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)