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

Über diesen Skill

Geeigneter Einsatz: Ideal for AI agents that need sets a club to visible = false in the database, creates the corresponding prisma. Lokalisierte Zusammenfassung: # 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, and Windsurf workflows.

Funktionen

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,

# Kernthemen

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

Skill Overview

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

Geeigneter Einsatz: Ideal for AI agents that need sets a club to visible = false in the database, creates the corresponding prisma. Lokalisierte Zusammenfassung: # 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, and Windsurf workflows.

Warum diese Fähigkeit verwenden

Empfehlung: 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

Am besten geeignet für

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

Handlungsfähige Anwendungsfälle for hide-club

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

! Sicherheit & Einschränkungen

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

About The Source

The section below is adapted 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 und Installationsschritte

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

? Häufige Fragen

Was ist hide-club?

Geeigneter Einsatz: Ideal for AI agents that need sets a club to visible = false in the database, creates the corresponding prisma. Lokalisierte Zusammenfassung: # 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, and Windsurf workflows.

Wie installiere ich hide-club?

Führen Sie den Befehl aus: npx killer-skills add gioe/laughtrack. Er funktioniert mit Cursor, Windsurf, VS Code, Claude Code und mehr als 19 weiteren IDEs.

Wofür kann ich hide-club verwenden?

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

Welche IDEs sind mit hide-club kompatibel?

Dieser Skill ist mit 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 kompatibel. Nutzen Sie die Killer-Skills CLI für eine einheitliche Installation.

Gibt es Einschränkungen bei hide-club?

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

So installieren Sie den Skill

  1. 1. Terminal öffnen

    Öffnen Sie Ihr Terminal oder die Kommandozeile im Projektverzeichnis.

  2. 2. Installationsbefehl ausführen

    Führen Sie aus: npx killer-skills add gioe/laughtrack. Die CLI erkennt Ihre IDE oder Ihren Agenten automatisch und richtet den Skill ein.

  3. 3. Skill verwenden

    Der Skill ist jetzt aktiv. Ihr KI-Agent kann hide-club sofort im aktuellen Projekt verwenden.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below is adapted 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 is adapted 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. 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.

Verwandte Fähigkeiten

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

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Entwickler