speccrew 0.1.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 (153) hide show
  1. package/.speccrew/agents/speccrew-feature-designer.md +142 -0
  2. package/.speccrew/agents/speccrew-product-manager.md +61 -0
  3. package/.speccrew/agents/speccrew-system-designer.md +200 -0
  4. package/.speccrew/agents/speccrew-system-developer.md +238 -0
  5. package/.speccrew/agents/speccrew-task-worker.md +80 -0
  6. package/.speccrew/agents/speccrew-team-leader.md +92 -0
  7. package/.speccrew/agents/speccrew-test-manager.md +313 -0
  8. package/.speccrew/skills/speccrew-create-agents/SKILL.md +98 -0
  9. package/.speccrew/skills/speccrew-create-agents/templates/agents/designer-agent.md +54 -0
  10. package/.speccrew/skills/speccrew-create-agents/templates/agents/dev-agent.md +79 -0
  11. package/.speccrew/skills/speccrew-create-agents/templates/agents/test-agent.md +80 -0
  12. package/.speccrew/skills/speccrew-dev-backend/SKILL.md +205 -0
  13. package/.speccrew/skills/speccrew-dev-backend/templates/TASK-RECORD-TEMPLATE.md +118 -0
  14. package/.speccrew/skills/speccrew-dev-desktop/SKILL.md +258 -0
  15. package/.speccrew/skills/speccrew-dev-desktop/templates/TASK-RECORD-TEMPLATE.md +161 -0
  16. package/.speccrew/skills/speccrew-dev-frontend/SKILL.md +202 -0
  17. package/.speccrew/skills/speccrew-dev-frontend/templates/TASK-RECORD-TEMPLATE.md +115 -0
  18. package/.speccrew/skills/speccrew-dev-mobile/SKILL.md +200 -0
  19. package/.speccrew/skills/speccrew-dev-mobile/templates/TASK-RECORD-TEMPLATE.md +125 -0
  20. package/.speccrew/skills/speccrew-fd-api-contract/SKILL.md +73 -0
  21. package/.speccrew/skills/speccrew-fd-api-contract/templates/API-CONTRACT-TEMPLATE.md +96 -0
  22. package/.speccrew/skills/speccrew-fd-feature-design/SKILL.md +395 -0
  23. package/.speccrew/skills/speccrew-fd-feature-design/templates/FEATURE-SPEC-TEMPLATE.md +387 -0
  24. package/.speccrew/skills/speccrew-get-timestamp/SKILL.md +80 -0
  25. package/.speccrew/skills/speccrew-get-timestamp/scripts/get-timestamp.js +35 -0
  26. package/.speccrew/skills/speccrew-knowledge-bizs-api-analyze/SKILL.md +1116 -0
  27. package/.speccrew/skills/speccrew-knowledge-bizs-api-analyze/templates/FEATURE-DETAIL-TEMPLATE-FASTAPI.md +462 -0
  28. package/.speccrew/skills/speccrew-knowledge-bizs-api-analyze/templates/FEATURE-DETAIL-TEMPLATE-JAVA.md +480 -0
  29. package/.speccrew/skills/speccrew-knowledge-bizs-api-analyze/templates/FEATURE-DETAIL-TEMPLATE-NET.md +464 -0
  30. package/.speccrew/skills/speccrew-knowledge-bizs-api-analyze/templates/FEATURE-DETAIL-TEMPLATE.md +480 -0
  31. package/.speccrew/skills/speccrew-knowledge-bizs-api-analyze/templates/MODULE-OVERVIEW-TEMPLATE.md +367 -0
  32. package/.speccrew/skills/speccrew-knowledge-bizs-dispatch/SKILL.md +667 -0
  33. package/.speccrew/skills/speccrew-knowledge-bizs-dispatch/STATUS-FORMATS.md +74 -0
  34. package/.speccrew/skills/speccrew-knowledge-bizs-dispatch/scripts/batch-orchestrator.js +176 -0
  35. package/.speccrew/skills/speccrew-knowledge-bizs-dispatch/scripts/get-next-batch.js +150 -0
  36. package/.speccrew/skills/speccrew-knowledge-bizs-dispatch/scripts/get-pending-features.js +106 -0
  37. package/.speccrew/skills/speccrew-knowledge-bizs-dispatch/scripts/mark-stale.js +249 -0
  38. package/.speccrew/skills/speccrew-knowledge-bizs-dispatch/scripts/process-batch-results.js +848 -0
  39. package/.speccrew/skills/speccrew-knowledge-bizs-dispatch/scripts/update-feature-status.js +226 -0
  40. package/.speccrew/skills/speccrew-knowledge-bizs-init-features/SKILL.md +264 -0
  41. package/.speccrew/skills/speccrew-knowledge-bizs-init-features/examples/features.json +34 -0
  42. package/.speccrew/skills/speccrew-knowledge-bizs-init-features/scripts/generate-inventory.js +867 -0
  43. package/.speccrew/skills/speccrew-knowledge-bizs-init-features/scripts/test-inventory.js +26 -0
  44. package/.speccrew/skills/speccrew-knowledge-bizs-module-classify/SKILL.md +165 -0
  45. package/.speccrew/skills/speccrew-knowledge-bizs-module-classify/scripts/apply-module-mapping.js +208 -0
  46. package/.speccrew/skills/speccrew-knowledge-bizs-module-classify/scripts/extract-module-summary.js +180 -0
  47. package/.speccrew/skills/speccrew-knowledge-bizs-module-classify/scripts/reindex-modules.js +358 -0
  48. package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze/SKILL.md +1055 -0
  49. package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze/templates/FEATURE-DETAIL-TEMPLATE-UI-DESKTOP.md +303 -0
  50. package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze/templates/FEATURE-DETAIL-TEMPLATE-UI-ELECTRON.md +327 -0
  51. package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze/templates/FEATURE-DETAIL-TEMPLATE-UI-MINIAPP.md +292 -0
  52. package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze/templates/FEATURE-DETAIL-TEMPLATE-UI-MOBILE.md +281 -0
  53. package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze/templates/FEATURE-DETAIL-TEMPLATE-UI.md +324 -0
  54. package/.speccrew/skills/speccrew-knowledge-bizs-ui-style-extract/SKILL.md +270 -0
  55. package/.speccrew/skills/speccrew-knowledge-bizs-ui-style-extract/templates/COMPONENT-PATTERN-TEMPLATE.md +33 -0
  56. package/.speccrew/skills/speccrew-knowledge-bizs-ui-style-extract/templates/LAYOUT-PATTERN-TEMPLATE.md +33 -0
  57. package/.speccrew/skills/speccrew-knowledge-bizs-ui-style-extract/templates/PAGE-TYPE-TEMPLATE.md +33 -0
  58. package/.speccrew/skills/speccrew-knowledge-graph-query/SKILL.md +229 -0
  59. package/.speccrew/skills/speccrew-knowledge-graph-query/scripts/graph-query.js +549 -0
  60. package/.speccrew/skills/speccrew-knowledge-graph-write/SKILL.md +181 -0
  61. package/.speccrew/skills/speccrew-knowledge-graph-write/scripts/graph-write.js +651 -0
  62. package/.speccrew/skills/speccrew-knowledge-module-summarize/SKILL.md +305 -0
  63. package/.speccrew/skills/speccrew-knowledge-module-summarize/templates/MODULE-OVERVIEW-TEMPLATE.md +400 -0
  64. package/.speccrew/skills/speccrew-knowledge-system-summarize/SKILL.md +351 -0
  65. package/.speccrew/skills/speccrew-knowledge-system-summarize/templates/SYSTEM-OVERVIEW-TEMPLATE.md +294 -0
  66. package/.speccrew/skills/speccrew-knowledge-techs-dispatch/SKILL.md +683 -0
  67. package/.speccrew/skills/speccrew-knowledge-techs-dispatch/STATUS-FORMATS.md +550 -0
  68. package/.speccrew/skills/speccrew-knowledge-techs-dispatch/templates/techs-manifest-EXAMPLE.json +35 -0
  69. package/.speccrew/skills/speccrew-knowledge-techs-generate/SKILL.md +1087 -0
  70. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/ARCHITECTURE-TEMPLATE.md +240 -0
  71. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/COLOR-SYSTEM-TEMPLATE.md +68 -0
  72. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/COMPONENT-LIBRARY-TEMPLATE.md +86 -0
  73. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/CONVENTIONS-BUILD-TEMPLATE.md +466 -0
  74. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/CONVENTIONS-DATA-TEMPLATE.md +432 -0
  75. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/CONVENTIONS-DESIGN-TEMPLATE.md +1209 -0
  76. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/CONVENTIONS-DEV-TEMPLATE.md +1433 -0
  77. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/CONVENTIONS-SYSTEM-TEST-TEMPLATE.md +1052 -0
  78. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/CONVENTIONS-UNIT-TEST-TEMPLATE.md +946 -0
  79. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/INDEX-TEMPLATE.md +29 -0
  80. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/PAGE-LAYOUTS-TEMPLATE.md +69 -0
  81. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/PAGE-TYPE-SUMMARY-TEMPLATE.md +74 -0
  82. package/.speccrew/skills/speccrew-knowledge-techs-generate/templates/TECH-STACK-TEMPLATE.md +232 -0
  83. package/.speccrew/skills/speccrew-knowledge-techs-generate-conventions/SKILL.md +628 -0
  84. package/.speccrew/skills/speccrew-knowledge-techs-generate-ui-style/SKILL.md +392 -0
  85. package/.speccrew/skills/speccrew-knowledge-techs-index/SKILL.md +489 -0
  86. package/.speccrew/skills/speccrew-knowledge-techs-index/templates/INDEX-TEMPLATE.md +243 -0
  87. package/.speccrew/skills/speccrew-knowledge-techs-init/SKILL.md +269 -0
  88. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/SKILL.md +562 -0
  89. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/BUSINESS-COMPONENTS-TEMPLATE.md +171 -0
  90. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/COMMON-COMPONENTS-TEMPLATE.md +177 -0
  91. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/COMPONENT-INDIVIDUAL-TEMPLATE.md +80 -0
  92. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/COMPONENT-LIBRARY-TEMPLATE.md +118 -0
  93. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/LAYOUT-INDIVIDUAL-TEMPLATE.md +97 -0
  94. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/LAYOUT-PATTERNS-TEMPLATE.md +208 -0
  95. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/NAVIGATION-PATTERNS-TEMPLATE.md +157 -0
  96. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/PAGE-TYPE-INDIVIDUAL-TEMPLATE.md +123 -0
  97. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/PAGE-TYPE-SUMMARY-TEMPLATE.md +58 -0
  98. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/SPACING-TEMPLATE.md +119 -0
  99. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/STYLE-SYSTEM-TEMPLATE.md +117 -0
  100. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/TYPOGRAPHY-TEMPLATE.md +107 -0
  101. package/.speccrew/skills/speccrew-knowledge-techs-ui-analyze/templates/UI-STYLE-GUIDE-TEMPLATE.md +171 -0
  102. package/.speccrew/skills/speccrew-pm-requirement-analysis/SKILL.md +434 -0
  103. package/.speccrew/skills/speccrew-pm-requirement-analysis/templates/BIZS-MODELING-TEMPLATE.md +332 -0
  104. package/.speccrew/skills/speccrew-pm-requirement-analysis/templates/PRD-TEMPLATE.md +200 -0
  105. package/.speccrew/skills/speccrew-pm-requirement-assess/SKILL.md +195 -0
  106. package/.speccrew/skills/speccrew-project-diagnosis/SKILL.md +208 -0
  107. package/.speccrew/skills/speccrew-project-diagnosis/templates/DIAGNOSIS-REPORT-TEMPLATE.md +202 -0
  108. package/.speccrew/skills/speccrew-sd-backend/SKILL.md +188 -0
  109. package/.speccrew/skills/speccrew-sd-backend/templates/INDEX-TEMPLATE.md +85 -0
  110. package/.speccrew/skills/speccrew-sd-backend/templates/SD-BACKEND-TEMPLATE.md +269 -0
  111. package/.speccrew/skills/speccrew-sd-desktop/SKILL.md +192 -0
  112. package/.speccrew/skills/speccrew-sd-desktop/templates/INDEX-TEMPLATE.md +271 -0
  113. package/.speccrew/skills/speccrew-sd-desktop/templates/SD-DESKTOP-TEMPLATE.md +673 -0
  114. package/.speccrew/skills/speccrew-sd-frontend/SKILL.md +176 -0
  115. package/.speccrew/skills/speccrew-sd-frontend/templates/INDEX-TEMPLATE.md +184 -0
  116. package/.speccrew/skills/speccrew-sd-frontend/templates/SD-FRONTEND-TEMPLATE.md +382 -0
  117. package/.speccrew/skills/speccrew-sd-mobile/SKILL.md +189 -0
  118. package/.speccrew/skills/speccrew-sd-mobile/templates/INDEX-TEMPLATE.md +219 -0
  119. package/.speccrew/skills/speccrew-sd-mobile/templates/SD-MOBILE-TEMPLATE.md +534 -0
  120. package/.speccrew/skills/speccrew-test-case-design/SKILL.md +284 -0
  121. package/.speccrew/skills/speccrew-test-case-design/templates/TEST-CASE-DESIGN-TEMPLATE.md +263 -0
  122. package/.speccrew/skills/speccrew-test-code-gen/SKILL.md +313 -0
  123. package/.speccrew/skills/speccrew-test-code-gen/templates/TEST-CODE-PLAN-TEMPLATE.md +180 -0
  124. package/.speccrew/skills/speccrew-test-execute/SKILL.md +283 -0
  125. package/.speccrew/skills/speccrew-test-execute/templates/BUG-REPORT-TEMPLATE.md +50 -0
  126. package/.speccrew/skills/speccrew-test-execute/templates/TEST-REPORT-TEMPLATE.md +57 -0
  127. package/.speccrew/skills/speccrew-workflow-diagnose/SKILL.md +155 -0
  128. package/LICENSE +21 -0
  129. package/README.ar.md +318 -0
  130. package/README.en.md +318 -0
  131. package/README.es.md +318 -0
  132. package/README.md +340 -0
  133. package/bin/cli.js +62 -0
  134. package/lib/commands/doctor.js +138 -0
  135. package/lib/commands/init.js +231 -0
  136. package/lib/commands/list.js +114 -0
  137. package/lib/commands/uninstall.js +117 -0
  138. package/lib/commands/update.js +351 -0
  139. package/lib/ide-adapters.js +73 -0
  140. package/lib/utils.js +104 -0
  141. package/package.json +28 -0
  142. package/workspace-template/docs/configs/document-templates.json +667 -0
  143. package/workspace-template/docs/configs/platform-mapping.json +194 -0
  144. package/workspace-template/docs/configs/tech-stack-mappings.json +313 -0
  145. package/workspace-template/docs/configs/validation-rules.json +87 -0
  146. package/workspace-template/docs/rules/mermaid-rule.md +114 -0
  147. package/workspace-template/docs/solutions/Agent/346/212/200/350/203/275/345/256/232/344/271/211+/351/234/200/346/261/202/346/226/207/346/241/243+UML/344/275/277/347/224/250/346/250/241/346/235/277/357/274/210ISA-95/345/205/255/346/256/265/345/274/217/350/236/215/345/220/210/347/211/210/357/274/211.md +586 -0
  148. package/workspace-template/docs/solutions/agent-knowledge-map.md +238 -0
  149. package/workspace-template/docs/solutions/bizs-knowledge-pipeline.md +678 -0
  150. package/workspace-template/docs/solutions/harness.md +410 -0
  151. package/workspace-template/docs/solutions/knowledge-incremental-sync-spec.md +943 -0
  152. package/workspace-template/docs/solutions/techs-knowledge-pipeline.md +803 -0
  153. package/workspace-template/docs/solutions/workspace-structure.md +318 -0
package/README.ar.md ADDED
@@ -0,0 +1,318 @@
1
+ # SpecCrew - إطار عمل هندسة البرمجيات المدعوم بالذكاء الاصطناعي
2
+
3
+ <p align="center">
4
+ <a href="./README.md">中文</a> |
5
+ <a href="./README.en.md">English</a> |
6
+ <a href="./README.ar.md">العربية</a> |
7
+ <a href="./README.es.md">Español</a>
8
+ </p>
9
+
10
+ > فريق تطوير افتراضي بالذكاء الاصطناعي يتيح التنفيذ الهندسي السريع لأي مشروع برمجي
11
+
12
+ ## ما هو SpecCrew؟
13
+
14
+ SpecCrew هو إطار عمل مدمج لفريق تطوير افتراضي بالذكاء الاصطناعي. يحول سير عمل هندسة البرمجيات المهنية (PRD → Feature Design → System Design → Dev → Test) إلى سير عمل وكلاء (Agent) قابلة لإعادة الاستخدام، مما يساعد فرق التطوير على تحقيق التطوير المدفوع بالمواصفات (SDD)، ومناسب بشكل خاص للمشاريع الحالية.
15
+
16
+ من خلال دمج الوكلاء والمهارات في المشاريع الحالية، يمكن للفرق تهيئة أنظمة توثيق المشاريع وفريق البرمجيات الافتراضي بسرعة، وتنفيذ الميزات الجديدة والتعديلات باتباع سير عمل الهندسة القياسية.
17
+
18
+ ---
19
+
20
+ ## 8 مشاكل أساسية تم حلها
21
+
22
+ ### 1. الذكاء الاصطناعي يتجاهل توثيق المشروع الحالي (فجوة المعرفة)
23
+ **المشكلة**: تعتمد أساليب SDD أو Vibe Coding الحالية على الذكاء الاصطناعي لتلخيص المشاريع في الوقت الفعلي، مما يسهل إغفال السياق الحرج ويسبب انحراف نتائج التطوير عن التوقعات.
24
+
25
+ **الحل**: يعمل مستودع `knowledge/` كـ"مصدر الحقيقة الوحيد" للمشروع، حيث يتراكم تصميم الهندسة المعمارية والوحدات الوظيفية وعمليات الأعمال لضمان بقاء المتطلبات على المسار الصحيح من المصدر.
26
+
27
+ ### 2. الانتقال المباشر من PRD إلى التوثيق التقني (حذف المحتوى)
28
+ **المشكلة**: الانتقال المباشر من PRD إلى التصميم التفصيلي يسهل إغفال تفاصيل المتطلبات، مما يتسبب في انحراف الميزات المنفذة عن المتطلبات.
29
+
30
+ **الحل**: إدخال مرحلة **وثيقة الحل (Solution)**، مع التركيز فقط على هيكل المتطلبات دون التفاصيل التقنية:
31
+ - ما هي الصفحات والمكونات المضمنة
32
+ - تدفقات عمليات الصفحات
33
+ - منطق المعالجة الخلفية
34
+ - هيكل تخزين البيانات
35
+
36
+ يحتاج التطوير فقط إلى "ملء اللحم" بناءً على المكدس التقني المحدد، مما يضمن نمو الميزات "بالقرب من العظم (المتطلبات)."
37
+
38
+ ### 3. نطاق البحث غير المؤكد للوكيل (عدم اليقين)
39
+ **المشكلة**: في المشاريع المعقدة، يؤدي البحث الواسع للذكاء الاصطناعي في الكود والمستندات إلى نتائج غير مؤكدة، مما يجعل ضمان الاتساق صعباً.
40
+
41
+ **الحل**: هياكل دليل واضحة وقوالب للمستندات، مصممة بناءً على احتياجات كل وكيل، تنفذ **الإفصاح التدريجي والتحميل عند الطلب** لضمان الحتمية.
42
+
43
+ ### 4. نقص الخطوات والمهام (انقطاع العملية)
44
+ **المشكلة**: نقص التغطية الكاملة لسير عمل الهندسة يسهل إغفال الخطوات الحرجة، مما يجعل ضمان الجودة صعباً.
45
+
46
+ **الحل**: تغطية دورة حياة هندسة البرمجيات الكاملة:
47
+ ```
48
+ PRD (المتطلبات) → Solution (التخطيط) → API Contract
49
+ → Design → Dev (التطوير) → Test (الاختبار)
50
+ ```
51
+ - مخرجات كل مرحلة هي مدخلات المرحلة التالية
52
+ - كل خطوة تتطلب تأكيداً بشرياً قبل المتابعة
53
+ - جميع تنفيذات الوكلاء لها قوائم مهام مع فحص ذاتي بعد الانتهاء
54
+
55
+ ### 5. كفاءة التعاون المنخفضة في الفريق (جزر المعرفة)
56
+ **المشكلة**: من الصعب مشاركة خبرة البرمجة بالذكاء الاصطناعي عبر الفرق، مما يؤدي إلى أخطاء متكررة.
57
+
58
+ **الحل**: جميع الوكلاء والمهارات والمستندات ذات الصلة تخضع للتحكم في الإصدار مع الكود المصدري:
59
+ - تحسين شخص واحد، يشاركه الفريق
60
+ - تراكم المعرفة في قاعدة الكود
61
+ - تحسين كفاءة التعاون في الفريق
62
+
63
+ ### 7. سياق الوكيل الواحد طويل جداً (اختناق الأداء)
64
+ **المشكلة**: المهام المعقدة الكبيرة تتجاوز نوافذ سياق الوكيل الواحد، مما يسبب انحرافاً في الفهم وانخفاضاً في جودة المخرجات.
65
+
66
+ **الحل**: **آلية الإرسال التلقائي للوكلاء الفرعيين**:
67
+ - يتم تحديد المهام المعقدة تلقائياً وتقسيمها إلى مهام فرعية
68
+ - كل مهمة فرعية تنفذها وكيل فرعي مستقل بسياق معزول
69
+ - يقوم الوكيل الأب بالتنسيق والتجميع لضمان الاتساق العام
70
+ - يتجنب تضخم سياق الوكيل الواحد، مما يضمن جودة المخرجات
71
+
72
+ ### 8. فوضى تكرار المتطلبات (صعوبة الإدارة)
73
+ **المشكلة**: المتطلبات المتعددة المختلطة في نفس الفرع تؤثر على بعضها البعض، مما يجعل التتبع والاسترجاع صعباً.
74
+
75
+ **الحل**: **كل متطلب كمشروع مستقل**:
76
+ - كل متطلب ينشئ دليل تكرار مستقل `iterations/iXXX-[اسم-المتطلب]/`
77
+ - عزل كامل: المستندات والتصميم والكود والاختبارات تدار بشكل مستقل
78
+ - تكرار سريع: تسليم بحبوب صغيرة، تحقق سريع، نشر سريع
79
+ - أرشفة مرنة: بعد الانتهاء، الأرشفة إلى `archive/` مع إمكانية تتبع تاريخي واضح
80
+
81
+ ### 6. تأخر تحديث المستندات (تحلل المعرفة)
82
+ **المشكلة**: تصبح المستندات قديمة مع تطور المشاريع، مما يتسبب في عمل الذكاء الاصطناعي بمعلومات غير صحيحة.
83
+
84
+ **الحل**: الوكلاء لديهم قدرات تحديث المستندات التلقائي، مما يزامن تغييرات المشروع في الوقت الفعلي للحفاظ على دقة قاعدة المعرفة.
85
+
86
+ ---
87
+
88
+ ## سير العمل الأساسي
89
+
90
+ ```mermaid
91
+ graph LR
92
+ A[PRD<br/>المتطلبات] --> B[Solution<br/>التخطيط التقني]
93
+ B --> C[API Contract<br/>عقد الواجهة]
94
+ C --> D[Design<br/>التصميم التفصيلي]
95
+ D --> E[Dev<br/>التنفيذ]
96
+ E --> F[Test<br/>الاختبار]
97
+ F --> G[Archive<br/>الأرشفة]
98
+
99
+ H[Knowledge<br/>المستودع] -.-> A
100
+ H -.-> B
101
+ H -.-> D
102
+ H -.-> E
103
+
104
+ E -.-> H
105
+ F -.-> H
106
+ ```
107
+
108
+ ### أوصاف المراحل
109
+
110
+ | المرحلة | الوكيل | المدخلات | المخرجات | التأكيد البشري |
111
+ |---------|--------|----------|----------|---------------|
112
+ | PRD | PM | متطلبات المستخدم | وثيقة متطلبات المنتج | ✅ مطلوب |
113
+ | Solution | Planner | PRD | الحل التقني + عقد API | ✅ مطلوب |
114
+ | Design | Designer | Solution | مستندات التصميم الأمامي/الخلفي | ✅ مطلوب |
115
+ | Dev | Dev | Design | الكود + سجلات المهام | ✅ مطلوب |
116
+ | Test | Test | مخرجات Dev + معايير قبول PRD | تقرير الاختبار | ✅ مطلوب |
117
+
118
+ ---
119
+
120
+ ## المقارنة مع الحلول الموجودة
121
+
122
+ | البُعد | Vibe Coding | Ralph Loop | **SpecCrew** |
123
+ |--------|-------------|------------|-------------|
124
+ | الاعتماد على المستندات | يتجاهل المستندات الموجودة | يعتمد على AGENTS.md | **قاعدة معرفة منظمة** |
125
+ | نقل المتطلبات | ترميز مباشر | PRD → Code | **PRD → Feature Design → System Design → Code** |
126
+ | المشاركة البشرية | الحد الأدنى | عند البدء | **في كل مرحلة** |
127
+ | اكتمال العملية | ضعيف | متوسط | **سير عمل هندسي كامل** |
128
+ | التعاون في الفريق | صعب المشاركة | كفاءة شخصية | **مشاركة المعرفة في الفريق** |
129
+ | إدارة السياق | مثيل واحد | حلقة مثيل واحد | **إرسال تلقائي للوكلاء الفرعيين** |
130
+ | إدارة التكرار | مختلط | قائمة المهام | **المتطلب كمشروع، تكرار مستقل** |
131
+ | الحتمية | منخفضة | متوسطة | **عالية (الإفصاح التدريجي)** |
132
+
133
+ ---
134
+
135
+ ## البدء السريع
136
+
137
+ ### 1. تثبيت SpecCrew
138
+
139
+ **الطريقة 1: سكريبت التثبيت بنقرة واحدة (موصى به، Qoder IDE فقط)**
140
+
141
+ ```bash
142
+ # macOS / Linux / WSL - التثبيت من GitHub
143
+ curl -fsSL https://raw.githubusercontent.com/charlesmu99/SpecCrew/main/scripts/install-qoder.sh | bash
144
+
145
+ # macOS / Linux / WSL - التثبيت من Gitee (مرآة الصين)
146
+ curl -fsSL https://gitee.com/amutek/speccrew/raw/main/scripts/install-qoder.sh | bash
147
+ ```
148
+
149
+ ```powershell
150
+ # Windows - التثبيت من GitHub
151
+ Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/charlesmu99/SpecCrew/main/scripts/install-qoder.ps1").Content
152
+
153
+ # Windows - التثبيت من Gitee (مرآة الصين)
154
+ Invoke-Expression (Invoke-WebRequest -Uri "https://gitee.com/amutek/speccrew/raw/main/scripts/install-qoder.ps1").Content
155
+ ```
156
+
157
+ > **ملاحظة**: سكريبت التثبيت بنقرة واحدة يدعم حالياً Qoder IDE فقط. للـ IDEs الأخرى (VS Code, Cursor, إلخ)، يرجى استخدام طريقة النسخ اليدوي أدناه.
158
+
159
+ **الطريقة 2: النسخ اليدوي (عالمي لجميع IDEs)**
160
+
161
+ ```bash
162
+ # استنساخ المستودع والنسخ إلى مشروع موجود
163
+ git clone https://github.com/charlesmu99/SpecCrew.git
164
+ # أو: git clone https://gitee.com/amutek/SpecCrew.git
165
+
166
+ # نسخ إلى المشروع الهدف (تعديل حسب دليل تكوين IDE الخاص بك)
167
+ cp -r SpecCrew/.speccrew /path/to/your-project/
168
+ cp -r SpecCrew/SpecCrew-workspace /path/to/your-project/
169
+
170
+ # لـ Qoder IDE، انسخ أيضًا إلى دليل .qoder/
171
+ cp -r SpecCrew/.speccrew/agents/* /path/to/your-project/.qoder/agents/
172
+ cp -r SpecCrew/.speccrew/skills/* /path/to/your-project/.qoder/skills/
173
+ ```
174
+
175
+ ### 2. تهيئة المشروع
176
+
177
+ ```bash
178
+ # تشغيل مهارة التهيئة لإنشاء قاعدة المعرفة وهيكل المشروع تلقائياً
179
+ # يتم تنفيذها تلقائياً بواسطة مهارة SpecCrew-project-init
180
+ ```
181
+
182
+ ### 3. بدء سير عمل التطوير
183
+
184
+ ```bash
185
+ # 1. إنشاء PRD
186
+ # 2. إنشاء Solution
187
+ # 3. تأكيد عقد API
188
+ # 4. التصميم التفصيلي
189
+ # 5. تنفيذ التطوير
190
+ # 6. الاختبار
191
+ ```
192
+
193
+ ### 4. إلغاء تثبيت SpecCrew
194
+
195
+ **الطريقة 1: سكريبت إلغاء التثبيت بنقرة واحدة (موصى به، Qoder IDE فقط)**
196
+
197
+ ```bash
198
+ # macOS / Linux / WSL - إلغاء التثبيت من GitHub
199
+ curl -fsSL https://raw.githubusercontent.com/charlesmu99/SpecCrew/main/scripts/uninstall-qoder.sh | bash
200
+
201
+ # macOS / Linux / WSL - إلغاء التثبيت من Gitee (مرآة الصين)
202
+ curl -fsSL https://gitee.com/amutek/speccrew/raw/main/scripts/uninstall-qoder.sh | bash
203
+ ```
204
+
205
+ ```powershell
206
+ # Windows - إلغاء التثبيت من GitHub
207
+ Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/charlesmu99/SpecCrew/main/scripts/uninstall-qoder.ps1").Content
208
+
209
+ # Windows - إلغاء التثبيت من Gitee (مرآة الصين)
210
+ Invoke-Expression (Invoke-WebRequest -Uri "https://gitee.com/amutek/speccrew/raw/main/scripts/uninstall-qoder.ps1").Content
211
+ ```
212
+
213
+ > **ملاحظة**: سكريبت إلغاء التثبيت بنقرة واحدة يدعم حالياً Qoder IDE فقط.
214
+
215
+ **الطريقة 2: إلغاء التثبيت اليدوي (عالمي لجميع IDEs)**
216
+
217
+ ```bash
218
+ # حذف دليل SpecCrew-workspace
219
+ rm -rf SpecCrew-workspace/
220
+
221
+ # حذف الملفات ببادئة SpecCrew- في .speccrew/ (الحفاظ على المحتوى المخصص)
222
+ rm -rf .speccrew/agents/SpecCrew-*.md
223
+ rm -rf .speccrew/skills/SpecCrew-*/
224
+
225
+ # لـ Qoder IDE، نظف أيضًا دليل .qoder/
226
+ rm -rf .qoder/agents/SpecCrew-*.md
227
+ rm -rf .qoder/skills/SpecCrew-*/
228
+ ```
229
+
230
+ > **ملاحظة**: سيؤدي إلغاء التثبيت إلى الحفاظ على ملفات المصدر والمحتوى المخصص في `.speccrew/`. لإزالة تكوينات IDE بالكامل، احذف دليل التكوين المقابل يدوياً (مثل `.qoder/`).
231
+
232
+ ---
233
+
234
+ ## هيكل الدليل
235
+
236
+ ```
237
+ your-project/
238
+ ├── .speccrew/ # ملفات مصدر SpecCrew (قابلة للتحكم في الإصدار)
239
+ ├── .qoder/ # تكوين Qoder IDE (وقت التشغيل)
240
+ │ ├── agents/ # 6 وكلاء الأدوار
241
+ │ └── skills/ # 16 مهارة
242
+
243
+ └── SpecCrew-workspace/ # مساحة العمل (يتم إنشاؤها أثناء التهيئة)
244
+ ├── docs/ # المستندات الإدارية
245
+ │ ├── rules/ # تكوينات القواعد
246
+ │ └── solutions/ # مستندات الحلول
247
+ │ └── agent-knowledge-map.md
248
+
249
+ ├── iterations/ # مشاريع التكرار (يتم إنشاؤها ديناميكياً)
250
+ │ └── {رقم}-{نوع}-{اسم}/ # مثال: 001-feature-order
251
+ │ ├── 00.docs/ # المتطلبات الأصلية
252
+ │ ├── 01.product-requirement/ # متطلبات المنتج
253
+ │ ├── 02.feature-design/ # تصميم الميزات
254
+ │ ├── 03.system-design/ # تصميم النظام
255
+ │ ├── 04.development/ # مرحلة التطوير
256
+ │ ├── 05.test/ # مرحلة الاختبار
257
+ │ └── 06.delivery/ # مرحلة التسليم
258
+
259
+ ├── iteration-archives/ # أرشيف التكرار
260
+ │ └── {رقم}-{نوع}-{اسم}-{تاريخ}/
261
+
262
+ └── knowledges/ # قاعدة المعرفة
263
+ ├── base/ # البيانات الوصفية الأساسية
264
+ │ ├── diagnosis-reports/ # تقارير التشخيص
265
+ │ ├── sync-state/ # حالة المزامنة
266
+ │ └── tech-debts/ # الديون التقنية
267
+
268
+ ├── bizs/ # المعرفة التجارية
269
+ │ └── {نوع-المنصة}/
270
+ │ └── {اسم-الوحدة}/
271
+
272
+ └── techs/ # المعرفة التقنية
273
+ └── {معرف-المنصة}/
274
+ ```
275
+
276
+ ---
277
+
278
+ ## المبادئ التصميمية الأساسية
279
+
280
+ 1. **المدفوع بالمواصفات**: كتابة المواصفات أولاً، ثم السماح للكود بال"نمو" منها
281
+ 2. **الإفصاح التدريجي**: الوكلاء يبدأون من نقاط دخول دنيا، تحميل المعلومات عند الطلب
282
+ 3. **التأكيد البشري**: مخرجات كل مرحلة تتطلب تأكيداً بشرياً لمنع انحراف الذكاء الاصطناعي
283
+ 4. **عزل السياق**: المهام الكبيرة مقسمة إلى مهام فرعية صغيرة معزولة السياق
284
+ 5. **التعاون الوكيل الفرعي**: المهام المعقدة ترسل تلقائياً للوكلاء الفرعيين لتجنب تضخم سياق الوكيل الواحد
285
+ 6. **التكرار السريع**: كل متطلب كمشروع مستقل للتسليم السريع والتحقق
286
+ 7. **مشاركة المعرفة**: جميع التكوينات تخضع للتحكم في الإصدار مع الكود المصدري
287
+
288
+ ---
289
+
290
+ ## حالات الاستخدام
291
+
292
+ ### ✅ موصى به لـ
293
+ - المشاريع المتوسطة إلى الكبيرة التي تتطلب سير عمل موحد
294
+ - تطوير البرمجيات التعاوني للفرق
295
+ - تحويل الهندسة للمشاريع القديمة
296
+ - المنتجات التي تتطلب صيانة طويلة الأجل
297
+
298
+ ### ❌ غير مناسب لـ
299
+ - التحقق السريع من النماذج الأولية الشخصية
300
+ - المشاريع الاستكشافية بمتطلبات غير مؤكدة للغاية
301
+ - البرامج النصية أو الأدوات لمرة واحدة
302
+
303
+ ---
304
+
305
+ ## مزيد من المعلومات
306
+
307
+ - **خريطة معرفة الوكيل**: [SpecCrew-workspace/docs/agent-knowledge-map.md](./SpecCrew-workspace/docs/agent-knowledge-map.md)
308
+ - **GitHub**: https://github.com/charlesmu99/SpecCrew
309
+ - **Gitee**: https://gitee.com/amutek/SpecCrew
310
+ - **Qoder IDE**: https://qoder.com/
311
+
312
+ ---
313
+
314
+ > **SpecCrew لا يهدف إلى استبدال المطورين، بل إلى أتمتة الأجزاء المملة حتى يمكن للفرق التركيز على عمل أكثر قيمة.**
315
+
316
+ ---
317
+
318
+
package/README.en.md ADDED
@@ -0,0 +1,318 @@
1
+ # SpecCrew - AI-Driven Software Engineering Framework
2
+
3
+ <p align="center">
4
+ <a href="./README.md">中文</a> |
5
+ <a href="./README.en.md">English</a> |
6
+ <a href="./README.ar.md">العربية</a> |
7
+ <a href="./README.es.md">Español</a>
8
+ </p>
9
+
10
+ > A virtual AI development team that enables rapid engineering implementation for any software project
11
+
12
+ ## What is SpecCrew?
13
+
14
+ SpecCrew is an embedded virtual AI development team framework. It transforms professional software engineering workflows (PRD → Feature Design → System Design → Dev → Test) into reusable Agent workflows, helping development teams achieve Specification-Driven Development (SDD), especially suitable for existing projects.
15
+
16
+ By integrating Agents and Skills into existing projects, teams can quickly initialize project documentation systems and virtual software teams, implementing new features and modifications following standard engineering workflows.
17
+
18
+ ---
19
+
20
+ ## 8 Core Problems Solved
21
+
22
+ ### 1. AI Ignores Existing Project Documentation (Knowledge Gap)
23
+ **Problem**: Existing SDD or Vibe Coding methods rely on AI to summarize projects in real-time, easily missing critical context and causing development results to deviate from expectations.
24
+
25
+ **Solution**: The `knowledge/` repository serves as the project's "single source of truth," accumulating architecture design, functional modules, and business processes to ensure requirements stay on track from the source.
26
+
27
+ ### 2. Direct PRD-to-Technical Documentation (Content Omission)
28
+ **Problem**: Jumping directly from PRD to detailed design easily misses requirement details, causing implemented features to deviate from requirements.
29
+
30
+ **Solution**: Introduce the **Solution document** phase, focusing only on the requirement skeleton without technical details:
31
+ - What pages and components are included
32
+ - Page operation flows
33
+ - Backend processing logic
34
+ - Data storage structure
35
+
36
+ Development only needs to "fill in the flesh" based on the specific tech stack, ensuring features grow "close to the bone (requirements)."
37
+
38
+ ### 3. Uncertain Agent Search Scope (Uncertainty)
39
+ **Problem**: In complex projects, AI's broad search of code and documents yields uncertain results, making consistency difficult to guarantee.
40
+
41
+ **Solution**: Clear document directory structures and templates, designed based on each Agent's needs, implementing **progressive disclosure and on-demand loading** to ensure determinism.
42
+
43
+ ### 4. Missing Steps and Tasks (Process Breakdown)
44
+ **Problem**: Lack of complete engineering process coverage easily misses critical steps, making quality difficult to guarantee.
45
+
46
+ **Solution**: Cover the full software engineering lifecycle:
47
+ ```
48
+ PRD (Requirements) → Solution (Planning) → API Contract
49
+ → Design → Dev (Development) → Test (Testing)
50
+ ```
51
+ - Each phase's output is the next phase's input
52
+ - Each step requires human confirmation before proceeding
53
+ - All Agent executions have todo lists with self-check after completion
54
+
55
+ ### 5. Low Team Collaboration Efficiency (Knowledge Silos)
56
+ **Problem**: AI programming experience is difficult to share across teams, leading to repeated mistakes.
57
+
58
+ **Solution**: All Agents, Skills, and related documents are version-controlled with source code:
59
+ - One person's optimization, shared by the team
60
+ - Knowledge accumulated in the codebase
61
+ - Improved team collaboration efficiency
62
+
63
+ ### 7. Single Agent Context Too Long (Performance Bottleneck)
64
+ **Problem**: Large complex tasks exceed single Agent context windows, causing understanding deviation and decreased output quality.
65
+
66
+ **Solution**: **Sub-Agent Auto-Dispatch Mechanism**:
67
+ - Complex tasks are automatically identified and split into subtasks
68
+ - Each subtask is executed by an independent sub-Agent with isolated context
69
+ - Parent Agent coordinates and aggregates to ensure overall consistency
70
+ - Avoids single Agent context expansion, ensuring output quality
71
+
72
+ ### 8. Requirement Iteration Chaos (Management Difficulty)
73
+ **Problem**: Multiple requirements mixed in the same branch affect each other, making tracking and rollback difficult.
74
+
75
+ **Solution**: **Each Requirement as an Independent Project**:
76
+ - Each requirement creates an independent iteration directory `iterations/iXXX-[requirement-name]/`
77
+ - Complete isolation: documents, design, code, and tests managed independently
78
+ - Rapid iteration: small granularity delivery, rapid verification, rapid deployment
79
+ - Flexible archiving: after completion, archive to `archive/` with clear historical traceability
80
+
81
+ ### 6. Document Update Lag (Knowledge Decay)
82
+ **Problem**: Documents become outdated as projects evolve, causing AI to work with incorrect information.
83
+
84
+ **Solution**: Agents have automatic document update capabilities, synchronizing project changes in real-time to keep the knowledge base accurate.
85
+
86
+ ---
87
+
88
+ ## Core Workflow
89
+
90
+ ```mermaid
91
+ graph LR
92
+ A[PRD<br/>Requirements] --> B[Solution<br/>Technical Planning]
93
+ B --> C[API Contract<br/>Interface Contract]
94
+ C --> D[Design<br/>Detailed Design]
95
+ D --> E[Dev<br/>Implementation]
96
+ E --> F[Test<br/>Testing]
97
+ F --> G[Archive<br/>Archiving]
98
+
99
+ H[Knowledge<br/>Repository] -.-> A
100
+ H -.-> B
101
+ H -.-> D
102
+ H -.-> E
103
+
104
+ E -.-> H
105
+ F -.-> H
106
+ ```
107
+
108
+ ### Phase Descriptions
109
+
110
+ | Phase | Agent | Input | Output | Human Confirmation |
111
+ |-------|-------|-------|--------|-------------------|
112
+ | PRD | PM | User Requirements | Product Requirements Document | ✅ Required |
113
+ | Solution | Planner | PRD | Technical Solution + API Contract | ✅ Required |
114
+ | Design | Designer | Solution | Frontend/Backend Design Documents | ✅ Required |
115
+ | Dev | Dev | Design | Code + Task Records | ✅ Required |
116
+ | Test | Test | Dev Output + PRD Acceptance Criteria | Test Report | ✅ Required |
117
+
118
+ ---
119
+
120
+ ## Comparison with Existing Solutions
121
+
122
+ | Dimension | Vibe Coding | Ralph Loop | **SpecCrew** |
123
+ |-----------|-------------|------------|-------------|
124
+ | Document Dependency | Ignores existing docs | Relies on AGENTS.md | **Structured Knowledge Base** |
125
+ | Requirement Transfer | Direct coding | PRD → Code | **PRD → Feature Design → System Design → Code** |
126
+ | Human Involvement | Minimal | At startup | **At every phase** |
127
+ | Process Completeness | Weak | Medium | **Complete engineering workflow** |
128
+ | Team Collaboration | Hard to share | Personal efficiency | **Team knowledge sharing** |
129
+ | Context Management | Single instance | Single instance loop | **Sub-Agent auto-dispatch** |
130
+ | Iteration Management | Mixed | Task list | **Requirement as project, independent iteration** |
131
+ | Determinism | Low | Medium | **High (progressive disclosure)** |
132
+
133
+ ---
134
+
135
+ ## Quick Start
136
+
137
+ ### 1. Install SpecCrew
138
+
139
+ **Method 1: One-click Install Script (Recommended, Qoder IDE only)**
140
+
141
+ ```bash
142
+ # macOS / Linux / WSL - Install from GitHub
143
+ curl -fsSL https://raw.githubusercontent.com/charlesmu99/SpecCrew/main/scripts/install-qoder.sh | bash
144
+
145
+ # macOS / Linux / WSL - Install from Gitee (China Mirror)
146
+ curl -fsSL https://gitee.com/amutek/speccrew/raw/main/scripts/install-qoder.sh | bash
147
+ ```
148
+
149
+ ```powershell
150
+ # Windows - Install from GitHub
151
+ Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/charlesmu99/SpecCrew/main/scripts/install-qoder.ps1").Content
152
+
153
+ # Windows - Install from Gitee (China Mirror)
154
+ Invoke-Expression (Invoke-WebRequest -Uri "https://gitee.com/amutek/speccrew/raw/main/scripts/install-qoder.ps1").Content
155
+ ```
156
+
157
+ > **Note**: One-click installation script currently only supports Qoder IDE. For other IDEs (VS Code, Cursor, etc.), please use manual copy method below.
158
+
159
+ **Method 2: Manual Copy (Universal for all IDEs)**
160
+
161
+ ```bash
162
+ # Clone repository and copy to existing project
163
+ git clone https://github.com/charlesmu99/speccrew.git
164
+ # or: git clone https://gitee.com/amutek/speccrew.git
165
+
166
+ # Copy to target project (adjust based on your IDE config directory)
167
+ cp -r SpecCrew/.speccrew /path/to/your-project/
168
+ cp -r SpecCrew/SpecCrew-workspace /path/to/your-project/
169
+
170
+ # For Qoder IDE, also copy to .qoder/ directory
171
+ cp -r SpecCrew/.speccrew/agents/* /path/to/your-project/.qoder/agents/
172
+ cp -r SpecCrew/.speccrew/skills/* /path/to/your-project/.qoder/skills/
173
+ ```
174
+
175
+ ### 2. Initialize Project
176
+
177
+ ```bash
178
+ # Run initialization Skill to automatically generate knowledge base and project structure
179
+ # Executed automatically by speccrew-project-init Skill
180
+ ```
181
+
182
+ ### 3. Start Development Workflow
183
+
184
+ ```bash
185
+ # 1. Create PRD
186
+ # 2. Generate Solution
187
+ # 3. Confirm API Contract
188
+ # 4. Detailed Design
189
+ # 5. Development Implementation
190
+ # 6. Testing
191
+ ```
192
+
193
+ ### 4. Uninstall SpecCrew
194
+
195
+ **Method 1: One-Click Uninstall Script (Recommended, Qoder IDE only)**
196
+
197
+ ```bash
198
+ # macOS / Linux / WSL - Uninstall from GitHub
199
+ curl -fsSL https://raw.githubusercontent.com/charlesmu99/SpecCrew/main/scripts/uninstall-qoder.sh | bash
200
+
201
+ # macOS / Linux / WSL - Uninstall from Gitee (China Mirror)
202
+ curl -fsSL https://gitee.com/amutek/speccrew/raw/main/scripts/uninstall-qoder.sh | bash
203
+ ```
204
+
205
+ ```powershell
206
+ # Windows - Uninstall from GitHub
207
+ Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/charlesmu99/SpecCrew/main/scripts/uninstall-qoder.ps1").Content
208
+
209
+ # Windows - Uninstall from Gitee (China Mirror)
210
+ Invoke-Expression (Invoke-WebRequest -Uri "https://gitee.com/amutek/speccrew/raw/main/scripts/uninstall-qoder.ps1").Content
211
+ ```
212
+
213
+ > **Note**: One-click uninstall script currently only supports Qoder IDE.
214
+
215
+ **Method 2: Manual Uninstall (Universal for all IDEs)**
216
+
217
+ ```bash
218
+ # Remove speccrew-workspace directory
219
+ rm -rf speccrew-workspace/
220
+
221
+ # Remove SpecCrew-prefixed files in .speccrew/ (preserve custom content)
222
+ rm -rf .speccrew/agents/SpecCrew-*.md
223
+ rm -rf .speccrew/skills/SpecCrew-*/
224
+
225
+ # For Qoder IDE, also clean up .qoder/ directory
226
+ rm -rf .qoder/agents/SpecCrew-*.md
227
+ rm -rf .qoder/skills/SpecCrew-*/
228
+ ```
229
+
230
+ > **Note**: Uninstallation will preserve source files and custom content in `.speccrew/`. To completely remove IDE configurations, manually delete the corresponding IDE config directory (e.g., `.qoder/`).
231
+
232
+ ---
233
+
234
+ ## Directory Structure
235
+
236
+ ```
237
+ your-project/
238
+ ├── .speccrew/ # SpecCrew source files (version controllable)
239
+ ├── .qoder/ # Qoder IDE configuration (runtime)
240
+ │ ├── agents/ # 6 role Agents
241
+ │ └── skills/ # 16 Skills
242
+
243
+ └── speccrew-workspace/ # Workspace (generated during initialization)
244
+ ├── docs/ # Management documents
245
+ │ ├── rules/ # Rule configurations
246
+ │ └── solutions/ # Solution documents
247
+ │ └── agent-knowledge-map.md
248
+
249
+ ├── iterations/ # Iteration projects (dynamically generated)
250
+ │ └── {number}-{type}-{name}/ # e.g., 001-feature-order
251
+ │ ├── 00.docs/ # Original requirements
252
+ │ ├── 01.product-requirement/ # Product requirements
253
+ │ ├── 02.feature-design/ # Feature design
254
+ │ ├── 03.system-design/ # System design
255
+ │ ├── 04.development/ # Development phase
256
+ │ ├── 05.test/ # Testing phase
257
+ │ └── 06.delivery/ # Delivery phase
258
+
259
+ ├── iteration-archives/ # Iteration archives
260
+ │ └── {number}-{type}-{name}-{date}/
261
+
262
+ └── knowledges/ # Knowledge base
263
+ ├── base/ # Base metadata
264
+ │ ├── diagnosis-reports/ # Diagnosis reports
265
+ │ ├── sync-state/ # Sync state
266
+ │ └── tech-debts/ # Technical debts
267
+
268
+ ├── bizs/ # Business knowledge
269
+ │ └── {platform-type}/
270
+ │ └── {module-name}/
271
+
272
+ └── techs/ # Technical knowledge
273
+ └── {platform-id}/
274
+ ```
275
+
276
+ ---
277
+
278
+ ## Core Design Principles
279
+
280
+ 1. **Specification-Driven**: Write specifications first, then let code "grow" from them
281
+ 2. **Progressive Disclosure**: Agents start from minimal entry points, loading information on demand
282
+ 3. **Human Confirmation**: Each phase's output requires human confirmation to prevent AI deviation
283
+ 4. **Context Isolation**: Large tasks are split into small, context-isolated subtasks
284
+ 5. **Sub-Agent Collaboration**: Complex tasks automatically dispatch sub-Agents to avoid single Agent context expansion
285
+ 6. **Rapid Iteration**: Each requirement as an independent project for rapid delivery and verification
286
+ 7. **Knowledge Sharing**: All configurations are version-controlled with source code
287
+
288
+ ---
289
+
290
+ ## Use Cases
291
+
292
+ ### ✅ Recommended For
293
+ - Medium to large projects requiring standardized workflows
294
+ - Team collaboration software development
295
+ - Legacy project engineering transformation
296
+ - Products requiring long-term maintenance
297
+
298
+ ### ❌ Not Suitable For
299
+ - Personal rapid prototype validation
300
+ - Exploratory projects with highly uncertain requirements
301
+ - One-off scripts or tools
302
+
303
+ ---
304
+
305
+ ## More Information
306
+
307
+ - **Agent Knowledge Map**: [speccrew-workspace/docs/agent-knowledge-map.md](./speccrew-workspace/docs/agent-knowledge-map.md)
308
+ - **GitHub**: https://github.com/charlesmu99/speccrew
309
+ - **Gitee**: https://gitee.com/amutek/speccrew
310
+ - **Qoder IDE**: https://qoder.com/
311
+
312
+ ---
313
+
314
+ > **SpecCrew is not about replacing developers, but automating the tedious parts so teams can focus on more valuable work.**
315
+
316
+ ---
317
+
318
+