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

このスキルについて

適した場面: Ideal for AI agents that need 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, and Windsurf workflows.

機能

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

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
64
Canonical Locale
en
Detected Body Locale
en

適した場面: Ideal for AI agents that need 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, and Windsurf workflows.

このスキルを使用する理由

推奨ポイント: 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

おすすめ

適した場面: Ideal for AI agents that need sets a club to visible = false in the database, creates the corresponding prisma.

実現可能なユースケース 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:

! セキュリティと制限

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

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

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 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.

How do I install hide-club?

Run the command: npx killer-skills add gioe/laughtrack/hide-club. 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/hide-club. 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.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

hide-club

Install hide-club, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

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.

関連スキル

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

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

ローカライズされた概要: 🦞 # 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
AI

widget-generator

Logo of f
f

ローカライズされた概要: 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, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

ローカライズされた概要: 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
ブラウザ

pr-review

Logo of pytorch
pytorch

ローカライズされた概要: 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
開発者