From Lubby
Pause or resume Lubby presence sharing. Use when the user wants to go invisible on Lubby or turn sharing back on.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lubby:pause [on|off][on|off]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Toggle the `paused` flag in `~/.lubby/config.json`. While paused, the hook script sends nothing at all.
Toggle the paused flag in ~/.lubby/config.json. While paused, the hook script sends nothing at all.
$ARGUMENTS = on (or empty): pause sharing (paused: true)$ARGUMENTS = off: resume sharing (paused: false)node -e '
const fs = require("fs"), p = process.env.HOME + "/.lubby/config.json";
let c = {}; try { c = JSON.parse(fs.readFileSync(p, "utf8")); } catch { console.log("not configured, run /lubby:login"); process.exit(0); }
c.paused = process.argv[1] !== "off";
fs.writeFileSync(p, JSON.stringify(c, null, 2) + "\n", { mode: 0o600 });
console.log(c.paused ? "Lubby presence paused" : "Lubby presence resumed");
' "$ARGUMENTS"
When pausing, also clear the user's current presence so they disappear from the dashboard immediately. Send a cancelled event before flipping the flag:
echo '{}' | node "${CLAUDE_PLUGIN_ROOT}/scripts/lubby-event.mjs" cancelled
(Run the cancelled event first, then write paused: true.) Confirm the final state to the user.
npx claudepluginhub aliwesome/lubby-plugin --plugin lubbyProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.