accessibility-patterns
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
OpenAI Codex CLI + Claude Code (Hizir) birlikte kullanim rehberi. Is dagitim pattern'leri, GitHub Actions workflow ornekleri, review dongusu ve iki AI yazilim asistaninin guclu yanlarini birlestiren orchestration stratejileri.
$ npx -y skills add vibeeval/vibecosystem --skill codex-orchestration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/codex-orchestrationContext preview
The summary Claude sees to decide when to auto-load this skill.
OpenAI Codex CLI + Claude Code (Hizir) birlikte kullanim rehberi. Is dagitim pattern'leri, GitHub Actions workflow ornekleri, review dongusu ve iki AI yazilim asistaninin guclu yanlarini birlestiren orchestration stratejileri.
name: codex-orchestration description: OpenAI Codex CLI + Claude Code (Hizir) birlikte kullanim rehberi. Is dagitim pattern'leri, GitHub Actions workflow ornekleri, review dongusu ve iki AI yazilim asistaninin guclu yanlarini birlestiren orchestration stratejileri.
| Yetenek | Codex CLI | Claude Code (Hizir) | Kazanan | |---------|-----------|---------------------|---------| | Hiz | `gpt-5.6-luna` / `max` | Claude adapter modeline bagli | Codex | | Maliyet | Worker modeline ve kullanimina bagli | Claude pricing | Adapter'a bagli | | Context window | Sinirli | 1M token | Claude Code | | Multi-agent | YOK (tek agent) | 134+ agent swarm | Claude Code | | Hook/self-learning | YOK | Tam destek (74 hook) | Claude Code | | Memory/state | Stateless (her cagri bagimsiz) | Persistent memory | Claude Code | | Code review | Basit lint | Derinlemesine + security | Claude Code | | Bulk refactoring | Cok iyi (hiz+ucuz) | Iyi ama pahali | Codex | | Mimari karar | Zayif | Guclu (architect agent) | Claude Code | | Test yazma | Iyi | Iyi + TDD workflow | Esit | | Security audit | Basit | 3-katman (SAST + review + manual) | Claude Code | | CI/CD entegrasyonu | GitHub native | GitHub Actions + webhook | Esit |
---
**En yaygin ve etkili pattern.**
1. Claude Code → plan.md olusturur (architect agent) 2. Codex → plan.md'ye gore implement eder (full-auto mode) 3. Codex → PR acar 4. Claude Code → PR review eder (code-reviewer + security-reviewer) 5. Codex → Review bulgularini fix eder 6. Claude Code → Final verify + merge onay
**GitHub Actions Workflow:**
# .github/workflows/codex-implement-claude-review.yml
name: Codex + Claude Code Pipeline
on:
issues:
types: [labeled]
jobs:
codex-implement:
if: contains(github.event.label.name, 'codex-task')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Codex Implementation
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
npx codex --approval-mode full-auto \
--quiet \
-q "Implement the task described in issue #${{ github.event.issue.number }}. Follow the plan if provided."
- name: Create PR
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git checkout -b codex/issue-${{ github.event.issue.number }}
git add -A
git commit -m "feat: implement issue #${{ github.event.issue.number }} [codex]"
git push -u origin codex/issue-${{ github.event.issue.number }}
gh pr create --title "Codex: Issue #${{ github.event.issue.number }}" \
--body "Automated implementation by Codex CLI. Awaiting Claude Code review."
claude-review:
needs: codex-implement
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Claude Code Review
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
run: |
# claude-review workflow zaten mevcut
claude -p "Review the PR changes. Run code-reviewer + security-reviewer. Report findings."# .github/workflows/dual-review.yml
name: Dual AI Review
on:
pull_request:
types: [opened, synchronize]
jobs:
codex-quick-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Codex Quick Lint Review
run: |
npx codex --approval-mode full-auto -q \
"Review the diff for obvious issues: lint errors, typos, missing imports, type errors. Be brief."
claude-deep-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Claude Code Deep Review
run: |
claude -p "Deep review: architecture, security, performance, edge cases. Use code-reviewer + security-reviewer agents."Birden fazla kuuk task'i Codex'e dagit, Claude Code koordine etsin.
#!/bin/bash
# batch-codex-tasks.sh
TASKS=(
"Add input validation to all API endpoints in src/api/"
"Convert all var declarations to const/let in src/utils/"
"Add JSDoc comments to all exported functions in src/lib/"
"Fix all TypeScript strict mode errors in src/models/"
)
for i in "${!TASKS[@]}"; do
echo "Task $((i+1)): ${TASKS[$i]}"
npx codex --approval-mode full-auto --quiet -q "${TASKS[$i]}" &
done
wait
echo "All Codex tasks complete. Running Claude Code verification..."
claude -p "Verify all changes: build, test, lint. Report issues."---
PHASE 1: PLAN (Claude Code) ├── architect agent ile plan olustur ├── Task'lari tanimla ├── Kabul kriterleri belirle └── plan.md veya GitHub issue olustur PHASE 2: IMPLEMENT (Codex) ├── codex --approval-mode full-auto ├── Her task icin ayri branch ├── PR ac └── Codex kendi testlerini de yazabilir PHASE 3: REVIEW (Claude Code) ├── code-reviewer: Kalite, pattern, best practice ├── security-reviewer: Guvenlik aciklari ├── verifier: Build + test + lint └── VERDICT: PASS / FAIL + feedback PHASE 4: FIX (Codex) ├── Claude Code'un feedback'ini al ├── Sadece belirtilen sorunlari duzelt ├── Yeni feature EKLEME └── Tekrar PR guncelle PHASE 5: MERGE (Claude Code) ├── Final verify ├── Tum testler geciyor mu? ├── Security temiz mi? └── Merge onay + deploy
---
# Interaktif mod (terminal'de calisir) codex # Tek seferlik task (non-interactive) codex -q "task aciklamasi" # Full auto (onay istemeden yapar) codex --approval-mode full-auto -q "task" # Model secimi luna_worker sozlesmesinden gelir; burada ikinci bir router yok codex -q "task" # Quiet mode (CI/CD icin) codex --quiet -q "task"
# GitHub Actions icinde CODEX_QUIET=1 npx codex --approval-
Your AI software team. Built on Claude Code. vibecosystem turns Claude Code into a full AI software team — 138 specialized agents that plan, build, review, test, and learn from every mistake. No configuration needed — just install and code.
Repo: vibeeval/vibecosystem
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
axe-core integration, WCAG 2.2 AA checklist, keyboard navigation testing, screen reader testing, and ARIA pattern validation.
Steam-style achievement system with XP, levels, streaks, and skill trees. Gamifies the development workflow. 25 achievements across 5 categories.
Framework for measuring and tracking agent response quality over time. Detects regressions before they reach production. Use when evaluating agent changes,…
Agent ve skill dosyalarinin yapisal dogrulamasi. Frontmatter kontrol, naming convention, zorunlu bolum kontrolu, tutarlilik denetimi. Yeni agent/skill…