| Dimension | Shared | Only in A | Only in B | Overlap |
|---|---|---|---|---|
| Sections | 0 | 1 | 2 | 0% |
| Commands | 0 | 0 | 0 | — |
| Section tags | 0 | 1 | 3 | 0% |
What each file covers
Sections
0 shared · 1 only in A · 2 only in B- − Edit Strategy
- + Testing Rules
- + Test Execution
Commands
neither file has anySection tags
0 shared · 1 only in A · 3 only in B- − code-style
- + test
- + lint-format
- + do-not
Line diff
yxyxy/HordeForge · .clinerules/97_edit_strategy.md
@@ −1 @@
1# Edit Strategy
2
3When fixing errors:
4
51. Prefer modifying the smallest possible code section.
62. Avoid rewriting entire files.
73. Never repeat the same edit pattern.
8
9If the same fix was already attempted:
10
11The AI must change strategy instead of repeating the edit.
yxyxy/HordeForge · .clinerules/04_testing.md
@@ +1 @@
1# Testing Rules
2
3HordeForge follows strict TDD.
4
5Order:
6
71. BDD scenarios
82. Test generation
93. Code generation
10
11Tests must exist before code.
12
13Test types:
14
15tests/
16 unit/
17 integration/
18 pipeline/
19
20Coverage target:
21
22> 80%
23
24Agents must always have unit tests.
25
26The system must support automated test execution in sandbox environments.
27
28## Test Execution
29
30Tests must be executed using:
31
32pytest -v --tb=short
33
34The test runner must only run after the Ruff auto-fix step:
35
36ruff check --fix
37pytest -v --tb=short
@@ −1 +1 @@
1−# Edit Strategy
1+# Testing Rules
22
3−When fixing errors:
3+HordeForge follows strict TDD.
44
5−1. Prefer modifying the smallest possible code section.
6−2. Avoid rewriting entire files.
7−3. Never repeat the same edit pattern.
5+Order:
86
9−If the same fix was already attempted:
7+1. BDD scenarios
8+2. Test generation
9+3. Code generation
1010
11−The AI must change strategy instead of repeating the edit.
11+Tests must exist before code.
12+
13+Test types:
14+
15+tests/
16+ unit/
17+ integration/
18+ pipeline/
19+
20+Coverage target:
21+
22+> 80%
23+
24+Agents must always have unit tests.
25+
26+The system must support automated test execution in sandbox environments.
27+
28+## Test Execution
29+
30+Tests must be executed using:
31+
32+pytest -v --tb=short
33+
34+The test runner must only run after the Ruff auto-fix step:
35+
36+ruff check --fix
37+pytest -v --tb=short
