Files
everything-claude-code/docs/tr/CLAUDE.md
Berkcan Gümüşışık fd2a8edb53 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>
2026-03-22 15:37:04 -07:00

61 lines
2.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# CLAUDE.md
Bu dosya, bu depodaki kodlarla çalışırken Claude Code'a (claude.ai/code) rehberlik sağlar.
## Projeye Genel Bakış
Bu bir **Claude Code plugin**'idir - üretime hazır agent'lar, skill'ler, hook'lar, komutlar, kurallar ve MCP konfigürasyonlarından oluşan bir koleksiyondur. Proje, Claude Code kullanarak yazılım geliştirme için test edilmiş iş akışları sağlar.
## Testleri Çalıştırma
```bash
# Tüm testleri çalıştır
node tests/run-all.js
# Tekil test dosyalarını çalıştır
node tests/lib/utils.test.js
node tests/lib/package-manager.test.js
node tests/hooks/hooks.test.js
```
## Mimari
Proje, birkaç temel bileşen halinde organize edilmiştir:
- **agents/** - Delegasyon için özelleşmiş alt agent'lar (planner, code-reviewer, tdd-guide, vb.)
- **skills/** - İş akışı tanımları ve alan bilgisi (coding standards, patterns, testing)
- **commands/** - Kullanıcılar tarafından çağrılan slash komutları (/tdd, /plan, /e2e, vb.)
- **hooks/** - Tetikleyici tabanlı otomasyonlar (session persistence, pre/post-tool hooks)
- **rules/** - Her zaman takip edilmesi gereken yönergeler (security, coding style, testing requirements)
- **mcp-configs/** - Harici entegrasyonlar için MCP server konfigürasyonları
- **scripts/** - Hook'lar ve kurulum için platformlar arası Node.js yardımcı araçları
- **tests/** - Script'ler ve yardımcı araçlar için test suite
## Temel Komutlar
- `/tdd` - Test-driven development iş akışı
- `/plan` - Uygulama planlaması
- `/e2e` - E2E testleri oluştur ve çalıştır
- `/code-review` - Kalite incelemesi
- `/build-fix` - Build hatalarını düzelt
- `/learn` - Oturumlardan kalıpları çıkar
- `/skill-create` - Git geçmişinden skill'ler oluştur
## Geliştirme Notları
- Package manager algılama: npm, pnpm, yarn, bun (`CLAUDE_PACKAGE_MANAGER` env var veya proje config ile yapılandırılabilir)
- Platformlar arası: Node.js script'leri aracılığıyla Windows, macOS, Linux desteği
- Agent formatı: YAML frontmatter ile Markdown (name, description, tools, model)
- Skill formatı: Ne zaman kullanılır, nasıl çalışır, örnekler için açık bölümler içeren Markdown
- Hook formatı: Matcher koşulları ve command/notification hook'ları ile JSON
## Katkıda Bulunma
CONTRIBUTING.md'deki formatları takip edin:
- Agents: Frontmatter ile Markdown (name, description, tools, model)
- Skills: Açık bölümler (When to Use, How It Works, Examples)
- Commands: Description frontmatter ile Markdown
- Hooks: Matcher ve hooks array ile JSON
Dosya isimlendirme: tire ile küçük harfler (örn., `python-reviewer.md`, `tdd-workflow.md`)