A collection of Claude Code skills shared by the Bytebase team. These skills encode proven workflows, domain knowledge, and best practices to help Claude Code assist more effectively with Bytebase-specific tasks.
Skills are reusable prompts and workflows that extend Claude Code's capabilities. When a skill is installed, Claude Code can invoke it to follow established patterns for specific tasks like writing release notes, debugging issues, or following code review guidelines.
| Skill | Description |
|---|---|
write-release-notes |
Generate professional Bytebase release notes by analyzing git commits, checking Terraform impact, searching Linear for customer feedback, and following established conventions |
You can install these skills in two ways: via the marketplace (recommended for discovery and updates) or as a direct plugin.
The marketplace allows you to browse and install plugins, and receive updates when new skills are added.
# Step 1: Add the marketplace
/plugin marketplace add bytebase/team-skills
# Step 2: Install the plugin from the marketplace
/plugin install bytebase-team-skills@bytebase-team-skill-marketManaging the marketplace:
# List all configured marketplaces
/plugin marketplace list
# Update/refresh the marketplace to get latest plugins
/plugin marketplace update bytebase-team-skill-market
# Remove the marketplace
/plugin marketplace remove bytebase-team-skill-marketIf you prefer to install the plugin directly without using the marketplace:
# Install directly from GitHub
/plugin install bytebase/team-skillsOr using the full Git URL:
/plugin install https://github.com/bytebase/team-skills.gitTo install a specific version:
/plugin install https://github.com/bytebase/team-skills.git#v1.0.0Once installed, skills are automatically available to Claude Code. You can invoke a skill by name:
# Example: Generate release notes
/write-release-notesClaude Code will also proactively use relevant skills when it detects a matching task.
Check that the plugin is installed:
/plugin list# Remove the plugin
/plugin uninstall bytebase-team-skills
# If using marketplace, you can also remove the marketplace
/plugin marketplace remove bytebase-team-skill-marketTo add a new skill:
- Create a new directory under
skills/with your skill name - Add a
SKILL.mdfile with the skill definition (frontmatter + content) - Submit a pull request
See existing skills for examples of the expected format.
MIT