| Dimension | Shared | Only in A | Only in B | Overlap |
|---|---|---|---|---|
| Sections | 0 | 1 | 1 | 0% |
| Commands | 0 | 0 | 0 | — |
| Section tags | 0 | 1 | 2 | 0% |
What each file covers
Sections
0 shared · 1 only in A · 1 only in B- − Edit Strategy
- + Agent Rules
Commands
neither file has anySection tags
0 shared · 1 only in A · 2 only in B- − code-style
- + do-not
- + agent-behaviour
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/02_agents.md
@@ +1 @@
1# Agent Rules
2
3Agents are the core units of HordeForge.
4
5Each agent must:
6
7- perform exactly ONE responsibility
8- accept structured context
9- return structured output
10- be deterministic
11- log all decisions
12
13Agent structure:
14
15agents/
16 agent_name/
17 agent.py
18 prompts/
19 schemas.py
20 tests/
21
22All agents must implement:
23
24run(context) -> result
25
26Agents must NOT:
27
28- call other agents directly
29- access external systems directly
30- contain business logic unrelated to their task
31
32Communication between agents occurs only through pipeline context.
@@ −1 +1 @@
1−# Edit Strategy
1+# Agent Rules
22
3−When fixing errors:
3+Agents are the core units of HordeForge.
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+Each agent must:
86
9−If the same fix was already attempted:
7+- perform exactly ONE responsibility
8+- accept structured context
9+- return structured output
10+- be deterministic
11+- log all decisions
1012
11−The AI must change strategy instead of repeating the edit.
13+Agent structure:
14+
15+agents/
16+ agent_name/
17+ agent.py
18+ prompts/
19+ schemas.py
20+ tests/
21+
22+All agents must implement:
23+
24+run(context) -> result
25+
26+Agents must NOT:
27+
28+- call other agents directly
29+- access external systems directly
30+- contain business logic unrelated to their task
31+
32+Communication between agents occurs only through pipeline context.
