Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
21
Optionally checks, then commits code to the current or a new feature branch.
Sign in to like and favorite skills
When asked to commit code, follow these steps:
check (default): Run checks first to lint, build, and test the code. Stop if any checks fail.force: Skip the check step and commit directly.Run these bash commands in parallel to understand the current state:
git status to see all untracked filesgit diff HEAD to see both staged and unstaged changesgit log --oneline -10 to see recent commit messages for style consistencyIf you are on the
main branch, create a new feature branch using git branch and switch to it.
Analyze all changes and draft a commit message:
type(scope): descriptionStage and commit the changes:
git addReport the results including: