Claude Code Skills

August 4, 2026 ยท View on GitHub

Claude Code skills are slash commands that automate common development tasks in brave-core. Skills are defined under agents/skills/ (the checked-in source of truth) and linked into the generated .claude/skills/ discovery dir by agents/skills/setup.py on every sync; best practices live in docs/best-practices/.

Available Skills

SkillDescription
/add-best-practiceAdd a new best practice entry to the docs
/fix-bp-docsAudit and fix stale references, duplicates, and formatting in best practices docs
/check-milestonesCheck/fix milestones on PRs and issues
/check-upstream-flakeCheck LUCI Analysis for upstream test flakiness
/clean-branchesDelete local branches whose PRs are merged (Experimental)
/commitCreate atomic git commits
/create-contributor-prsDispatch the rebase-from-fork workflow so CI runs on contributor PRs
/force-push-downstreamForce-push branch + all downstream branches
/impl-reviewImplement PR review feedback
/make-ci-greenRe-run failed CI jobs (Experimental)
/plaster-from-patchConvert an existing Chromium .patch into a Plaster (rewrite/*.yaml) config
/prCreate a pull request for the current branch
/preflightRun all preflight checks (format, build, test)
/rebase-downstreamRebase a tree of dependent branches
/reviewCode review (PR or local changes)
/top-crashersQuery Backtrace for top crash data (Experimental)
/upliftCherry-pick fixes to beta/release branches

Environment Variables

Some skills require API keys to be set (e.g., in your .envrc):

/top-crashers

VariableDescription
BACKTRACE_API_KEYBacktrace API token with query:post capability
BACKTRACE_PROJECTBacktrace project name (or pass --project argument)

/make-ci-green (Experimental)

VariableDescription
JENKINS_BASE_URLJenkins CI server base URL
JENKINS_USERJenkins username
JENKINS_TOKENJenkins API token (from $JENKINS_BASE_URL/me/configure)