Add Turkish (tr) docs and update README (#744)

* Add Turkish (tr) docs and update README

Add a full set of Turkish documentation under docs/tr (agents, changelog, CLAUDE guide, contributing, code of conduct, and many agents/commands/skills/rules files). Update README to include a link to the Turkish docs and increment the supported language count from 5 to 6. This commit adds localized guidance and references to help Turkish-speaking contributors and users.

* Update docs/tr/TROUBLESHOOTING.md

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>

* Update docs/tr/README.md

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>

* docs(tr): fix license link and update readmes

Update Turkish docs: change license badge link to point to repository root (../../LICENSE), increment displayed language count from 5 to 6, and remove two outdated related links from docs/tr/examples/README.md to keep references accurate.

* Update docs/tr/commands/instinct-import.md

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>

* Update docs/tr/commands/checkpoint.md

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>

---------

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
Berkcan Gümüşışık
2026-03-23 01:37:04 +03:00
committed by GitHub
parent bb1efad7c7
commit fd2a8edb53
139 changed files with 26670 additions and 2 deletions

61
docs/tr/rules/README.md Normal file
View File

@@ -0,0 +1,61 @@
# Kurallar (Rules)
Claude Code için kodlama kuralları ve en iyi uygulamalar.
## Dizin Yapısı
### Common (Dile Bağımsız Kurallar)
Tüm programlama dillerine uygulanan temel kurallar:
- **agents.md** - Agent orkestrasyonu ve kullanımı
- **coding-style.md** - Genel kodlama stili kuralları (immutability, dosya organizasyonu, hata yönetimi)
- **development-workflow.md** - Özellik geliştirme iş akışı (araştırma, planlama, TDD, kod incelemesi)
- **git-workflow.md** - Git commit ve PR iş akışı
- **hooks.md** - Hook sistemi (PreToolUse, PostToolUse, Stop)
- **patterns.md** - Yaygın tasarım pattern'leri (Repository, API Response Format)
- **performance.md** - Performans optimizasyonu (model seçimi, context window yönetimi)
- **security.md** - Güvenlik kuralları (secret yönetimi, güvenlik kontrolleri)
- **testing.md** - Test gereksinimleri (TDD, minimum %80 coverage)
### TypeScript/JavaScript
TypeScript ve JavaScript projeleri için özel kurallar:
- **coding-style.md** - Tip sistemleri, immutability, hata yönetimi, input validasyonu
- **hooks.md** - Prettier, TypeScript check, console.log uyarıları
- **patterns.md** - API response format, custom hooks, repository pattern
- **security.md** - Secret yönetimi, environment variable'lar
- **testing.md** - Playwright E2E testing
### Python
Python projeleri için özel kurallar:
- **coding-style.md** - PEP 8, type annotation'lar, immutability, formatlama araçları
- **hooks.md** - black/ruff formatlama, mypy/pyright tip kontrolü
- **patterns.md** - Protocol (duck typing), dataclass'lar, context manager'lar
- **security.md** - Secret yönetimi, bandit güvenlik taraması
- **testing.md** - pytest framework, coverage, test organizasyonu
### Golang
Go projeleri için özel kurallar:
- **coding-style.md** - gofmt/goimports, tasarım ilkeleri, hata yönetimi
- **hooks.md** - gofmt/goimports formatlama, go vet, staticcheck
- **patterns.md** - Functional options, küçük interface'ler, dependency injection
- **security.md** - Secret yönetimi, gosec güvenlik taraması, context & timeout'lar
- **testing.md** - Table-driven testler, race detection, coverage
## Kullanım
Bu kurallar Claude Code tarafından otomatik olarak yüklenir ve uygulanır. Kurallar:
1. **Dile bağımsız** - `common/` dizinindeki kurallar tüm projeler için geçerlidir
2. **Dile özgü** - İlgili dil dizinindeki kurallar (typescript/, python/, golang/) common kuralları genişletir
3. **Path tabanlı** - Kurallar YAML frontmatter'daki path pattern'leri ile eşleşen dosyalara uygulanır
## Orijinal Dokümantasyon
Bu dokümantasyonun İngilizce orijinali `rules/` dizininde bulunmaktadır.