Agent Skills: Commit and PR title conventions

Reviews the current git changes and creates a commit with an emoji-prefixed message that matches the dominant type of work.

UncategorizedID: baptistearno/typebot.io/commit

Repository

baptisteArnoLicense: NOASSERTION
9,8423,043

Install this agent skill to your local

pnpm dlx add-skill https://github.com/baptisteArno/typebot.io/tree/HEAD/.agents/skills/commit

Skill Files

Browse the full folder contents for commit.

Download Skill

Loading file tree…

.agents/skills/commit/SKILL.md

Skill Metadata

Name
commit
Description
Use when preparing, reviewing, or suggesting git commit messages or pull request titles, or before creating a commit.

Commit and PR title conventions

Commit messages and PR titles must be prefixed with exactly one emoji that describes the primary intent of the change.

Prefer the most user-visible category when a commit spans multiple areas.

Emoji prefixes

  • πŸ› Fix a bug.
  • ✨ New user-facing feature. Use this only for a meaningful feature users would actively want to try. Use it sparingly. If the change is incremental rather than substantial, prefer πŸ‘Œ. Use only when there is a frontend change.
  • πŸ‘Œ New user-facing addition to an existing feature, such as a new option or small capability. Use only when there is a frontend change.
  • πŸ”§ New internal implementation. Use when the change is mostly internal and not directly noticeable by end users.
  • ♻️ Refactoring. Use when behavior stays effectively the same and the main goal is code cleanup or restructuring.
  • πŸ’… UI or UX update. Use when the main value is visual polish, interaction quality, or layout improvements.
  • πŸ“ Blog or documentation update.

Before committing

Always check the diff and remove debug logs, temporary files, commented-out experiments, and other temporary artifacts before creating a commit.

After opening a PR

Never amend commits that are already part of an opened PR. Push follow-up fixes as new commits so review history and existing comments remain stable.

Format

Use a concise imperative or descriptive title after the emoji:

πŸ› Fix workspace invite redirect
πŸ”§ Add billing sync worker
♻️ Simplify block schema helpers