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

Подходит лучше всего

Подходящий сценарий: 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.

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

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
Разработчик