Agent skill · Code Review & Quality

autonomous-pr

Otonom PR yasam dongusu. PR olustur, CI bekle, hata varsa duzelt, review feedback'i uygula, merge'e hazirla. Budget ve zaman limiti ile kontrol altinda tutulan tam otonom PR pipeline'i.

vibeevalgithub.com/vibeevalGitHub ↗
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill autonomous-pr --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/autonomous-pr/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Autonomous PR Lifecycle PR'i olusturmaktan merge'e kadar tum sureci otonom yonet. CI basarisiz olursa duzelt, review feedback gelirse uygula, butce asarsa dur. ## PR Pipeline ``` 1. BRANCH → Feature branch olustur 2. IMPLEMENT → Kodu yaz (kraken/spark) 3. VERIFY → Lokal test + lint + build 4. PR CREATE → gh pr create 5. CI WAIT → CI pipeline'i bekle 6. CI FIX → Basarisizsa duzelt, tekrar push (max 3) 7. REVIEW → Review feedback bekle 8. APPLY → Feedback'i uygula 9. READY → Merge'e hazir bildir ``` ## Kullanim ### Basit: Tek PR ```bash # Claude'a otonom PR olusturttir claude -p " Feature: kullanici profil sayfasi ekle Branch: feat/user-profile PR target: main Pipeline: 1. Branch olustur 2. Implement et 3. Test yaz 4. PR olustur 5. CI bekle ve fix et 6. Hazir olunca bildir " ``` ### Gelismis: Budget ve Zaman Limiti ```bash claude -p " Feature: auth middleware refactor Branch: refactor/auth-middleware PR target: main Limitler: --budget 500K tokens # Max token harcama --max-duration 30m # Max sure --max-ci-retries 3 # Max CI fix denemesi --auto-merge false # Merge'i ben onaylayacagim Basarisiz olursa: Draft PR olarak birak, ne yaptigini acikla " ``` ## CI Fix Dongusu ``` CI BASARISIZ

What's inside
Steps it walks through
  1. PR Pipeline
  2. Kullanim
  3. Basit: Tek PR
  4. Gelismis: Budget ve Zaman Limiti
  5. CI Fix Dongusu
  6. CI Fix Script
  7. Review Feedback Dongusu
  8. Review Feedback Uygulama
  9. Budget Kontrol
  10. Token Sayaci
  11. Zaman Kontrol
  12. Guvenlik Kurallari
  13. vibecosystem Entegrasyonu
Commands it runs
claude -p "
PR target: main
Basarisiz olursa:
Draft PR olarak birak, ne yaptigini acikla
scripts/ci-fix-loop.sh
while [ $RETRY -lt $MAX_RETRIES ]; do
echo "=== CI Check (attempt $((RETRY + 1))/$MAX_RETRIES) ==="
if echo "$STATUS" | grep -q "SUCCESS"; then
echo "CI PASSED"
exit 0
More from vibecosystem
All skills →
About this skill
What does the autonomous-pr skill do?

Otonom PR yasam dongusu. PR olustur, CI bekle, hata varsa duzelt, review feedback'i uygula, merge'e hazirla. Budget ve zaman limiti ile kontrol altinda tutulan tam otonom PR pipeline'i.

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill autonomous-pr --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going