بنقرة واحدة
commit
Create git commits with good messages. Use when user says "commit", "create commit", or asks to commit changes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create git commits with good messages. Use when user says "commit", "create commit", or asks to commit changes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Install and fully set up ConnectOnion on Windows, macOS, or Linux so EVERY `co` command works — find Python, pip install, `co init` (scaffolds the project AND authenticates, writing keys.env), confirm the account with `co status`, install a browser for `co browser`, then hand the user a plain-language summary. Use when the user says "install connectonion", "set up connectonion", "get me started with co", or a co command fails because nothing is configured yet.
Drive one persistent, logged-in browser from the shell with `co browser`. Use when the user asks to open a page, log into a site, scrape/extract page content, fill forms, upload files, take screenshots, or automate any browser task — solo or with multiple agents sharing the browser.
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.
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.
Review GitHub pull requests. Use when user says "review PR", "review pull request", or "/review-pr".
| name | commit |
| description | Create git commits with good messages. Use when user says "commit", "create commit", or asks to commit changes. |
| tools | ["Bash(git status)","Bash(git diff *)","Bash(git log *)","Bash(git add *)","Bash(git commit *)","read_file","glob"] |
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