ワンクリックで
git-workflow
Enforce clean Git workflow — conventional commits, branch naming, PR etiquette, and release tagging.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Enforce clean Git workflow — conventional commits, branch naming, PR etiquette, and release tagging.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.
Look up any arxiv paper on alphaxiv.org to get a structured AI-generated overview
Socratic questioning protocol + user communication. MANDATORY for complex requests, new features, or unclear requirements. Includes progress reporting and error handling.
Lighthouse-style efficiency audit for OpenClaw. Scores your instance A+ to F across 6 categories (context injection, cron health, session bloat, config, skills, transcripts). Identifies wasted tokens, bloated sessions, misconfigured crons, and model right-sizing opportunities. Zero dependencies (Python stdlib only).
Make your AI agent learn and improve automatically. Reviews sessions, extracts learnings, updates memory files, and compounds knowledge over time. Set up nightly review loops that make your agent smarter every day.
A multi-agent deliberation hub with 3 core agents and extensible extended agents. Can call user workspace skills when needed.
SOC 職業分類に基づく
| name | git-workflow |
| description | Enforce clean Git workflow — conventional commits, branch naming, PR etiquette, and release tagging. |
Standardised Git workflow for team and solo projects. Conventional commits, protected branches, clean history.
feat/my-feature # New feature
fix/bug-description # Bug fix
chore/task-name # Maintenance
docs/update-readme # Documentation
refactor/area # Code refactor
test/feature-name # Tests only
Format: <type>(<scope>): <description>
| Type | When to use |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation only |
style | Formatting, no code change |
refactor | Restructuring, no feature/fix |
test | Adding or updating tests |
chore | Build, CI, deps, tooling |
perf | Performance improvement |
ci | CI/CD changes |
revert | Revert a previous commit |
Examples:
feat(auth): add JWT refresh token
fix(api): handle 429 rate limit response
docs(readme): update installation steps
refactor(hooks): extract useDebounce hook
chore(deps): upgrade React 18 → 19
fix(auth): handle expired refresh tokens
Previously, expired refresh tokens caused a 500 error.
Now returns 401 with a specific error code so the
client can redirect to login.
Closes #142
# Main branch — never commit directly
git config branch.main.protected true
# Require PR reviews
gh api repos/{owner}/{repo}/branches/main/protection \
-X PUT -f required_status_checks='{"strict": true, "contexts": ["ci"]}' \
-f enforce_admins: true \
-f required_pull_request_reviews='{"required_approving_review_count": 1}'
# Semantic version tag
git tag -a v2.1.0 -m "Release v2.1.0 — see CHANGELOG.md"
git push origin v2.1.0
# List tags
git tag --sort=-version:refname | head -10
# Delete local tag
git tag -d v2.0.0
# Delete remote tag
git push origin --delete v2.0.0
# Compact log
git config --global alias.lg "log --oneline --graph --decorate --all"
# Uncommit last commit (keep changes)
git config --global alias.undo "reset --soft HEAD~1"
# Quick switch to main
git config --global alias.main "checkout main"
# Amend without editing message
git commit --amend --no-edit
github-ops skill — full repo lifecyclegithub-actions skill — CI/CD setupconventional-changelog — auto-generate changelogs