connectonion/cli/co_ai/skills/builtin/commit/SKILL.md
Create git commits with good messages. Use when user says "commit", "create commit", or asks to commit changes.
npx skillsauth add openonion/connectonion commitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create a well-formatted git commit for staged changes.
Gather information (run in parallel):
git status - See what's staged and unstagedgit diff --staged - See exactly what will be committedgit log --oneline -5 - See recent commit message styleAnalyze changes:
Draft commit message:
Execute commit:
git add <files>git commit -m "$(cat <<'EOF'
Your commit message here
EOF
)"
git status--amend unless explicitly asked# Check status and diff
git status
git diff --staged
# Commit
git commit -m "$(cat <<'EOF'
Fix authentication timeout issue
Increased JWT expiry from 1h to 24h to prevent
frequent re-authentication during long sessions.
EOF
)"
# Verify
git status
testing
Ship a feature end-to-end — update tests, docs, docs-site, then release to PyPI. Use when user says "ship", "ship feature", "release", or asks to publish a new version.
testing
Ship a feature end-to-end — update tests, docs, docs-site, then release to PyPI. Use when user says "ship", "ship feature", "release", or asks to publish a new version.
tools
Review GitHub pull requests. Use when user says "review PR", "review pull request", or "/review-pr".
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.