modify documents

This commit is contained in:
김경종
2026-06-05 16:58:13 +09:00
parent 5a23502570
commit 92a5cb19c0
38 changed files with 268 additions and 45 deletions
+2 -2
View File
@@ -256,8 +256,8 @@ class FesaSolverSkillTests(unittest.TestCase):
for section in COMMON_SECTIONS:
self.assertIn(section, body)
self.assertIn("AGENTS.md", body)
self.assertIn("docs/SOLVER_AGENT_DESIGN.md", body)
self.assertNotIn("docs/SOLVER_SKILL_DESIGN.md", body)
self.assertIn("docs/AGENT_RULES.md", body)
self.assertNotIn("docs/project-plan/SOLVER_SKILL_DESIGN.md", body)
def test_solver_skills_define_skill_specific_contracts(self):
for skill_name, spec in SKILLS.items():
+1 -1
View File
@@ -31,7 +31,7 @@ class FormulationAgentConfigTests(unittest.TestCase):
"Do not run Abaqus, Nastran, or any reference solver.",
"Do not generate reference CSVs.",
"Do not approve release readiness.",
"docs/SOLVER_AGENT_DESIGN.md",
"docs/AGENT_RULES.md",
"docs/requirements/<feature-id>.md",
"docs/research/<feature-id>-research.md",
):
@@ -32,7 +32,7 @@ class NumericalReviewAgentConfigTests(unittest.TestCase):
"Do not run Abaqus, Nastran, or any reference solver.",
"Do not generate reference CSVs.",
"Do not approve release readiness.",
"docs/SOLVER_AGENT_DESIGN.md",
"docs/AGENT_RULES.md",
"docs/formulations/<feature-id>-formulation.md",
):
self.assertIn(required_text, instructions)
+1 -1
View File
@@ -31,7 +31,7 @@ class RequirementAgentConfigTests(unittest.TestCase):
"Do not run Abaqus, Nastran, or any reference solver.",
"Do not create reference CSV outputs.",
"Requirement Verification Matrix",
"docs/SOLVER_AGENT_DESIGN.md",
"docs/AGENT_RULES.md",
"references/<feature>",
):
self.assertIn(required_text, instructions)
+1 -1
View File
@@ -30,7 +30,7 @@ class ResearchAgentConfigTests(unittest.TestCase):
"Do not finalize FEM formulations.",
"Do not run Abaqus, Nastran, or any reference solver.",
"Do not generate reference CSVs.",
"docs/SOLVER_AGENT_DESIGN.md",
"docs/AGENT_RULES.md",
"docs/requirements/<feature-id>.md",
"Separate verified facts from inference.",
):