mcpbeat

Multitenant Down

posthog/multitenant-down

Tear down the multi-tenant K8s stack, kill port-forwards, and clean up worker pods. Use when done testing multi-tenant mode.

174 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
160
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/PostHog/duckgres --skill multitenant-down

The instruction itself

as written by the author

Tear down the multi-tenant K8s stack:

  • Kill all port-forwards:
   pkill -f 'port-forward.*duckgres' 2>/dev/null
  • Delete the duckgres namespace (removes control plane, workers, RBAC, services):
   kubectl delete namespace duckgres --ignore-not-found
  • Stop the config store:
   docker compose -f k8s/local-config-store.compose.yaml down
  • Clean up the TLS cert:
   rm -f /tmp/duckgres-server.crt
  • Report to the user that the stack is torn down.

How to use it

Copy the folder

Take posthog/multitenant-down from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.