Use when committing and pushing code changes, ensures DCO compliance and pre-commit validation
Always run pre-commit validation:
# Validate specific files
pre-commit run --files <changed-files>
# Or validate all staged files
pre-commit run
Fix any issues before proceeding.
All commits must include a Signed-off-by line for DCO compliance:
git commit -s -m "commit message"
Or add manually:
Signed-off-by: Your Name <your.email@example.com>
Stage changes
git add <files>
Run pre-commit
pre-commit run
Fix any issues and re-stage if needed
Commit with DCO sign-off
git commit -s -m "type: description"
type: short description
Optional longer description.
Signed-off-by: Name <email>
Types: feat, fix, docs, refactor, test, chore
git push origin <branch>
| Task | Command |
|------|---------|
| Pre-commit check | pre-commit run |
| Commit with DCO | git commit -s -m "message" |
| Amend with DCO | git commit --amend -s |
| Push | git push origin <branch> |
下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer