← スキル一覧に戻る

commit-pr
by JaviMaligno
AI-powered CLI tool for automating open source contributions using Claude Agent SDK
⭐ 0🍴 0📅 2025年12月28日
SKILL.md
name: commit-pr description: Crea commits y pull requests. Usar cuando se necesita commitear cambios, crear PRs, escribir mensajes de commit, o gestionar branches. allowed-tools: Bash(git:), Bash(gh:), Read
Commit & PR Skill
Commit Messages
Formato
<type>(<scope>): <description>
[optional body]
[optional footer]
Types
| Type | Uso |
|---|---|
feat | Nueva funcionalidad |
fix | Bug fix |
docs | Solo documentación |
style | Formato, sin cambio de lógica |
refactor | Refactoring sin cambio de comportamiento |
test | Añadir o modificar tests |
chore | Cambios de build, CI, deps |
perf | Mejoras de performance |
Scope
Módulo o área afectada: cli, ai, git, state, engine, etc.
Ejemplos
feat(cli): add --resume flag to work command
fix(ai): handle timeout in SDK provider gracefully
refactor(engine): extract CI handler to separate module
test(git): add worktree creation tests
Pull Requests
Título
Mismo formato que commits: <type>(<scope>): <description>
Template de Descripción
## Summary
- Bullet point 1 del cambio principal
- Bullet point 2 si aplica
- Bullet point 3 si aplica
## Test Plan
- [ ] Tests unitarios pasan
- [ ] Tests de integración pasan
- [ ] Probado manualmente con: [descripción]
## Related
- Closes #123 (si aplica)
- Related to #456 (si aplica)
Labels Recomendados
enhancement- Nueva featurebug- Bug fixdocumentation- Solo docsrefactor- Refactoringbreaking-change- Breaking changes
Workflow de Git
Crear Branch
# Formato: oss-agent/<issue-id>-<descripcion-corta>
git checkout -b oss-agent/123-add-resume-flag
Antes de Commit
# Verificar cambios
git status
git diff
# Stage archivos específicos (preferido sobre git add .)
git add src/cli/commands/work.ts
git add tests/work.test.ts
Commit
git commit -m "feat(cli): add --resume flag to work command
Allows resuming work on a previously started issue session.
The session ID is retrieved from the state database.
Closes #123"
Push y PR
# Push branch
git push -u origin oss-agent/123-add-resume-flag
# Crear PR
gh pr create --title "feat(cli): add --resume flag" --body "..."
Ver CONVENTIONS.md para convenciones específicas del proyecto.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です