원클릭으로
dev-autodev
Common autodev loop for branch, implement, test, commit, and PR summary.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Common autodev loop for branch, implement, test, commit, and PR summary.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Rebase open PRs onto the default branch, resolve conflicts, and force push.
Review Airflow UI code for consistency, best practices, and conventions.
Develop Airflow UI features from an issue link or text description.
Generate a concise PR changelog summary from the current branch diff.
Generate a Google Slides presentation from a paper PDF URL using gws CLI.
Set up git aliases.
| name | dev-autodev |
| description | Common autodev loop for branch, implement, test, commit, and PR summary. |
Shared development workflow used by project-specific dev skills. No planning step, go straight to implementation.
Sync, detect the default branch (git remote show upstream 2>/dev/null | sed -n 's/.*HEAD branch: //p', fallback to main), checkout it and run git sync.
Create a branch for the feature/fix.
Implement, follow existing coding style, keep changes minimal.
Add tests, parameterized, concise, following project conventions.
Verify, run the project's build and test commands.
Commit with git commit -n -m "msg", no co-author tags.
PR summary: Use /dev-pr-summarize to generate a changelog.
Checkout the default branch when done.