kortext 1.0.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. package/AGENTS.md +28 -0
  2. package/README.md +91 -0
  3. package/agents/backend-developer.md +132 -0
  4. package/agents/compliance-expert.md +106 -0
  5. package/agents/copywriter.md +122 -0
  6. package/agents/db-admin.md +117 -0
  7. package/agents/delivery-manager.md +121 -0
  8. package/agents/designer.md +108 -0
  9. package/agents/devops-engineer.md +141 -0
  10. package/agents/engineering-manager.md +208 -0
  11. package/agents/frontend-developer.md +174 -0
  12. package/agents/growth-expert.md +115 -0
  13. package/agents/operation-manager.md +122 -0
  14. package/agents/product-manager.md +114 -0
  15. package/agents/qa-engineer.md +126 -0
  16. package/agents/security-engineer.md +119 -0
  17. package/hooks/audit-logger.sh +25 -0
  18. package/hooks/auto-locker.sh +74 -0
  19. package/hooks/auto-unlocker.sh +17 -0
  20. package/hooks/backlog-sync-guard.sh +12 -0
  21. package/hooks/branch-guard.sh +32 -0
  22. package/hooks/commit-msg-guard.sh +43 -0
  23. package/hooks/git-pre-commit.sh +76 -0
  24. package/hooks/git-pre-push.sh +17 -0
  25. package/hooks/handover-guard.sh +33 -0
  26. package/hooks/kortext-init.sh +194 -0
  27. package/hooks/kortext-lib.sh +141 -0
  28. package/hooks/lint-guard.sh +50 -0
  29. package/hooks/secret-scanner.sh +89 -0
  30. package/hooks/size-guard.sh +48 -0
  31. package/hooks/snapshot-guard.sh +39 -0
  32. package/hooks/write-guard.sh +77 -0
  33. package/package.json +23 -6
  34. package/rules/behavior.md +252 -0
  35. package/rules/branching.md +82 -0
  36. package/rules/commands.md +112 -0
  37. package/rules/emergency.md +160 -0
  38. package/rules/mcp.md +47 -0
  39. package/rules/models.md +93 -0
  40. package/scripts/kortext-backlog-add.py +123 -0
  41. package/scripts/kortext-backlog-health.py +112 -0
  42. package/scripts/kortext-backlog-sync.py +117 -0
  43. package/scripts/kortext-bulk-plan.py +63 -0
  44. package/scripts/kortext-cli.py +295 -0
  45. package/scripts/kortext-consistency-check.py +74 -0
  46. package/scripts/kortext-context-check.py +146 -0
  47. package/scripts/kortext-handover.py +107 -0
  48. package/scripts/kortext-item-check.py +61 -0
  49. package/scripts/kortext-item-start.py +70 -0
  50. package/scripts/kortext-item-transition.py +78 -0
  51. package/scripts/kortext-lock.py +174 -0
  52. package/scripts/kortext-session-start.py +127 -0
  53. package/scripts/lock_kortext.sh +34 -0
  54. package/settings/.claude-settings.template.json +48 -0
  55. package/settings/CHANGELOG.md +176 -0
  56. package/settings/INTEGRATION-MAP.md +276 -0
  57. package/settings/README.md +255 -0
  58. package/settings/USER-GUIDE.md +502 -0
  59. package/settings/VERSION +1 -0
  60. package/settings/config.md +8 -0
  61. package/settings/runtime-adapters.md +104 -0
  62. package/skills/backend-developer/.gitkeep +0 -0
  63. package/skills/compliance-expert/.gitkeep +0 -0
  64. package/skills/copywriter/.gitkeep +0 -0
  65. package/skills/db-admin/.gitkeep +0 -0
  66. package/skills/delivery-manager/.gitkeep +0 -0
  67. package/skills/designer/.gitkeep +0 -0
  68. package/skills/devops-engineer/.gitkeep +0 -0
  69. package/skills/engineering-manager/.gitkeep +0 -0
  70. package/skills/frontend-developer/.gitkeep +0 -0
  71. package/skills/growth-expert/.gitkeep +0 -0
  72. package/skills/operation-manager/.gitkeep +0 -0
  73. package/skills/product-manager/.gitkeep +0 -0
  74. package/skills/qa-engineer/.gitkeep +0 -0
  75. package/skills/security-engineer/.gitkeep +0 -0
  76. package/workflows/00-kortext-setup.md +53 -0
  77. package/workflows/01a-analysis-pipeline.md +117 -0
  78. package/workflows/01b-onboarding-pipeline.md +110 -0
  79. package/workflows/02-planning-pipeline.md +146 -0
  80. package/workflows/02b-spike-workflow.md +120 -0
  81. package/workflows/03-environment-setup.md +99 -0
  82. package/workflows/04-development-cycle.md +203 -0
  83. package/workflows/05-test-cycle.md +123 -0
  84. package/workflows/06-deployment-cycle.md +224 -0
  85. package/workflows/07-rollback-pipeline.md +203 -0
  86. package/workflows/08-hotfix-pipeline.md +196 -0
  87. package/workflows/09-maintenance-cycle.md +133 -0
  88. package/workspace/archive/.gitkeep +0 -0
  89. package/workspace/backups/.gitkeep +0 -0
  90. package/workspace/memory/backlog/.gitkeep +0 -0
  91. package/workspace/memory/backlog/BXX-[bug-name].md +2 -0
  92. package/workspace/memory/backlog/DXX-[debt-name].md +2 -0
  93. package/workspace/memory/backlog/README.md +31 -0
  94. package/workspace/memory/backlog/TXX-[task-name].md +2 -0
  95. package/workspace/memory/backlog/debt-dashboard.md +3 -0
  96. package/workspace/memory/backlog/epic-dashboard.md +10 -0
  97. package/workspace/memory/backlog/version-dashboard.md +7 -0
  98. package/workspace/memory/context/.gitkeep +0 -0
  99. package/workspace/memory/context/README.md +35 -0
  100. package/workspace/memory/context/[agent-name]-active.md +2 -0
  101. package/workspace/memory/decisions.md +17 -0
  102. package/workspace/memory/handover.md +40 -0
  103. package/workspace/memory/learned.md +21 -0
  104. package/workspace/references/access.md +47 -0
  105. package/workspace/references/api-reference.md +59 -0
  106. package/workspace/references/blueprint.md +29 -0
  107. package/workspace/references/content-strategy.md +39 -0
  108. package/workspace/references/db-schema.md +51 -0
  109. package/workspace/references/design-system.md +107 -0
  110. package/workspace/references/dictionary.md +42 -0
  111. package/workspace/references/file-system.md +42 -0
  112. package/workspace/references/growth-strategy.md +46 -0
  113. package/workspace/references/legal-strategy.md +35 -0
  114. package/workspace/references/required-skills.md +11 -0
  115. package/workspace/references/security-rules.md +34 -0
  116. package/workspace/references/tech-stack.md +49 -0
  117. package/workspace/references/test-strategy.md +48 -0
  118. package/workspace/reports/analysis-reports.md +40 -0
  119. package/workspace/reports/content-reports.md +29 -0
  120. package/workspace/reports/delivery-reports.md +26 -0
  121. package/workspace/reports/growth-reports.md +9 -0
  122. package/workspace/reports/legal-reports.md +29 -0
  123. package/workspace/reports/product-requirements.md +28 -0
  124. package/workspace/reports/release-notes.md +20 -0
  125. package/workspace/reports/security-reports.md +27 -0
  126. package/workspace/reports/status-reports.md +48 -0
  127. package/workspace/reports/tech-requirements.md +30 -0
  128. package/workspace/reports/test-reports.md +61 -0
  129. package/workspace/templates/BXX-[bug-name].md +34 -0
  130. package/workspace/templates/DXX-[debt-name].md +35 -0
  131. package/workspace/templates/EXX-[epic-name].md +48 -0
  132. package/workspace/templates/HXX-[hotfix-name].md +73 -0
  133. package/workspace/templates/SXX-[spike-name].md +51 -0
  134. package/workspace/templates/TXX-[task-name].md +34 -0
  135. package/workspace/templates/[agent-name]-active.md +4 -0
  136. package/workspace/templates/[original-name]_[YYYY-MM-DD_HHMMSS].md +5 -0
  137. package/workspace/templates/adr-XXX.md +66 -0
  138. package/workspace/templates/debt-dashboard.md +10 -0
  139. package/workspace/templates/epic-dashboard.md +10 -0
  140. package/workspace/templates/version-dashboard.md +10 -0
@@ -0,0 +1,4 @@
1
+ ### +[ajan] | [task-id] | Devam | [HH:MM]
2
+
3
+ - **Özet:** Şu anda [yapılan işlem özetini buraya yazın].
4
+ - **Engel:** [Varsa belirtin, yoksa bu satırı silebilirsiniz]
@@ -0,0 +1,5 @@
1
+ > Bu dizin, boyutu aşan dosyaların arşivlendiği yerdir.
2
+ > İsimlendirme: `[original-name]_[YYYY-MM-DD_HHMMSS].md`
3
+ > Örnek: `handover_2026-05-16_143000.md`
4
+ >
5
+ > Şablon: `workspace/templates/[original-name]_[YYYY-MM-DD_HHMMSS].md`
@@ -0,0 +1,66 @@
1
+ # ADR-XXX: [Karar Başlığı]
2
+
3
+ > [!INFO]
4
+ > **Status:** [Proposed | Accepted | Deprecated | Superseded]
5
+ > **Date:** YYYY-MM-DD
6
+ > **Authors:** [+ajan], [+ajan]
7
+ > **Approver:** [+ajan]
8
+ > **Linked from:** `workspace/memory/decisions.md`
9
+ > **Supersedes:** [ADR-XXX] (varsa)
10
+ > **Superseded by:** [ADR-XXX] (varsa)
11
+
12
+ ---
13
+
14
+ ## Context
15
+ [Bu kararın arka planı. Hangi problem var, hangi kısıtlar geçerli, hangi seçenekler değerlendirildi?]
16
+
17
+ ### Problem
18
+ - [Çözülmesi gereken sorun.]
19
+
20
+ ### Constraints
21
+ - [Teknik kısıtlar (performans, güvenlik, maliyet vb.)]
22
+ - [Süre/kaynak kısıtları]
23
+ - [Mevcut sistem bağımlılıkları]
24
+
25
+ ### Considered Options
26
+ 1. **Seçenek A** — [kısa açıklama]
27
+ 2. **Seçenek B** — [kısa açıklama]
28
+ 3. **Seçenek C** — [kısa açıklama]
29
+
30
+ ---
31
+
32
+ ## Decision
33
+ [Alınan teknik/süreçsel karar ve uygulanacak yöntem. Hangi seçenek seçildi ve neden?]
34
+
35
+ **Seçilen:** [Seçenek X]
36
+
37
+ **Gerekçe:**
38
+ - [Neden bu seçenek?]
39
+ - [Diğer seçeneklerin neden reddedildiği]
40
+
41
+ ---
42
+
43
+ ## Consequences
44
+
45
+ ### Olumlu Sonuçlar
46
+ - [Avantaj 1]
47
+ - [Avantaj 2]
48
+
49
+ ### Olumsuz Sonuçlar / Trade-off'lar
50
+ - [Dezavantaj 1]
51
+ - [Getirdiği teknik borç (varsa `workspace/memory/backlog/DXX-` aç)]
52
+
53
+ ### Etkilenen Bileşenler
54
+ - [Hangi modül/dosya/akış etkilenecek]
55
+
56
+ ---
57
+
58
+ ## Implementation Notes
59
+ - [Uygulama ipuçları]
60
+ - [Migration adımları (gerekiyorsa)]
61
+ - [Rollback stratejisi]
62
+
63
+ ## References
64
+ - [İlgili dokümantasyon]
65
+ - [İlgili PR/commit]
66
+ - [İlgili Spike: SXX]
@@ -0,0 +1,10 @@
1
+ # Technical Debt Dashboard
2
+
3
+ | ID | Başlık | Öncelik | Kaynak | Owner | Son Güncelleme |
4
+ | --- | --- | --- | --- | --- | --- |
5
+ | DXX | [örnek borç] | P2 | learned.md | +engineering-manager | YYYY-MM-DD |
6
+
7
+ ## Notlar
8
+ - Öncelik: P0 (kritik) | P1 (yüksek) | P2 (orta) | P3 (düşük)
9
+ - Kaynak: learned.md, retrospective, security audit, code review
10
+ - `09-maintenance-cycle.md` ile düzenli triage yapılır.
@@ -0,0 +1,10 @@
1
+ # Epic Dashboard
2
+
3
+ | ID | Başlık | Status | Owner | Child Item Sayısı | Son Güncelleme |
4
+ | --- | --- | --- | --- | --- | --- |
5
+ | EXX | [örnek epic] | To Do | +product-manager | 0 | YYYY-MM-DD |
6
+
7
+ ## Notlar
8
+ - Epic'ler `EXX-[epic-name].md` dosyalarında detaylandırılır.
9
+ - Status: To Do | In Progress | Review | Done | Blocked
10
+ - Child sayısı `workspace/memory/backlog/` altındaki bağlı task/bug/debt sayısıdır.
@@ -0,0 +1,10 @@
1
+ # Version Dashboard
2
+
3
+ | Version | Tarih | Status | İçerik (Epic/Task ID'leri) | Release Notes |
4
+ | --- | --- | --- | --- | --- |
5
+ | v0.1.0 | YYYY-MM-DD | Planned | EXX, TXX, TXX | `workspace/reports/release-notes.md` |
6
+
7
+ ## Notlar
8
+ - Status: Planned | In Progress | Released | Rolled Back
9
+ - Bir version birden fazla epic/task içerebilir.
10
+ - Released'a geçmek için `06-deployment-cycle.md` tamamlanmalı.