superset-contribute
Installation
SKILL.md
Contribute to Superset
Take the user from "I want to fix/build X in Superset" to a merge-ready PR that follows the repo's rules. If the checked-out repo has CONTRIBUTING.md / DEVELOPMENT.md / AGENTS.md, those files are authoritative — read them and prefer them over this summary.
1. Scope first
- Bug fixes, docs, small improvements → straight to a PR, no issue needed
- New features or larger changes → open an issue first at https://github.com/superset-sh/superset/issues/new/choose to agree on the approach before building
- Questions → Superset Discord, not an issue
2. Set up
gh auth status, then fork and clone:gh repo fork superset-sh/superset --clone(or add a fork remote to an existing clone)- Best experience: add the clone as a project in the Superset app and create a workspace per change — contributions develop inside managed worktrees
- In the new workspace/worktree, run
./.superset/setup.local.shonce (configures per-workspace ports, app identity, local services, and a seeded dev account — no external credentials needed), thenbun run dev - Bun only — never npm/yarn/pnpm. Read the root
AGENTS.mdand follow it.