smithery/oodaris

eng-conventional-commit-helper

Create conventional commits with clear scope and intent.

Installation

$ npx skills add smithery/oodaris --skill eng-conventional-commit-helper

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/oodaris.

npx skills add smithery/oodaris

Browse all from smithery/oodaris

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.2.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 958 B
  • docs SUMMARY.md 94 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Conventional Commit Helper

Repo anchors (autocodex)

  • REPO_ROOT: .

When to use

  • Preparing commits for changes.

Preconditions

  • Git working tree exists.
  • No destructive git commands.

Inputs to confirm

  • Intended change type (feat/fix/docs/refactor/test/chore)
  • Scope (cli/plugins/api/ui/docs)

Required artifacts

  • Proposed conventional commit message
  • Staged file list

Quick path

  • Inspect diff.
  • Stage one intent.
  • Commit with conventional message.

Steps

  1. git status -sb
  2. Stage files for one intent.
  3. git commit -m "type(scope): subject"

Failure modes and responses

  • Mixed changes: split into multiple commits.
  • Generated noise: unstage or ignore.

Definition of done

  • Commit is conventional and scoped.

Example (minimal)

  • feat(cli): add plugins command