hide-club — for Claude Code hide-club, laughtrack, community, for Claude Code, ide skills, visible = false, _prisma_migrations, close-club, status='active', closed_at=NULL

v1.0.0

About this Skill

Ideal for AI agents that need sets a club to visible = false in the database, creates the corresponding prisma. hide-club is an AI agent skill for sets a club to visible = false in the database, creates the corresponding prisma.

Features

Sets a club to visible = false in the database, creates the corresponding Prisma
migration file, and records it in prisma migrations.
When to use /hide-club vs /close-club:
/hide-club — reversible hiding while the club's fate is still open. Use for:
duplicate records pending merge, clubs being rehomed as production companies,

# Core Topics

gioe gioe
[0]
[0]
Updated: 5/1/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Ideal for AI agents that need sets a club to visible = false in the database, creates the corresponding prisma. hide-club is an AI agent skill for sets a club to visible = false in the database, creates the corresponding prisma.

Core Value

hide-club helps agents sets a club to visible = false in the database, creates the corresponding prisma. Hide Club Sets a club to visible = false in the database, creates the corresponding Prisma migration file, and records it in prisma migrations. This AI agent skill supports Claude Code, Cursor

Ideal Agent Persona

Ideal for AI agents that need sets a club to visible = false in the database, creates the corresponding prisma.

Capabilities Granted for hide-club

Applying Sets a club to visible = false in the database, creates the corresponding Prisma
Applying migration file, and records it in prisma migrations
Applying When to use /hide-club vs /close-club:

! Prerequisites & Limits

  • Requires repository-specific context from the skill documentation
  • Works best when the underlying tools and dependencies are already configured

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is hide-club?

Ideal for AI agents that need sets a club to visible = false in the database, creates the corresponding prisma. hide-club is an AI agent skill for sets a club to visible = false in the database, creates the corresponding prisma.

How do I install hide-club?

Run the command: npx killer-skills add gioe/laughtrack. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for hide-club?

Key use cases include: Applying Sets a club to visible = false in the database, creates the corresponding Prisma, Applying migration file, and records it in prisma migrations, Applying When to use /hide-club vs /close-club:.

Which IDEs are compatible with hide-club?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for hide-club?

Requires repository-specific context from the skill documentation. Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add gioe/laughtrack. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use hide-club immediately in the current project.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

hide-club

Install hide-club, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Hide Club

Sets a club to visible = false in the database, creates the corresponding Prisma migration file, and records it in _prisma_migrations.

When to use /hide-club vs /close-club:

  • /hide-club — reversible hiding while the club's fate is still open. Use for: duplicate records pending merge, clubs being rehomed as production companies, venues temporarily pulled for data-quality review. Leaves status='active' and closed_at=NULL so the club can be restored by flipping visible back to true.
  • /close-club — permanent closure for confirmed-defunct venues. Use when multiple signals establish the venue is gone (Yelp CLOSED, domain dead, platform API 404, no social media activity). Sets status='closed', visible=false, and closed_at=NOW() — the richer metadata lets downstream reporting distinguish "dead" from "hidden pending review."

Usage

/hide-club <club name or ID>

Examples:

  • /hide-club 413
  • /hide-club BJ's Mobile Drive-In Theater

Step 1: Resolve the Club ID

If the argument is numeric, use it directly as the club ID.

If the argument is a name, look it up:

bash
1"$(git rev-parse --show-toplevel)/apps/scraper/.venv/bin/python3" -c " 2import os, subprocess 3from dotenv import load_dotenv 4scraper_dir = subprocess.check_output(['git', 'rev-parse', '--show-toplevel'], text=True).strip() + '/apps/scraper' 5load_dotenv(scraper_dir + '/.env') 6import psycopg2 7conn = psycopg2.connect( 8 host=os.environ['DATABASE_HOST'], 9 user=os.environ['DATABASE_USER'], 10 password=os.environ['DATABASE_PASSWORD'], 11 dbname=os.environ['DATABASE_NAME'], 12 port=int(os.environ.get('DATABASE_PORT', '5432')), 13 sslmode='require' 14) 15cur = conn.cursor() 16cur.execute(\"SELECT id, name, visible FROM clubs WHERE LOWER(name) LIKE LOWER(%s)\", ('%<name>%',)) 17for row in cur.fetchall(): 18 print(f' id={row[0]} name={row[1]} visible={row[2]}') 19conn.close() 20"

If multiple matches are returned, ask the user to confirm which club ID to hide. If the club is already hidden (visible=false), inform the user and stop.

Step 2: Hide the Club

bash
1make -C "$(git rev-parse --show-toplevel)/apps/scraper" hide-club ID=<club_id>

This works from any directory within the repo.

This command:

  1. Sets visible = false in the database
  2. Creates a Prisma migration file at apps/web/prisma/migrations/<timestamp>_hide_<slug>/migration.sql
  3. Records the migration in _prisma_migrations

Step 3: Report

Print the migration file path so it can be committed:

Club <id> (<name>) hidden.
Migration: apps/web/prisma/migrations/<migration_name>/migration.sql

If this was invoked as part of a /tusk workflow, the migration file should be committed using tusk commit with the appropriate task ID and criteria.

Related Skills

Looking for an alternative to hide-club or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer