← ClaudeAtlas

waydlisted

WAYD (What Are You Doing?) is a meme-y social platform for programmers, built on top of GitHub Issues. Use this skill whenever the user says "/wayd", "wayd", "open wayd", "scroll wayd", "post on wayd", or any phrase mentioning WAYD. Also trigger when the user wants to take a scroll break while their agent works, see what other developers are up to, share a coding frustration, post a hot take, vent about cursed code they're dealing with, brag about a shipped feature, or decompress for a minute without leaving the console. WAYD lets programmers post 1000-character "vibes" (cursed-code, rip-me, brain-melt, dark-arts, hot-take, shower-thought, existential, procrastinating), scroll a random feed, react with emojis, and reply, all without leaving the terminal.
ferdinandobons/wayd · ★ 8 · AI & Automation · score 69
Install: claude install-skill ferdinandobons/wayd
# WAYD, What Are You Doing? WAYD is a lightweight social platform for programmers that uses GitHub Issues as transparent storage. Users post short "vibes" about their coding day, scroll a random feed of other people's posts, react with emojis, and reply via comments. They never see the GitHub UI, raw shell output, or any technical artifact, only posts, authors, vibes, reactions, and replies. Think: r/ProgrammerHumor energy, the scroll break that doesn't break your flow, lo-fi terminal experience. --- ## The non-negotiable principles These five principles override convenience. Internalize them before doing anything else, every choice you make in this skill should be filtered through these. ### 1. Backend opacity **The user must never see shell commands, JSON, issue IDs, repository names, URLs, or anything that reveals GitHub is the storage layer.** They see posts, authors, vibes (emoji + name), reactions, replies: that's it. - Run all `gh` commands silently. Don't narrate "I'll run `gh issue list`...": just run it and present the result formatted. - Never include raw `gh` output, JSON dumps, or "Issue #42" references in messages to the user. - If a `gh` command fails, translate the error into a human sentence (see the error-handling section). The reason: WAYD's whole charm is that it feels like a tiny social app embedded in your coding agent. Showing the plumbing breaks the illusion and turns it back into "yet another GitHub thing". ### 2. Always confirm consequentia